fluid_relay_containers
Creates, updates, deletes, gets or lists a fluid_relay_containers resource.
Overview
| Name | fluid_relay_containers |
| Type | Resource |
| Id | azure.fluid_relay.fluid_relay_containers |
Fields
The following fields are returned by SELECT queries:
- get
- list_by_fluid_relay_servers
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
creationTime | string (date-time) | The creation time of this resource. |
frsContainerId | string | The frsContainerId for this container. |
frsTenantId | string | The Fluid tenantId for this container. |
lastAccessTime | string (date-time) | Last time when user access this resource. |
provisioningState | string | Provision states for FluidRelay RP. Known values are: "Succeeded", "Failed", and "Canceled". |
systemData | object | System meta data for this resource, including creation and modification information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
creationTime | string (date-time) | The creation time of this resource. |
frsContainerId | string | The frsContainerId for this container. |
frsTenantId | string | The Fluid tenantId for this container. |
lastAccessTime | string (date-time) | Last time when user access this resource. |
provisioningState | string | Provision states for FluidRelay RP. Known values are: "Succeeded", "Failed", and "Canceled". |
systemData | object | System meta data for this resource, including creation and modification information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_group, fluid_relay_server_name, fluid_relay_container_name, subscription_id | Get a Fluid Relay container. Get a Fluid Relay container. | |
list_by_fluid_relay_servers | select | resource_group, fluid_relay_server_name, subscription_id | List all Fluid Relay containers which are children of a given Fluid Relay server. List all Fluid Relay containers which are children of a given Fluid Relay server. | |
delete | delete | resource_group, fluid_relay_server_name, fluid_relay_container_name, subscription_id | Delete a Fluid Relay container. Delete a Fluid Relay container. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
fluid_relay_container_name | string | The Fluid Relay container resource name. Required. |
fluid_relay_server_name | string | The Fluid Relay server resource name. Required. |
resource_group | string | The resource group containing the resource. Required. |
subscription_id | string |
SELECT examples
- get
- list_by_fluid_relay_servers
Get a Fluid Relay container. Get a Fluid Relay container.
SELECT
id,
name,
creationTime,
frsContainerId,
frsTenantId,
lastAccessTime,
provisioningState,
systemData,
type
FROM azure.fluid_relay.fluid_relay_containers
WHERE resource_group = '{{ resource_group }}' -- required
AND fluid_relay_server_name = '{{ fluid_relay_server_name }}' -- required
AND fluid_relay_container_name = '{{ fluid_relay_container_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
List all Fluid Relay containers which are children of a given Fluid Relay server. List all Fluid Relay containers which are children of a given Fluid Relay server.
SELECT
id,
name,
creationTime,
frsContainerId,
frsTenantId,
lastAccessTime,
provisioningState,
systemData,
type
FROM azure.fluid_relay.fluid_relay_containers
WHERE resource_group = '{{ resource_group }}' -- required
AND fluid_relay_server_name = '{{ fluid_relay_server_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;
DELETE examples
- delete
Delete a Fluid Relay container. Delete a Fluid Relay container.
DELETE FROM azure.fluid_relay.fluid_relay_containers
WHERE resource_group = '{{ resource_group }}' --required
AND fluid_relay_server_name = '{{ fluid_relay_server_name }}' --required
AND fluid_relay_container_name = '{{ fluid_relay_container_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;