graph_resources_graphs
Creates, updates, deletes, gets or lists a graph_resources_graphs
resource.
Overview
Name | graph_resources_graphs |
Type | Resource |
Id | azure.cosmos_db.graph_resources_graphs |
Fields
- vw_graph_resources_graphs
- graph_resources_graphs
Name | Datatype | Description |
---|---|---|
id | text | The unique resource identifier of the ARM resource. |
name | text | The name of the ARM resource. |
accountName | text | field from the properties object |
graphName | text | field from the properties object |
identity | text | Identity for the resource. |
location | text | The location of the resource group to which the resource belongs. |
options | text | field from the properties object |
resource | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB". |
type | text | The type of Azure resource. |
Name | Datatype | Description |
---|---|---|
id | string | The unique resource identifier of the ARM resource. |
name | string | The name of the ARM resource. |
identity | object | Identity for the resource. |
location | string | The location of the resource group to which the resource belongs. |
properties | object | The properties of an Azure Cosmos DB SQL database |
tags | object | Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB". |
type | string | The type of Azure resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | accountName, graphName, resourceGroupName, subscriptionId | Gets the Graph resource under an existing Azure Cosmos DB database account with the provided name. |
list | SELECT | accountName, resourceGroupName, subscriptionId | Lists the graphs under an existing Azure Cosmos DB database account. |
create_update | INSERT | accountName, graphName, resourceGroupName, subscriptionId, data__properties | Create or update an Azure Cosmos DB Graph. |
SELECT
examples
Lists the graphs under an existing Azure Cosmos DB database account.
- vw_graph_resources_graphs
- graph_resources_graphs
SELECT
id,
name,
accountName,
graphName,
identity,
location,
options,
resource,
resourceGroupName,
subscriptionId,
tags,
type
FROM azure.cosmos_db.vw_graph_resources_graphs
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
identity,
location,
properties,
tags,
type
FROM azure.cosmos_db.graph_resources_graphs
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new graph_resources_graphs
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.cosmos_db.graph_resources_graphs (
accountName,
graphName,
resourceGroupName,
subscriptionId,
data__properties,
properties,
location,
tags,
identity
)
SELECT
'{{ accountName }}',
'{{ graphName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ location }}',
'{{ tags }}',
'{{ identity }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: resource
value:
- name: id
value: string
- name: options
value:
- name: throughput
value: integer
- name: autoscaleSettings
value:
- name: maxThroughput
value: integer
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: location
value: string
- name: tags
value: []
- name: identity
value:
- name: principalId
value: string
- name: tenantId
value: string
- name: type
value: string
- name: userAssignedIdentities
value: object