This commit is contained in:
Autogenerator Pipeline 2023-06-02 10:09:29 +00:00
Родитель 7846569937
Коммит e61d41921b
4 изменённых файлов: 731 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,523 @@
{
"id": "https://schema.management.azure.com/schemas/2023-04-01-preview/Microsoft.Communication.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Microsoft.Communication",
"description": "Microsoft Communication Resource Types",
"resourceDefinitions": {
"communicationServices": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2023-04-01-preview"
]
},
"identity": {
"oneOf": [
{
"$ref": "#/definitions/ManagedServiceIdentity"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Managed service identity (system assigned and/or user assigned identities)"
},
"location": {
"type": "string",
"description": "The geo-location where the resource lives"
},
"name": {
"oneOf": [
{
"type": "string",
"pattern": "^[-\\w]+$",
"minLength": 1,
"maxLength": 63
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The name of the CommunicationService resource."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/CommunicationServiceProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "A class that describes the properties of the CommunicationService."
},
"tags": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Resource tags."
},
"type": {
"type": "string",
"enum": [
"Microsoft.Communication/communicationServices"
]
}
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"type"
],
"description": "Microsoft.Communication/communicationServices"
},
"emailServices": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2023-04-01-preview"
]
},
"location": {
"type": "string",
"description": "The geo-location where the resource lives"
},
"name": {
"oneOf": [
{
"type": "string",
"pattern": "^[a-zA-Z0-9-]+$",
"minLength": 1,
"maxLength": 63
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The name of the EmailService resource."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/EmailServiceProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "A class that describes the properties of the EmailService."
},
"resources": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/emailServices_domains_childResource"
}
]
}
},
"tags": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Resource tags."
},
"type": {
"type": "string",
"enum": [
"Microsoft.Communication/emailServices"
]
}
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"type"
],
"description": "Microsoft.Communication/emailServices"
},
"emailServices_domains": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2023-04-01-preview"
]
},
"location": {
"type": "string",
"description": "The geo-location where the resource lives"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 253,
"description": "The name of the Domains resource."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/DomainProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "A class that describes the properties of a Domains resource."
},
"resources": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/emailServices_domains_senderUsernames_childResource"
}
]
}
},
"tags": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Resource tags."
},
"type": {
"type": "string",
"enum": [
"Microsoft.Communication/emailServices/domains"
]
}
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"type"
],
"description": "Microsoft.Communication/emailServices/domains"
},
"emailServices_domains_senderUsernames": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2023-04-01-preview"
]
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 253,
"description": "The valid sender Username."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/SenderUsernameProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "A class that describes the properties of a SenderUsername resource."
},
"type": {
"type": "string",
"enum": [
"Microsoft.Communication/emailServices/domains/senderUsernames"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.Communication/emailServices/domains/senderUsernames"
}
},
"definitions": {
"CommunicationServiceProperties": {
"type": "object",
"properties": {
"dataLocation": {
"type": "string",
"description": "The location where the communication service stores its data at rest."
},
"linkedDomains": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "List of email Domain resource Ids."
}
},
"required": [
"dataLocation"
],
"description": "A class that describes the properties of the CommunicationService."
},
"DomainProperties": {
"type": "object",
"properties": {
"domainManagement": {
"oneOf": [
{
"type": "string",
"enum": [
"AzureManaged",
"CustomerManaged",
"CustomerManagedInExchangeOnline"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"userEngagementTracking": {
"oneOf": [
{
"type": "string",
"enum": [
"Disabled",
"Enabled"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
}
},
"required": [
"domainManagement"
],
"description": "A class that describes the properties of a Domains resource."
},
"EmailServiceProperties": {
"type": "object",
"properties": {
"dataLocation": {
"type": "string",
"description": "The location where the email service stores its data at rest."
}
},
"required": [
"dataLocation"
],
"description": "A class that describes the properties of the EmailService."
},
"emailServices_domains_childResource": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2023-04-01-preview"
]
},
"location": {
"type": "string",
"description": "The geo-location where the resource lives"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 253,
"description": "The name of the Domains resource."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/DomainProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "A class that describes the properties of a Domains resource."
},
"tags": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Resource tags."
},
"type": {
"type": "string",
"enum": [
"domains"
]
}
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"type"
],
"description": "Microsoft.Communication/emailServices/domains"
},
"emailServices_domains_senderUsernames_childResource": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2023-04-01-preview"
]
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 253,
"description": "The valid sender Username."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/SenderUsernameProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "A class that describes the properties of a SenderUsername resource."
},
"type": {
"type": "string",
"enum": [
"senderUsernames"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.Communication/emailServices/domains/senderUsernames"
},
"ManagedServiceIdentity": {
"type": "object",
"properties": {
"type": {
"oneOf": [
{
"type": "string",
"enum": [
"None",
"SystemAssigned",
"UserAssigned",
"SystemAssigned,UserAssigned"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"userAssignedIdentities": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/UserAssignedIdentity"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests."
}
},
"required": [
"type"
],
"description": "Managed service identity (system assigned and/or user assigned identities)"
},
"SenderUsernameProperties": {
"type": "object",
"properties": {
"displayName": {
"type": "string",
"description": "The display name for the senderUsername."
},
"username": {
"type": "string",
"description": "A sender senderUsername to be used when sending emails."
}
},
"required": [
"username"
],
"description": "A class that describes the properties of a SenderUsername resource."
},
"UserAssignedIdentity": {
"type": "object",
"properties": {},
"description": "User assigned identity properties"
}
}
}

Просмотреть файл

@ -181,6 +181,21 @@
"type": "string",
"description": "eTag of the resource. To handle concurrent update scenario, this field will be used to determine whether the user is updating the latest version or not."
},
"identity": {
"oneOf": [
{
"$ref": "#/definitions/SystemAssignedServiceIdentity"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Managed service identity (either system assigned, or none)"
},
"location": {
"type": "string",
"description": "The location of the Export's managed identity. Only required when utilizing managed identity."
},
"name": {
"type": "string",
"description": "Export Name."
@ -1735,6 +1750,29 @@
],
"description": "The properties of the schedule."
},
"SystemAssignedServiceIdentity": {
"type": "object",
"properties": {
"type": {
"oneOf": [
{
"type": "string",
"enum": [
"None",
"SystemAssigned"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
}
},
"required": [
"type"
],
"description": "Managed service identity (either system assigned, or none)"
},
"SystemData": {
"type": "object",
"properties": {

Просмотреть файл

@ -0,0 +1,155 @@
{
"id": "https://schema.management.azure.com/schemas/2023-07-01-preview/Microsoft.ApiCenter.json#",
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Microsoft.ApiCenter",
"description": "Microsoft ApiCenter Resource Types",
"resourceDefinitions": {
"services": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2023-07-01-preview"
]
},
"identity": {
"oneOf": [
{
"$ref": "#/definitions/ManagedServiceIdentity"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Managed service identity (system assigned and/or user assigned identities)"
},
"location": {
"type": "string",
"description": "The geo-location where the resource lives"
},
"name": {
"oneOf": [
{
"type": "string",
"pattern": "^[a-zA-Z0-9\\-]{1,64}$"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Service name"
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/ServiceProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The properties of the service."
},
"tags": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Resource tags."
},
"type": {
"type": "string",
"enum": [
"Microsoft.ApiCenter/services"
]
}
},
"required": [
"apiVersion",
"location",
"name",
"properties",
"type"
],
"description": "Microsoft.ApiCenter/services"
}
},
"definitions": {
"ManagedServiceIdentity": {
"type": "object",
"properties": {
"type": {
"oneOf": [
{
"type": "string",
"enum": [
"None",
"SystemAssigned",
"UserAssigned",
"SystemAssigned,UserAssigned"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"userAssignedIdentities": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/UserAssignedIdentity"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests."
}
},
"required": [
"type"
],
"description": "Managed service identity (system assigned and/or user assigned identities)"
},
"ServiceProperties": {
"type": "object",
"properties": {
"provisioningState": {
"oneOf": [
{
"type": "string",
"enum": [
"Succeeded",
"Failed",
"Canceled"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The status of the last operation."
}
},
"description": "The properties of the service."
},
"UserAssignedIdentity": {
"type": "object",
"properties": {},
"description": "User assigned identity properties"
}
}
}

Просмотреть файл

@ -148,6 +148,9 @@
{
"$ref": "https://schema.management.azure.com/schemas/2017-08-01/Microsoft.AnalysisServices.json#/resourceDefinitions/servers"
},
{
"$ref": "https://schema.management.azure.com/schemas/2023-07-01-preview/Microsoft.ApiCenter.json#/resourceDefinitions/services"
},
{
"$ref": "https://schema.management.azure.com/schemas/2016-07-07/Microsoft.ApiManagement.json#/resourceDefinitions/service"
},
@ -5452,6 +5455,18 @@
{
"$ref": "https://schema.management.azure.com/schemas/2023-03-31/Microsoft.Communication.json#/resourceDefinitions/emailServices_domains_senderUsernames"
},
{
"$ref": "https://schema.management.azure.com/schemas/2023-04-01-preview/Microsoft.Communication.json#/resourceDefinitions/communicationServices"
},
{
"$ref": "https://schema.management.azure.com/schemas/2023-04-01-preview/Microsoft.Communication.json#/resourceDefinitions/emailServices"
},
{
"$ref": "https://schema.management.azure.com/schemas/2023-04-01-preview/Microsoft.Communication.json#/resourceDefinitions/emailServices_domains"
},
{
"$ref": "https://schema.management.azure.com/schemas/2023-04-01-preview/Microsoft.Communication.json#/resourceDefinitions/emailServices_domains_senderUsernames"
},
{
"$ref": "https://schema.management.azure.com/schemas/2015-06-15/Microsoft.Compute.Extensions.json#/resourceDefinitions/virtualMachines_extensions"
},