-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
data: regenerating based on the latest Swagger (#3474)
Co-authored-by: hc-github-team-tf-azure <>
- Loading branch information
1 parent
9bf8b93
commit d6a957f
Showing
12 changed files
with
186 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
.../resource-manager/ContainerApps/2022-11-01-preview/Jobs/Model-JobExecutionProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
"name": "JobExecutionProperties", | ||
"fields": [ | ||
{ | ||
"containsDiscriminatedTypeValue": false, | ||
"jsonName": "endTime", | ||
"name": "EndTime", | ||
"objectDefinition": { | ||
"type": "DateTime", | ||
"referenceName": null, | ||
"dateFormat": "RFC3339" | ||
}, | ||
"optional": true, | ||
"required": false, | ||
"description": "" | ||
}, | ||
{ | ||
"containsDiscriminatedTypeValue": false, | ||
"jsonName": "startTime", | ||
"name": "StartTime", | ||
"objectDefinition": { | ||
"type": "DateTime", | ||
"referenceName": null, | ||
"dateFormat": "RFC3339" | ||
}, | ||
"optional": true, | ||
"required": false, | ||
"description": "" | ||
}, | ||
{ | ||
"containsDiscriminatedTypeValue": false, | ||
"jsonName": "status", | ||
"name": "Status", | ||
"objectDefinition": { | ||
"type": "Reference", | ||
"referenceName": "JobExecutionRunningState" | ||
}, | ||
"optional": true, | ||
"required": false, | ||
"description": "" | ||
}, | ||
{ | ||
"containsDiscriminatedTypeValue": false, | ||
"jsonName": "template", | ||
"name": "Template", | ||
"objectDefinition": { | ||
"type": "Reference", | ||
"referenceName": "JobExecutionTemplate" | ||
}, | ||
"optional": true, | ||
"required": false, | ||
"description": "" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
55 changes: 55 additions & 0 deletions
55
...initions/resource-manager/ContainerApps/2023-05-01/Jobs/Model-JobExecutionProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
{ | ||
"name": "JobExecutionProperties", | ||
"fields": [ | ||
{ | ||
"containsDiscriminatedTypeValue": false, | ||
"jsonName": "endTime", | ||
"name": "EndTime", | ||
"objectDefinition": { | ||
"type": "DateTime", | ||
"referenceName": null, | ||
"dateFormat": "RFC3339" | ||
}, | ||
"optional": true, | ||
"required": false, | ||
"description": "" | ||
}, | ||
{ | ||
"containsDiscriminatedTypeValue": false, | ||
"jsonName": "startTime", | ||
"name": "StartTime", | ||
"objectDefinition": { | ||
"type": "DateTime", | ||
"referenceName": null, | ||
"dateFormat": "RFC3339" | ||
}, | ||
"optional": true, | ||
"required": false, | ||
"description": "" | ||
}, | ||
{ | ||
"containsDiscriminatedTypeValue": false, | ||
"jsonName": "status", | ||
"name": "Status", | ||
"objectDefinition": { | ||
"type": "Reference", | ||
"referenceName": "JobExecutionRunningState" | ||
}, | ||
"optional": true, | ||
"required": false, | ||
"description": "" | ||
}, | ||
{ | ||
"containsDiscriminatedTypeValue": false, | ||
"jsonName": "template", | ||
"name": "Template", | ||
"objectDefinition": { | ||
"type": "Reference", | ||
"referenceName": "JobExecutionTemplate" | ||
}, | ||
"optional": true, | ||
"required": false, | ||
"description": "" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"dataSource": "AzureResourceManager", | ||
"sourceInformation": "Azure/azure-rest-api-specs", | ||
"gitRevision": "d402f685809d6d08be9c0b45065cadd7d78ab870" | ||
"gitRevision": "6c4497e6b0aaad8127f2dd50fa8a29aaf68f24e6" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
...ns.ResourceManager/ContainerApps/v2022_11_01_preview/Jobs/Model-JobExecutionProperties.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text.Json.Serialization; | ||
using Pandora.Definitions.Attributes; | ||
using Pandora.Definitions.Attributes.Validation; | ||
using Pandora.Definitions.CustomTypes; | ||
|
||
|
||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See NOTICE.txt in the project root for license information. | ||
|
||
|
||
namespace Pandora.Definitions.ResourceManager.ContainerApps.v2022_11_01_preview.Jobs; | ||
|
||
|
||
internal class JobExecutionPropertiesModel | ||
{ | ||
[DateFormat(DateFormatAttribute.DateFormat.RFC3339)] | ||
[JsonPropertyName("endTime")] | ||
public DateTime? EndTime { get; set; } | ||
|
||
[DateFormat(DateFormatAttribute.DateFormat.RFC3339)] | ||
[JsonPropertyName("startTime")] | ||
public DateTime? StartTime { get; set; } | ||
|
||
[JsonPropertyName("status")] | ||
public JobExecutionRunningStateConstant? Status { get; set; } | ||
|
||
[JsonPropertyName("template")] | ||
public JobExecutionTemplateModel? Template { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
...efinitions.ResourceManager/ContainerApps/v2023_05_01/Jobs/Model-JobExecutionProperties.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text.Json.Serialization; | ||
using Pandora.Definitions.Attributes; | ||
using Pandora.Definitions.Attributes.Validation; | ||
using Pandora.Definitions.CustomTypes; | ||
|
||
|
||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See NOTICE.txt in the project root for license information. | ||
|
||
|
||
namespace Pandora.Definitions.ResourceManager.ContainerApps.v2023_05_01.Jobs; | ||
|
||
|
||
internal class JobExecutionPropertiesModel | ||
{ | ||
[DateFormat(DateFormatAttribute.DateFormat.RFC3339)] | ||
[JsonPropertyName("endTime")] | ||
public DateTime? EndTime { get; set; } | ||
|
||
[DateFormat(DateFormatAttribute.DateFormat.RFC3339)] | ||
[JsonPropertyName("startTime")] | ||
public DateTime? StartTime { get; set; } | ||
|
||
[JsonPropertyName("status")] | ||
public JobExecutionRunningStateConstant? Status { get; set; } | ||
|
||
[JsonPropertyName("template")] | ||
public JobExecutionTemplateModel? Template { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters