Skip to content

Commit

Permalink
User (Azure#12928)
Browse files Browse the repository at this point in the history
* Updating identity and encryption properties for user identity

* Minor correction

* Camel case

* prettier check

* update params

* merge master 2

* merge master 3

* merge master 4

Co-authored-by: Ayush <aysharm@microsoft.com>
  • Loading branch information
2 people authored and mkarmark committed Jul 20, 2021
1 parent a042590 commit d2a65e4
Showing 1 changed file with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -796,6 +796,10 @@
"$ref": "#/definitions/Sku",
"description": "Gets or sets account SKU."
},
"encryption": {
"$ref": "#/definitions/EncryptionProperties",
"description": "Set the encryption properties for the automation account"
},
"publicNetworkAccess": {
"type": "boolean",
"description": "Indicates whether traffic on the non-ARM endpoint (Webhook/Agent) is allowed from the public internet"
Expand All @@ -818,6 +822,11 @@
"type": "string",
"description": "Gets or sets the location of the resource."
},
"identity": {
"type": "object",
"$ref": "#/definitions/Identity",
"description": "Sets the identity property for automation account"
},
"tags": {
"type": "object",
"additionalProperties": {
Expand Down Expand Up @@ -846,12 +855,33 @@
"description": "The identity type.",
"enum": [
"SystemAssigned",
"UserAssigned",
"SystemAssigned, UserAssigned",
"None"
],
"x-ms-enum": {
"name": "ResourceIdentityType",
"modelAsString": false
}
},
"userAssignedIdentities": {
"type": "object",
"description": "The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.",
"additionalProperties": {
"type": "object",
"properties": {
"principalId": {
"readOnly": true,
"type": "string",
"description": "The principal id of user assigned identity."
},
"clientId": {
"readOnly": true,
"type": "string",
"description": "The client id of user assigned identity."
}
}
}
}
}
},
Expand All @@ -873,6 +903,15 @@
"name": "EncryptionKeySourceType",
"modelAsString": false
}
},
"identity": {
"description": "User identity used for CMK.",
"properties": {
"userAssignedIdentity": {
"type": "object",
"description": "The user identity used for CMK. It will be an ARM resource id in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'."
}
}
}
}
},
Expand Down

0 comments on commit d2a65e4

Please sign in to comment.