Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swagger changes for adding secret type AzureFirstpartyManaged certifi… #13

Merged
merged 6 commits into from
Nov 4, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4073,6 +4073,14 @@
}
}
},
"AzureFirstPartyManagedCertificate": {
"description": "Azure FirstParty Managed Certificate provided by other first party rp's to enable HTTPS.",
"allOf": [
{
"$ref": "#/definitions/Certificate"
}
]
},
"ValidateSecretInput": {
"description": "Input of the secret to be validated.",
"type": "object",
Expand Down Expand Up @@ -4566,7 +4574,8 @@
"enum": [
"UrlSigningKey",
"CustomerCertificate",
"ManagedCertificate"
"ManagedCertificate",
"AzureFirstPartyManagedCertificate"
],
"type": "string",
"x-ms-enum": {
Expand Down Expand Up @@ -4641,6 +4650,16 @@
}
}
},
"AzureFirstPartyManagedCertificateParameters": {
"description": "Azure FirstParty Managed Certificate provided by other first party rp's to enable HTTPS.",
"x-ms-discriminator-value": "AzureFirstPartyManagedCertificate",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/SecretParameters"
}
]
},
"RuleSetListResult": {
"description": "Result of the request to list rule sets. It contains a list of rule set objects and a URL link to get the next set of results.",
"properties": {
Expand Down