Skip to content

Commit

Permalink
add property (#17878)
Browse files Browse the repository at this point in the history
  • Loading branch information
Juliehzl authored Feb 17, 2022
1 parent a0edb2b commit 2b2c5b8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -793,6 +793,21 @@
"description": "Certificate resource specific properties",
"type": "object",
"properties": {
"provisioningState": {
"description": "Provisioning state of the certificate.",
"enum": [
"Succeeded",
"Failed",
"Canceled",
"DeleteFailed"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "CertificateProvisioningState",
"modelAsString": true
}
},
"password": {
"description": "Certificate password.",
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"type": "Microsoft.App/ManagedEnvironments/Certificates",
"location": "East US",
"properties": {
"provisioningState": "Succeeded",
"subjectName": "my-subject-name.company.country.net",
"issuer": "Issuer Name",
"issueDate": "2021-11-06T04:00:00Z",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"type": "Microsoft.App/ManagedEnvironments/Certificates",
"location": "East US",
"properties": {
"provisioningState": "Succeeded",
"subjectName": "my-subject-name.company.country.net",
"issuer": "Issuer Name",
"issueDate": "2021-11-06T04:00:00Z",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"type": "Microsoft.App/ManagedEnvironments/Certificates",
"location": "East US",
"properties": {
"provisioningState": "Succeeded",
"subjectName": "my-subject-name.company.country.net",
"issuer": "Issuer Name",
"issueDate": "2021-11-06T04:00:00Z",
Expand All @@ -30,6 +31,7 @@
"type": "Microsoft.App/ManagedEnvironments/Certificates",
"location": "East US",
"properties": {
"provisioningState": "Succeeded",
"subjectName": "my-subject-name.company.country.net",
"issuer": "Issuer Name",
"issueDate": "2021-11-06T04:00:00Z",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"tag2": "value2"
},
"properties": {
"provisioningState": "Succeeded",
"subjectName": "my-subject-name.company.country.net",
"issuer": "Issuer Name",
"issueDate": "2021-11-06T04:00:00Z",
Expand Down

0 comments on commit 2b2c5b8

Please sign in to comment.