Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR synapse] Add missing features to be released in 2021-06-01 into 2021-06-01-preview #4452

Closed
wants to merge 1 commit into from
Closed
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
143 changes: 143 additions & 0 deletions schemas/2021-06-01-preview/Microsoft.Synapse.json
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@
{
"$ref": "#/definitions/workspaces_managedIdentitySqlControlSettings_childResource"
},
{
"$ref": "#/definitions/workspaces_azureADOnlyAuthentications_childResource"
},
{
"$ref": "#/definitions/workspaces_kustoPools_childResource"
}
Expand Down Expand Up @@ -278,6 +281,53 @@
],
"description": "Microsoft.Synapse/workspaces/auditingSettings"
},
"workspaces_azureADOnlyAuthentications": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2021-06-01-preview"
]
},
"name": {
"oneOf": [
{
"type": "string",
"pattern": "^.*/default$"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "name of the property"
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AzureADOnlyAuthenticationProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Azure Active Directory Only Authentication properties"
},
"type": {
"type": "string",
"enum": [
"Microsoft.Synapse/workspaces/azureADOnlyAuthentications"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.Synapse/workspaces/azureADOnlyAuthentications"
},
"workspaces_bigDataPools": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -1991,6 +2041,26 @@
},
"description": "Auto-scaling properties of a Big Data pool powered by Apache Spark"
},
"AzureADOnlyAuthenticationProperties": {
"type": "object",
"properties": {
"azureADOnlyAuthentication": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Azure Active Directory Only Authentication enabled"
}
},
"required": [
"azureADOnlyAuthentication"
],
"description": "Azure Active Directory Only Authentication properties"
},
"AzureSku": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -2529,9 +2599,24 @@
"type": "string",
"description": "Account URL"
},
"createManagedPrivateEndpoint": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Create managed private endpoint to this storage account or not"
},
"filesystem": {
"type": "string",
"description": "Filesystem name"
},
"resourceId": {
"type": "string",
"description": "ARM resource Id of this storage account"
}
},
"description": "Details of the data lake storage account associated with the workspace"
Expand Down Expand Up @@ -5125,6 +5210,11 @@
"format": "date-time",
"description": "Snapshot time to restore"
},
"sourceDatabaseDeletionDate": {
"type": "string",
"format": "date-time",
"description": "Specifies the time that the sql pool was deleted"
},
"sourceDatabaseId": {
"type": "string",
"description": "Source database to create from"
Expand Down Expand Up @@ -5516,6 +5606,17 @@
"WorkspaceProperties": {
"type": "object",
"properties": {
"azureADOnlyAuthentication": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Enable or Disable AzureADOnlyAuthentication on All Workspace subresource"
},
"connectivityEndpoints": {
"oneOf": [
{
Expand Down Expand Up @@ -5789,6 +5890,48 @@
],
"description": "Microsoft.Synapse/workspaces/auditingSettings"
},
"workspaces_azureADOnlyAuthentications_childResource": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2021-06-01-preview"
]
},
"name": {
"type": "string",
"enum": [
"default"
],
"description": "name of the property"
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/AzureADOnlyAuthenticationProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Azure Active Directory Only Authentication properties"
},
"type": {
"type": "string",
"enum": [
"azureADOnlyAuthentications"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.Synapse/workspaces/azureADOnlyAuthentications"
},
"workspaces_bigDataPools_childResource": {
"type": "object",
"properties": {
Expand Down
3 changes: 3 additions & 0 deletions schemas/common/autogeneratedResources.json
Original file line number Diff line number Diff line change
Expand Up @@ -11005,6 +11005,9 @@
{
"$ref": "https://schema.management.azure.com/schemas/2021-06-01-preview/Microsoft.Synapse.json#/resourceDefinitions/workspaces_auditingSettings"
},
{
"$ref": "https://schema.management.azure.com/schemas/2021-06-01-preview/Microsoft.Synapse.json#/resourceDefinitions/workspaces_azureADOnlyAuthentications"
},
{
"$ref": "https://schema.management.azure.com/schemas/2021-06-01-preview/Microsoft.Synapse.json#/resourceDefinitions/workspaces_bigDataPools"
},
Expand Down