Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
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 @@ -395,6 +395,11 @@
"type": "string",
"description": "The name of the Azure domain that the user would like to deploy Domain Services to."
},
"deploymentId": {
"readOnly": true,
"type": "string",
"description": "Deployment Id"
},
"vnetSiteId": {
"readOnly": true,
"type": "string",
Expand All @@ -411,7 +416,7 @@
"healthLastEvaluated": {
"readOnly": true,
"type": "string",
"format": "date-time",
"format": "date-time-rfc1123",
"description": "Last domain evaluation run DateTime"
},
"healthMonitors": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@
"schema": {
"$ref": "#/definitions/OperationEntityListResult"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
Expand Down Expand Up @@ -79,6 +85,12 @@
"schema": {
"$ref": "#/definitions/DomainServiceListResult"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
Expand Down Expand Up @@ -116,6 +128,12 @@
"schema": {
"$ref": "#/definitions/DomainServiceListResult"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
Expand Down Expand Up @@ -177,6 +195,12 @@
"schema": {
"$ref": "#/definitions/DomainService"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
Expand Down Expand Up @@ -213,6 +237,12 @@
"schema": {
"$ref": "#/definitions/DomainService"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
Expand Down Expand Up @@ -248,6 +278,12 @@
},
"204": {
"description": "HTTP 204 (Not Content) should be used if the resource does not exist and the request is well formed."
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
Expand Down Expand Up @@ -299,6 +335,12 @@
"schema": {
"$ref": "#/definitions/DomainService"
}
},
"default": {
"description": "Domain Service error response.",
"schema": {
"$ref": "#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
Expand Down Expand Up @@ -386,15 +428,25 @@
"DomainServiceProperties": {
"description": "Properties of the Domain Service.",
"properties": {
"version": {
"readOnly": true,
"type": "integer",
"description": "Data Model Version"
},
"tenantId": {
"readOnly": true,
"type": "string",
"description": "Azure Active Directory tenant id"
"description": "Azure Active Directory Tenant Id"
},
"domainName": {
"type": "string",
"description": "The name of the Azure domain that the user would like to deploy Domain Services to."
},
"deploymentId": {
"readOnly": true,
"type": "string",
"description": "Deployment Id"
},
"vnetSiteId": {
"readOnly": true,
"type": "string",
Expand All @@ -408,10 +460,26 @@
"$ref": "#/definitions/LdapsSettings",
"description": "Secure LDAP Settings"
},
"domainSecuritySettings": {
"$ref": "#/definitions/DomainSecuritySettings",
"description": "DomainSecurity Settings"
},
"resourceForestSettings": {
"$ref": "#/definitions/ResourceForestSettings",
"description": "Resource Forest Settings"
},
"domainConfigurationType": {
"type": "string",
"description": "Domain Configuration Type"
},
"sku": {
"type": "string",
"description": "Sku Type"
},
"healthLastEvaluated": {
"readOnly": true,
"type": "string",
"format": "date-time",
"format": "date-time-rfc1123",
"description": "Last domain evaluation run DateTime"
},
"healthMonitors": {
Expand All @@ -436,10 +504,6 @@
"$ref": "#/definitions/NotificationSettings",
"description": "Notification Settings"
},
"domainSecuritySettings": {
"$ref": "#/definitions/DomainSecuritySettings",
"description": "DomainSecurity Settings"
},
"filteredSync": {
"type": "string",
"enum": [
Expand Down Expand Up @@ -630,6 +694,48 @@
}
}
},
"ResourceForestSettings": {
"description": "Settings for Resource Forest",
"properties": {
"settings": {
"type": "array",
"items": {
"$ref": "#/definitions/ForestTrust"
},
"description": "List of settings for Resource Forest"
},
"resourceForest": {
"type": "string",
"description": "Resource Forest"
}
}
},
"ForestTrust": {
"description": "Forest Trust Setting",
"properties": {
"trustedDomainFqdn": {
"type": "string",
"description": "Trusted Domain FQDN"
},
"trustDirection": {
"type": "string",
"description": "Trust Direction"
},
"friendlyName": {
"type": "string",
"description": "Friendly Name"
},
"remoteDnsIps": {
"type": "string",
"description": "Remote Dns ips"
},
"trustPassword": {
"type": "string",
"description": "Trust Password",
"x-ms-secret": true
}
}
},
"DomainSecuritySettings": {
"description": "Domain Security Settings",
"properties": {
Expand Down Expand Up @@ -668,6 +774,30 @@
"name": "SyncNtlmPasswords",
"modelAsString": true
}
},
"syncKerberosPasswords": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "A flag to determine whether or not SyncKerberosPasswords is enabled or disabled.",
"x-ms-enum": {
"name": "SyncKerberosPasswords",
"modelAsString": true
}
},
"syncOnPremPasswords": {
"type": "string",
"enum": [
"Enabled",
"Disabled"
],
"description": "A flag to determine whether or not SyncOnPremPasswords is enabled or disabled.",
"x-ms-enum": {
"name": "SyncOnPremPasswords",
"modelAsString": true
}
}
}
},
Expand Down Expand Up @@ -728,6 +858,64 @@
"type": "string"
}
}
},
"DefaultErrorResponse": {
"description": "Domain Service error response.",
"type": "object",
"properties": {
"error": {
"description": "Error model.",
"type": "object",
"properties": {
"code": {
"description": "Standardized string to programmatically identify the error.",
"type": "string",
"readOnly": true
},
"message": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
},
"target": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
},
"details": {
"description": "Error details.",
"type": "array",
"items": {
"description": "Detailed errors.",
"properties": {
"code": {
"description": "Standardized string to programmatically identify the error.",
"type": "string",
"readOnly": true
},
"message": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
},
"target": {
"description": "Detailed error description and debugging information.",
"type": "string",
"readOnly": true
}
},
"readOnly": true
}
},
"innererror": {
"description": "More information to debug error.",
"type": "string",
"readOnly": true
}
},
"readOnly": true
}
}
}
},
"parameters": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -439,6 +439,11 @@
"type": "string",
"description": "Status of OuContainer instance"
},
"distinguishedName": {
"readOnly": true,
"type": "string",
"description": "Distinguished Name of OuContainer instance"
},
"provisioningState": {
"readOnly": true,
"type": "string",
Expand Down
Loading