Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class DeploymentExtended extends models['BaseResource'] {
* Create a DeploymentExtended.
* @property {string} [id] The ID of the deployment.
* @property {string} [name] The name of the deployment.
* @property {string} [type] The type of the deployment.
* @property {string} [location] the location of the deployment.
* @property {object} [properties] Deployment properties.
* @property {string} [properties.provisioningState] The state of the
Expand Down Expand Up @@ -110,6 +111,14 @@ class DeploymentExtended extends models['BaseResource'] {
name: 'String'
}
},
type: {
required: false,
readOnly: true,
serializedName: 'type',
type: {
name: 'String'
}
},
location: {
required: false,
serializedName: 'location',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,10 @@ export interface DeploymentExtended extends BaseResource {
* The name of the deployment.
*/
readonly name?: string;
/**
* The type of the deployment.
*/
readonly type?: string;
/**
* the location of the deployment.
*/
Expand Down Expand Up @@ -604,6 +608,10 @@ export interface ResourceGroup extends BaseResource {
* The name of the resource group.
*/
readonly name?: string;
/**
* The type of the resource group.
*/
readonly type?: string;
properties?: ResourceGroupProperties;
/**
* The location of the resource group. It cannot be changed after the resource group has been
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class ResourceGroup extends models['BaseResource'] {
* Create a ResourceGroup.
* @property {string} [id] The ID of the resource group.
* @property {string} [name] The name of the resource group.
* @property {string} [type] The type of the resource group.
* @property {object} [properties]
* @property {string} [properties.provisioningState] The provisioning state.
* @property {string} location The location of the resource group. It cannot
Expand Down Expand Up @@ -65,6 +66,14 @@ class ResourceGroup extends models['BaseResource'] {
name: 'String'
}
},
type: {
required: false,
readOnly: true,
serializedName: 'type',
type: {
name: 'String'
}
},
properties: {
required: false,
serializedName: 'properties',
Expand Down