application_types
Creates, updates, deletes, gets or lists an application_types
resource.
Overview
Name | application_types |
Type | Resource |
Id | azure.service_fabric.application_types |
Fields
The following fields are returned by SELECT
queries:
- get
- list
The operation completed successfully.
Name | Datatype | Description |
---|---|---|
id | string | Azure resource identifier. |
name | string | Azure resource name. |
etag | string | Azure resource etag. |
location | string | It will be deprecated in New API, resource location depends on the parent resource. |
properties | object | The application type name properties |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Azure resource tags. |
type | string | Azure resource type. |
The operation completed successfully.
Name | Datatype | Description |
---|---|---|
id | string | Azure resource identifier. |
name | string | Azure resource name. |
etag | string | Azure resource etag. |
location | string | It will be deprecated in New API, resource location depends on the parent resource. |
properties | object | The application type name properties |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Azure resource tags. |
type | string | Azure resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , clusterName , applicationTypeName | api-version | Get a Service Fabric application type name resource created or in the process of being created in the Service Fabric cluster resource. |
list | select | subscriptionId , resourceGroupName , clusterName | api-version | Gets all application type name resources created or in the process of being created in the Service Fabric cluster resource. |
create_or_update | insert | subscriptionId , resourceGroupName , clusterName , applicationTypeName | api-version | Create or update a Service Fabric application type name resource with the specified name. |
delete | delete | subscriptionId , resourceGroupName , clusterName , applicationTypeName | api-version | Delete a Service Fabric application type name resource with the specified name. |
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.
Name | Datatype | Description |
---|---|---|
applicationTypeName | string | The name of the application type name resource. |
clusterName | string | The name of the cluster resource. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string | The customer subscription identifier. |
api-version | string | The version of the Service Fabric resource provider API. This is a required parameter and it's value must be "2021-06-01" for this specification. |
SELECT
examples
- get
- list
Get a Service Fabric application type name resource created or in the process of being created in the Service Fabric cluster resource.
SELECT
id,
name,
etag,
location,
properties,
systemData,
tags,
type
FROM azure.service_fabric.application_types
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND applicationTypeName = '{{ applicationTypeName }}' -- required
AND api-version = '{{ api-version }}'
;
Gets all application type name resources created or in the process of being created in the Service Fabric cluster resource.
SELECT
id,
name,
etag,
location,
properties,
systemData,
tags,
type
FROM azure.service_fabric.application_types
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND api-version = '{{ api-version }}'
;
INSERT
examples
- create_or_update
- Manifest
Create or update a Service Fabric application type name resource with the specified name.
INSERT INTO azure.service_fabric.application_types (
data__properties,
data__location,
data__tags,
subscriptionId,
resourceGroupName,
clusterName,
applicationTypeName,
api-version
)
SELECT
'{{ properties }}',
'{{ location }}',
'{{ tags }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ clusterName }}',
'{{ applicationTypeName }}',
'{{ api-version }}'
RETURNING
id,
name,
etag,
location,
properties,
systemData,
tags,
type
;
# Description fields are for documentation purposes
- name: application_types
props:
- name: subscriptionId
value: string
description: Required parameter for the application_types resource.
- name: resourceGroupName
value: string
description: Required parameter for the application_types resource.
- name: clusterName
value: string
description: Required parameter for the application_types resource.
- name: applicationTypeName
value: string
description: Required parameter for the application_types resource.
- name: properties
value: object
description: |
The application type name properties
- name: location
value: string
description: |
It will be deprecated in New API, resource location depends on the parent resource.
- name: tags
value: object
description: |
Azure resource tags.
- name: api-version
value: string
description: The version of the Service Fabric resource provider API. This is a required parameter and it's value must be "2021-06-01" for this specification.
DELETE
examples
- delete
Delete a Service Fabric application type name resource with the specified name.
DELETE FROM azure.service_fabric.application_types
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND clusterName = '{{ clusterName }}' --required
AND applicationTypeName = '{{ applicationTypeName }}' --required
AND api-version = '{{ api-version }}'
;