Skip to content
Merged
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
2 changes: 1 addition & 1 deletion schemas/2018-09-01-preview/Microsoft.Attestation.json
Original file line number Diff line number Diff line change
Expand Up @@ -202,4 +202,4 @@
}
}
}
}
}
173 changes: 172 additions & 1 deletion schemas/2020-10-01/Microsoft.Attestation.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,16 @@
],
"description": "Client supplied parameters used to create a new attestation provider."
},
"resources": {
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/attestationProviders_privateEndpointConnections_childResource"
}
]
}
},
"tags": {
"oneOf": [
{
Expand Down Expand Up @@ -70,9 +80,87 @@
"type"
],
"description": "Microsoft.Attestation/attestationProviders"
},
"attestationProviders_privateEndpointConnections": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2020-10-01"
]
},
"name": {
"type": "string",
"description": "Name of the private endpoint connection associated with the attestation providers."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/PrivateEndpointConnectionProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Properties of the PrivateEndpointConnectProperties."
},
"type": {
"type": "string",
"enum": [
"Microsoft.Attestation/attestationProviders/privateEndpointConnections"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.Attestation/attestationProviders/privateEndpointConnections"
}
},
"definitions": {
"attestationProviders_privateEndpointConnections_childResource": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2020-10-01"
]
},
"name": {
"type": "string",
"description": "Name of the private endpoint connection associated with the attestation providers."
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/PrivateEndpointConnectionProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Properties of the PrivateEndpointConnectProperties."
},
"type": {
"type": "string",
"enum": [
"privateEndpointConnections"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.Attestation/attestationProviders/privateEndpointConnections"
},
"AttestationServiceCreationSpecificParamsModel": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -196,6 +284,89 @@
"description": "The value of the \"keys\" parameter is an array of JWK values. By\ndefault, the order of the JWK values within the array does not imply\nan order of preference among them, although applications of JWK Sets\ncan choose to assign a meaning to the order for their purposes, if\ndesired."
}
}
},
"PrivateEndpoint": {
"type": "object",
"properties": {},
"description": "The Private Endpoint resource."
},
"PrivateEndpointConnectionProperties": {
"type": "object",
"properties": {
"privateEndpoint": {
"oneOf": [
{
"$ref": "#/definitions/PrivateEndpoint"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The Private Endpoint resource."
},
"privateLinkServiceConnectionState": {
"oneOf": [
{
"$ref": "#/definitions/PrivateLinkServiceConnectionState"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "A collection of information about the state of the connection between service consumer and provider."
},
"provisioningState": {
"oneOf": [
{
"type": "string",
"enum": [
"Succeeded",
"Creating",
"Deleting",
"Failed"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The provisioning state of the private endpoint connection resource."
}
},
"required": [
"privateLinkServiceConnectionState"
],
"description": "Properties of the PrivateEndpointConnectProperties."
},
"PrivateLinkServiceConnectionState": {
"type": "object",
"properties": {
"actionsRequired": {
"type": "string",
"description": "A message indicating if changes on the service provider require any updates on the consumer."
},
"description": {
"type": "string",
"description": "The reason for approval/rejection of the connection."
},
"status": {
"oneOf": [
{
"type": "string",
"enum": [
"Pending",
"Approved",
"Rejected"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service."
}
},
"description": "A collection of information about the state of the connection between service consumer and provider."
}
}
}
}