custom_rollouts
Creates, updates, deletes, gets or lists a custom_rollouts
resource.
Overview
Name | custom_rollouts |
Type | Resource |
Id | azure.provider_hub.custom_rollouts |
Fields
Name | Datatype | Description |
---|---|---|
properties | object | Properties of the rollout. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | providerNamespace, rolloutName, subscriptionId | Gets the custom rollout details. |
list_by_provider_registration | SELECT | providerNamespace, subscriptionId | Gets the list of the custom rollouts for the given provider. |
create_or_update | INSERT | providerNamespace, rolloutName, subscriptionId, data__properties | Creates or updates the rollout details. |
SELECT
examples
Gets the list of the custom rollouts for the given provider.
SELECT
properties
FROM azure.provider_hub.custom_rollouts
WHERE providerNamespace = '{{ providerNamespace }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new custom_rollouts
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.provider_hub.custom_rollouts (
providerNamespace,
rolloutName,
subscriptionId,
data__properties,
properties
)
SELECT
'{{ providerNamespace }}',
'{{ rolloutName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}'
;
- name: your_resource_model_name
props:
- name: properties
value: string