application_type_versions
Creates, updates, deletes, gets or lists an application_type_versions
resource.
Overview
Name | application_type_versions |
Type | Resource |
Id | azure.service_fabric.application_type_versions |
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 properties of the application type version resource. |
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 properties of the application type version resource. |
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 , version | api-version | Get a Service Fabric application type version resource created or in the process of being created in the Service Fabric application type name resource. |
list | select | subscriptionId , resourceGroupName , clusterName , applicationTypeName | api-version | Gets all application type version resources created or in the process of being created in the Service Fabric application type name resource. |
create_or_update | insert | subscriptionId , resourceGroupName , clusterName , applicationTypeName , version | api-version | Create or update a Service Fabric application type version resource with the specified name. |
delete | delete | subscriptionId , resourceGroupName , clusterName , applicationTypeName , version | api-version | Delete a Service Fabric application type version 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. |
version | string | The application type version. |
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 version resource created or in the process of being created in the Service Fabric application type name resource.
SELECT
id,
name,
etag,
location,
properties,
systemData,
tags,
type
FROM azure.service_fabric.application_type_versions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND applicationTypeName = '{{ applicationTypeName }}' -- required
AND version = '{{ version }}' -- required
AND api-version = '{{ api-version }}'
;
Gets all application type version resources created or in the process of being created in the Service Fabric application type name resource.
SELECT
id,
name,
etag,
location,
properties,
systemData,
tags,
type
FROM azure.service_fabric.application_type_versions
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND applicationTypeName = '{{ applicationTypeName }}' -- required
AND api-version = '{{ api-version }}'
;
INSERT
examples
- create_or_update
- Manifest
Create or update a Service Fabric application type version resource with the specified name.
INSERT INTO azure.service_fabric.application_type_versions (
data__properties,
data__location,
data__tags,
subscriptionId,
resourceGroupName,
clusterName,
applicationTypeName,
version,
api-version
)
SELECT
'{{ properties }}',
'{{ location }}',
'{{ tags }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ clusterName }}',
'{{ applicationTypeName }}',
'{{ version }}',
'{{ api-version }}'
RETURNING
id,
name,
etag,
location,
properties,
systemData,
tags,
type
;
# Description fields are for documentation purposes
- name: application_type_versions
props:
- name: subscriptionId
value: string
description: Required parameter for the application_type_versions resource.
- name: resourceGroupName
value: string
description: Required parameter for the application_type_versions resource.
- name: clusterName
value: string
description: Required parameter for the application_type_versions resource.
- name: applicationTypeName
value: string
description: Required parameter for the application_type_versions resource.
- name: version
value: string
description: Required parameter for the application_type_versions resource.
- name: properties
value: object
description: |
The properties of the application type version resource.
- 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 version resource with the specified name.
DELETE FROM azure.service_fabric.application_type_versions
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND clusterName = '{{ clusterName }}' --required
AND applicationTypeName = '{{ applicationTypeName }}' --required
AND version = '{{ version }}' --required
AND api-version = '{{ api-version }}'
;