Skip to content
Draft
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
47 changes: 38 additions & 9 deletions schemas/2022-03-01-preview/Microsoft.AzureArcData.json
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,23 @@
},
"description": "Details about the Active Directory domain controllers associated with this AD connector instance"
},
"ActiveDirectoryInformation": {
"type": "object",
"properties": {
"keytabInformation": {
"oneOf": [
{
"$ref": "#/definitions/KeytabInformation"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Keytab used for authenticate with Active Directory."
}
},
"description": "Active Directory information that related to the resource."
},
"BasicLoginInformation": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -889,6 +906,16 @@
},
"description": "The kubernetes scheduling options. It describes restrictions used to help Kubernetes select appropriate nodes to host the database service"
},
"KeytabInformation": {
"type": "object",
"properties": {
"keytab": {
"type": "string",
"description": "A base64-encoded keytab."
}
},
"description": "Keytab used for authenticate with Active Directory."
},
"LogAnalyticsWorkspaceConfig": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1114,6 +1141,17 @@
"SqlManagedInstanceProperties": {
"type": "object",
"properties": {
"activeDirectoryInformation": {
"oneOf": [
{
"$ref": "#/definitions/ActiveDirectoryInformation"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Active Directory information that related to the resource."
},
"admin": {
"type": "string",
"description": "The instance admin user"
Expand Down Expand Up @@ -1156,10 +1194,6 @@
],
"description": "The raw kubernetes information."
},
"keytab": {
"type": "string",
"description": "A base64-encoded keytab."
},
"lastUploadedDate": {
"type": "string",
"format": "date-time",
Expand Down Expand Up @@ -1312,11 +1346,6 @@
],
"description": "SQL Server edition."
},
"esuExpirationDate": {
"type": "string",
"format": "date-time",
"description": "Timestamp of ESU Expiration."
},
"hostType": {
"oneOf": [
{
Expand Down