Skip to main content

isp_cache_nodes_operations

Creates, updates, deletes, gets or lists an isp_cache_nodes_operations resource.

Overview

Nameisp_cache_nodes_operations
TypeResource
Idazure_extras.connected_cache.isp_cache_nodes_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
additionalCacheNodePropertiesobjectMcc cache node resource additional properties.
cacheNodeobjectMcc cache node resource (cache node entity).
errorobjectMcc response error details.
locationstringThe geo-location where the resource lives. Required.
provisioningStatestringThe provisioned state of the resource. Known values are: "Succeeded", "Failed", "Canceled", "Unknown", "Accepted", "Upgrading", and "Deleting". (Succeeded, Failed, Canceled, Unknown, Accepted, Upgrading, Deleting)
statusstringHTTP error status code.
statusCodestringMcc response status code.
statusDetailsstringMcc response status details for retrieving response inner details.
statusTextstringMcc response status text as string for retrieving status details.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
tagsobjectResource tags.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, customer_resource_name, cache_node_resource_name, subscription_idThis api gets ispCacheNode resource information.
list_by_isp_customer_resourceselectresource_group_name, customer_resource_name, subscription_idThis api retrieves information about all ispCacheNode resources under the given subscription and resource group.
create_or_updateinsertresource_group_name, customer_resource_name, cache_node_resource_name, subscription_id, locationThis api creates an ispCacheNode with the specified create parameters.
updateupdateresource_group_name, customer_resource_name, cache_node_resource_name, subscription_idThis api updates an existing ispCacheNode resource.
create_or_updatereplaceresource_group_name, customer_resource_name, cache_node_resource_name, subscription_id, locationThis api creates an ispCacheNode with the specified create parameters.
deletedeleteresource_group_name, customer_resource_name, cache_node_resource_name, subscription_idThis api deletes an existing ispCacheNode resource.
get_bgp_cidrsexecresource_group_name, customer_resource_name, cache_node_resource_name, subscription_idThis api gets ispCacheNode resource information.
get_cache_node_install_detailsexecresource_group_name, customer_resource_name, cache_node_resource_name, subscription_idThis api gets secrets of the ispCacheNode resource install details.
get_cache_node_auto_update_historyexecresource_group_name, customer_resource_name, cache_node_resource_name, subscription_idThis api gets ispCacheNode resource auto update histrory information.
get_cache_node_mcc_issue_details_historyexecresource_group_name, customer_resource_name, cache_node_resource_name, subscription_idThis api gets ispCacheNode resource issues details histrory information.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
cache_node_resource_namestringName of the ConnectedCache resource. Required.
customer_resource_namestringName of the Customer resource. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

This api gets ispCacheNode resource information.

SELECT
id,
name,
additionalCacheNodeProperties,
cacheNode,
error,
location,
provisioningState,
status,
statusCode,
statusDetails,
statusText,
systemData,
tags,
type
FROM azure_extras.connected_cache.isp_cache_nodes_operations
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND customer_resource_name = '{{ customer_resource_name }}' -- required
AND cache_node_resource_name = '{{ cache_node_resource_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

This api creates an ispCacheNode with the specified create parameters.

INSERT INTO azure_extras.connected_cache.isp_cache_nodes_operations (
tags,
location,
properties,
resource_group_name,
customer_resource_name,
cache_node_resource_name,
subscription_id
)
SELECT
'{{ tags }}',
'{{ location }}' /* required */,
'{{ properties }}',
'{{ resource_group_name }}',
'{{ customer_resource_name }}',
'{{ cache_node_resource_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
location,
properties,
systemData,
tags,
type
;

UPDATE examples

This api updates an existing ispCacheNode resource.

UPDATE azure_extras.connected_cache.isp_cache_nodes_operations
SET
tags = '{{ tags }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND customer_resource_name = '{{ customer_resource_name }}' --required
AND cache_node_resource_name = '{{ cache_node_resource_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
RETURNING
id,
name,
location,
properties,
systemData,
tags,
type;

REPLACE examples

This api creates an ispCacheNode with the specified create parameters.

REPLACE azure_extras.connected_cache.isp_cache_nodes_operations
SET
tags = '{{ tags }}',
location = '{{ location }}',
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND customer_resource_name = '{{ customer_resource_name }}' --required
AND cache_node_resource_name = '{{ cache_node_resource_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
AND location = '{{ location }}' --required
RETURNING
id,
name,
location,
properties,
systemData,
tags,
type;

DELETE examples

This api deletes an existing ispCacheNode resource.

DELETE FROM azure_extras.connected_cache.isp_cache_nodes_operations
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND customer_resource_name = '{{ customer_resource_name }}' --required
AND cache_node_resource_name = '{{ cache_node_resource_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;

Lifecycle Methods

This api gets ispCacheNode resource information.

EXEC azure_extras.connected_cache.isp_cache_nodes_operations.get_bgp_cidrs 
@resource_group_name='{{ resource_group_name }}' --required,
@customer_resource_name='{{ customer_resource_name }}' --required,
@cache_node_resource_name='{{ cache_node_resource_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
;