containers
Creates, updates, deletes, gets or lists a containers
resource.
Overview
Name | containers |
Type | Resource |
Id | azure.fluid_relay.containers |
Fields
- vw_containers
- containers
Name | Datatype | Description |
---|---|---|
creation_time | text | field from the properties object |
fluidRelayContainerName | text | field from the properties object |
fluidRelayServerName | text | field from the properties object |
frs_container_id | text | field from the properties object |
frs_tenant_id | text | field from the properties object |
last_access_time | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroup | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | The properties of a Fluid Relay Container resource. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | fluidRelayContainerName, fluidRelayServerName, resourceGroup, subscriptionId | |
list_by_fluid_relay_servers | SELECT | fluidRelayServerName, resourceGroup, subscriptionId | |
delete | DELETE | fluidRelayContainerName, fluidRelayServerName, resourceGroup, subscriptionId |
SELECT
examples
- vw_containers
- containers
SELECT
creation_time,
fluidRelayContainerName,
fluidRelayServerName,
frs_container_id,
frs_tenant_id,
last_access_time,
provisioning_state,
resourceGroup,
subscriptionId,
system_data
FROM azure.fluid_relay.vw_containers
WHERE fluidRelayServerName = '{{ fluidRelayServerName }}'
AND resourceGroup = '{{ resourceGroup }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties,
systemData
FROM azure.fluid_relay.containers
WHERE fluidRelayServerName = '{{ fluidRelayServerName }}'
AND resourceGroup = '{{ resourceGroup }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified containers
resource.
/*+ delete */
DELETE FROM azure.fluid_relay.containers
WHERE fluidRelayContainerName = '{{ fluidRelayContainerName }}'
AND fluidRelayServerName = '{{ fluidRelayServerName }}'
AND resourceGroup = '{{ resourceGroup }}'
AND subscriptionId = '{{ subscriptionId }}';