Skip to content

Commit 2b2c5b8

Browse files
authored
add property (#17878)
1 parent a0edb2b commit 2b2c5b8

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/ManagedEnvironments.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -793,6 +793,21 @@
793793
"description": "Certificate resource specific properties",
794794
"type": "object",
795795
"properties": {
796+
"provisioningState": {
797+
"description": "Provisioning state of the certificate.",
798+
"enum": [
799+
"Succeeded",
800+
"Failed",
801+
"Canceled",
802+
"DeleteFailed"
803+
],
804+
"type": "string",
805+
"readOnly": true,
806+
"x-ms-enum": {
807+
"name": "CertificateProvisioningState",
808+
"modelAsString": true
809+
}
810+
},
796811
"password": {
797812
"description": "Certificate password.",
798813
"type": "string",

specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/examples/Certificate_CreateOrUpdate.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"type": "Microsoft.App/ManagedEnvironments/Certificates",
2222
"location": "East US",
2323
"properties": {
24+
"provisioningState": "Succeeded",
2425
"subjectName": "my-subject-name.company.country.net",
2526
"issuer": "Issuer Name",
2627
"issueDate": "2021-11-06T04:00:00Z",

specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/examples/Certificate_Get.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"type": "Microsoft.App/ManagedEnvironments/Certificates",
1616
"location": "East US",
1717
"properties": {
18+
"provisioningState": "Succeeded",
1819
"subjectName": "my-subject-name.company.country.net",
1920
"issuer": "Issuer Name",
2021
"issueDate": "2021-11-06T04:00:00Z",

specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/examples/Certificates_ListByManagedEnvironment.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"type": "Microsoft.App/ManagedEnvironments/Certificates",
1717
"location": "East US",
1818
"properties": {
19+
"provisioningState": "Succeeded",
1920
"subjectName": "my-subject-name.company.country.net",
2021
"issuer": "Issuer Name",
2122
"issueDate": "2021-11-06T04:00:00Z",
@@ -30,6 +31,7 @@
3031
"type": "Microsoft.App/ManagedEnvironments/Certificates",
3132
"location": "East US",
3233
"properties": {
34+
"provisioningState": "Succeeded",
3335
"subjectName": "my-subject-name.company.country.net",
3436
"issuer": "Issuer Name",
3537
"issueDate": "2021-11-06T04:00:00Z",

specification/app/resource-manager/Microsoft.App/preview/2022-01-01-preview/examples/Certificates_Patch.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"tag2": "value2"
2525
},
2626
"properties": {
27+
"provisioningState": "Succeeded",
2728
"subjectName": "my-subject-name.company.country.net",
2829
"issuer": "Issuer Name",
2930
"issueDate": "2021-11-06T04:00:00Z",

0 commit comments

Comments
 (0)