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

[Hub Generated] Publish private branch 'servicelinker/qianwens/118' #22342

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 @@ -1510,8 +1510,7 @@
"x-ms-enum": {
"name": "DeleteOrUpdateBehavior",
"modelAsString": true
},
"default": "Default"
}
},
"ClientType": {
"description": "The application client type",
Expand All @@ -1527,7 +1526,8 @@
"django",
"nodejs",
"springBoot",
"kafka-springBoot"
"kafka-springBoot",
"dapr"
],
"x-ms-enum": {
"name": "clientType",
Expand Down Expand Up @@ -2031,6 +2031,10 @@
"$ref": "#/definitions/AuthType",
"description": "The auth type."
},
"daprProperties": {
"description": "Indicates some additional properties for dapr client type",
"$ref": "#/definitions/DaprProperties"
},
"names": {
"type": "array",
"description": "The configuration names to be set in compute service environment.",
Expand All @@ -2050,6 +2054,10 @@
"description": {
"type": "string",
"description": "Description for the configuration name."
},
"required": {
"type": "boolean",
"description": "Represent the configuration is required or not"
}
}
},
Expand Down Expand Up @@ -2283,6 +2291,10 @@
"type": "string"
}
},
"daprProperties": {
"description": "Indicates some additional properties for dapr client type",
"$ref": "#/definitions/DaprProperties"
},
"additionalConfigurations": {
"description": "A dictionary of additional configurations to be added. Service will auto generate a set of basic configurations and this property is to full fill more customized configurations",
"type": "object",
Expand All @@ -2292,6 +2304,62 @@
}
}
},
"DaprProperties": {
"type": "object",
"description": "Indicates some additional properties for dapr client type",
"properties": {
"version": {
"x-nullable": true,
"type": "string",
"description": "The dapr component version"
},
"componentType": {
"x-nullable": true,
"type": "string",
"description": "The dapr component type"
},
"secretStoreComponent": {
"x-nullable": true,
"type": "string",
"description": "The name of a secret store dapr to retrieve secret"
},
"metadata": {
"description": "Additional dapr metadata",
"type": "array",
"items": {
"$ref": "#/definitions/DaprMetadata"
},
"x-ms-identifiers": [
"name"
]
},
"scopes": {
"description": "The dapr component scopes",
"type": "array",
"items": {
"type": "string"
}
}
}
},
"DaprMetadata": {
"description": "The dapr component metadata.",
"type": "object",
"properties": {
"name": {
"description": "Metadata property name.",
"type": "string"
},
"value": {
"description": "Metadata property value.",
"type": "string"
},
"secretRef": {
"description": "The secret name where dapr could get value",
"type": "string"
}
}
},
"SecretStore": {
"type": "object",
"description": "An option to store secret value in secure place",
Expand Down Expand Up @@ -2541,8 +2609,7 @@
"x-ms-enum": {
"name": "actionType",
"modelAsString": true
},
"default": "enable"
}
},
"AllowType": {
"description": "Whether to allow firewall rules.",
Expand All @@ -2554,8 +2621,7 @@
"x-ms-enum": {
"name": "allowType",
"modelAsString": true
},
"default": "false"
}
}
},
"parameters": {
Expand Down