Skip to content
Merged
Show file tree
Hide file tree
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 @@ -783,6 +783,16 @@
"items": {
"type": "string"
}
},
"serviceComponentBind": {
"description": "List of container app services that are bound to the Dapr component",
"type": "array",
"items": {
"$ref": "#/definitions/DaprComponentServiceBinding"
},
"x-ms-identifier": [
"name"
]
}
},
"x-ms-client-flatten": true
Expand All @@ -807,6 +817,39 @@
}
}
},
"DaprComponentServiceBinding": {
"description": "Configuration to bind a Dapr Component to a dev ContainerApp Service",
"type": "object",
"properties": {
"name": {
"description": "Name of the service bind",
"type": "string"
},
"serviceId": {
"description": "Resource id of the target service",
"type": "string"
},
"metadata": {
"description": "Service bind metadata",
"type": "array",
"$ref": "#/definitions/DaprServiceBindMetadata"
}
}
},
"DaprServiceBindMetadata": {
"description": "Dapr component metadata.",
"type": "object",
"properties": {
"name": {
"description": "Service bind metadata property name.",
"type": "string"
},
"value": {
"description": "Service bind metadata property value.",
"type": "string"
}
}
},
"DaprSecretsCollection": {
"description": "Dapr component Secrets Collection for ListSecrets Action.",
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
}
Expand Down Expand Up @@ -79,6 +89,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
}
Expand Down Expand Up @@ -70,6 +80,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
}
Expand Down Expand Up @@ -79,6 +89,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
},
Expand Down Expand Up @@ -78,6 +88,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
},
Expand Down Expand Up @@ -112,6 +132,16 @@
"scopes": [
"container-app-1",
"container-app-2"
],
"serviceComponentBind": [
{
"name": "statestore",
"serviceId": "/subscriptions/9f7371f1-b593-4c3c-84e2-9167806ad358/resourceGroups/ca-syn2-group/providers/Microsoft.App/containerapps/cappredis",
"metadata": {
"name": "daprcomponentBind",
"value": "redis-bind"
}
}
]
}
}
Expand Down