services
Creates, updates, deletes, gets or lists a services
resource.
Overview
Name | services |
Type | Resource |
Id | azure.service_fabric_mesh.services |
Fields
- vw_services
- services
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified identifier for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | text | The name of the resource |
description | text | field from the properties object |
applicationResourceName | text | field from the properties object |
auto_scaling_policies | text | field from the properties object |
code_packages | text | field from the properties object |
diagnostics | text | field from the properties object |
health_state | text | field from the properties object |
network_refs | text | field from the properties object |
os_type | text | field from the properties object |
provisioning_state | text | field from the properties object |
replica_count | text | field from the properties object |
resourceGroupName | text | field from the properties object |
serviceResourceName | text | field from the properties object |
status | text | field from the properties object |
status_details | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. |
unhealthy_evaluation | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
properties | object | This type describes properties of a service resource. |
type | string | The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | applicationResourceName, resourceGroupName, serviceResourceName, subscriptionId | Gets the information about the service resource with the given name. The information include the description and other properties of the service. |
list | SELECT | applicationResourceName, resourceGroupName, subscriptionId | Gets the information about all services of an application resource. The information include the description and other properties of the Service. |
SELECT
examples
Gets the information about all services of an application resource. The information include the description and other properties of the Service.
- vw_services
- services
SELECT
id,
name,
description,
applicationResourceName,
auto_scaling_policies,
code_packages,
diagnostics,
health_state,
network_refs,
os_type,
provisioning_state,
replica_count,
resourceGroupName,
serviceResourceName,
status,
status_details,
subscriptionId,
type,
unhealthy_evaluation
FROM azure.service_fabric_mesh.vw_services
WHERE applicationResourceName = '{{ applicationResourceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure.service_fabric_mesh.services
WHERE applicationResourceName = '{{ applicationResourceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';