replica_shared_private_link_resources
Creates, updates, deletes, gets or lists a replica_shared_private_link_resources
resource.
Overview
Name | replica_shared_private_link_resources |
Type | Resource |
Id | azure.signalr.replica_shared_private_link_resources |
Fields
- vw_replica_shared_private_link_resources
- replica_shared_private_link_resources
Name | Datatype | Description |
---|---|---|
fqdns | text | field from the properties object |
group_id | text | field from the properties object |
private_link_resource_id | text | field from the properties object |
provisioning_state | text | field from the properties object |
replicaName | text | field from the properties object |
request_message | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
sharedPrivateLinkResourceName | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Describes the properties of an existing Shared Private Link Resource |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | replicaName, resourceGroupName, resourceName, sharedPrivateLinkResourceName, subscriptionId | Get the specified shared private link resource |
list | SELECT | replicaName, resourceGroupName, resourceName, subscriptionId | List shared private link resources |
create_or_update | INSERT | replicaName, resourceGroupName, resourceName, sharedPrivateLinkResourceName, subscriptionId | Create or update a shared private link resource |
SELECT
examples
List shared private link resources
- vw_replica_shared_private_link_resources
- replica_shared_private_link_resources
SELECT
fqdns,
group_id,
private_link_resource_id,
provisioning_state,
replicaName,
request_message,
resourceGroupName,
resourceName,
sharedPrivateLinkResourceName,
status,
subscriptionId
FROM azure.signalr.vw_replica_shared_private_link_resources
WHERE replicaName = '{{ replicaName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties
FROM azure.signalr.replica_shared_private_link_resources
WHERE replicaName = '{{ replicaName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new replica_shared_private_link_resources
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.signalr.replica_shared_private_link_resources (
replicaName,
resourceGroupName,
resourceName,
sharedPrivateLinkResourceName,
subscriptionId,
properties
)
SELECT
'{{ replicaName }}',
'{{ resourceGroupName }}',
'{{ resourceName }}',
'{{ sharedPrivateLinkResourceName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: groupId
value: string
- name: privateLinkResourceId
value: string
- name: provisioningState
value: []
- name: requestMessage
value: string
- name: fqdns
value:
- string
- name: status
value: []