public_ip_addresses_cloud_service_role_instance_public_ip_addresses
Creates, updates, deletes, gets or lists a public_ip_addresses_cloud_service_role_instance_public_ip_addresses
resource.
Overview
Name | public_ip_addresses_cloud_service_role_instance_public_ip_addresses |
Type | Resource |
Id | azure.network.public_ip_addresses_cloud_service_role_instance_public_ip_addresses |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
etag | string | A unique read-only string that changes whenever the resource is updated. |
extendedLocation | object | ExtendedLocation complex type. |
location | string | Resource location. |
properties | object | Public IP address properties. |
sku | object | SKU of a public IP address. |
tags | object | Resource tags. |
type | string | Resource type. |
zones | array | A list of availability zones denoting the IP allocated for the resource needs to come from. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | cloudServiceName, ipConfigurationName, networkInterfaceName, resourceGroupName, roleInstanceName, subscriptionId | Gets information about all public IP addresses in a role instance IP configuration in a cloud service. |
SELECT
examples
Gets information about all public IP addresses in a role instance IP configuration in a cloud service.
SELECT
id,
name,
etag,
extendedLocation,
location,
properties,
sku,
tags,
type,
zones
FROM azure.network.public_ip_addresses_cloud_service_role_instance_public_ip_addresses
WHERE cloudServiceName = '{{ cloudServiceName }}'
AND ipConfigurationName = '{{ ipConfigurationName }}'
AND networkInterfaceName = '{{ networkInterfaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND roleInstanceName = '{{ roleInstanceName }}'
AND subscriptionId = '{{ subscriptionId }}';