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

Add Dapr Components collection APIs #17552

Merged
merged 16 commits into from
Feb 10, 2022
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,25 @@
}
}
},
"Secret": {
"description": "Secret definition.",
"type": "object",
"properties": {
"name": {
"description": "Secret Name.",
"type": "string"
},
"value": {
"description": "Secret Value.",
"type": "string",
"x-ms-mutability": [
"create",
"update"
],
"x-ms-secret": true
}
}
},
"Template": {
"description": "Container App versioned application definition.\nDefines the desired state of an immutable revision.\nAny changes to this section Will result in a new revision being created",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@
"description": "Collection of secrets used by a Container app",
"type": "array",
"items": {
"$ref": "#/definitions/Secret"
"$ref": "./CommonDefinitions.json#/definitions/Secret"
},
"x-ms-identifiers": [
"name"
Expand Down Expand Up @@ -638,25 +638,6 @@
}
}
},
"Secret": {
"description": "Container App Secret.",
"type": "object",
"properties": {
"name": {
"description": "Secret Name.",
"type": "string"
},
"value": {
"description": "Secret Value.",
"type": "string",
"x-ms-mutability": [
"create",
"update"
],
"x-ms-secret": true
}
}
},
"SecretsCollection": {
"description": "Container App Secrets Collection ARM resource.",
"required": [
Expand Down
Loading