Skip to content

Commit

Permalink
Generated from eeaf23de0e0cfc66ceb8f35f6b0debd90270dfdb
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Automation committed Sep 10, 2020
1 parent cf636b1 commit 1d7f8af
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 4 deletions.
2 changes: 1 addition & 1 deletion schemas/2014-09-01/Microsoft.EventHub.json
Original file line number Diff line number Diff line change
Expand Up @@ -669,4 +669,4 @@
"description": "SKU parameters supplied to the create Namespace operation"
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2015-08-01/Microsoft.EventHub.json
Original file line number Diff line number Diff line change
Expand Up @@ -669,4 +669,4 @@
"description": "SKU parameters supplied to the create Namespace operation"
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2017-04-01/Microsoft.EventHub.json
Original file line number Diff line number Diff line change
Expand Up @@ -1044,4 +1044,4 @@
"description": "Properties supplied for Subnet"
}
}
}
}
167 changes: 166 additions & 1 deletion schemas/2018-01-01-preview/Microsoft.EventHub.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@
},
{
"$ref": "#/definitions/namespaces_networkRuleSets_childResource"
},
{
"$ref": "#/definitions/namespaces_privateEndpointConnections_childResource"
}
]
}
Expand Down Expand Up @@ -259,6 +262,45 @@
],
"description": "Microsoft.EventHub/namespaces/networkRuleSets"
},
"namespaces_privateEndpointConnections": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2018-01-01-preview"
]
},
"name": {
"type": "string",
"description": "The PrivateEndpointConnection name"
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/PrivateEndpointConnectionProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Properties of the private endpoint connection resource."
},
"type": {
"type": "string",
"enum": [
"Microsoft.EventHub/namespaces/privateEndpointConnections"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.EventHub/namespaces/privateEndpointConnections"
},
"namespaces_virtualnetworkrules": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -342,6 +384,33 @@
],
"description": "SKU parameters particular to a cluster instance."
},
"ConnectionState": {
"type": "object",
"properties": {
"description": {
"type": "string",
"description": "Description of the connection state."
},
"status": {
"oneOf": [
{
"type": "string",
"enum": [
"Pending",
"Approved",
"Rejected",
"Disconnected"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Status of the connection."
}
},
"description": "ConnectionState information."
},
"EHNamespaceProperties": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -599,6 +668,45 @@
],
"description": "Microsoft.EventHub/namespaces/networkRuleSets"
},
"namespaces_privateEndpointConnections_childResource": {
"type": "object",
"properties": {
"apiVersion": {
"type": "string",
"enum": [
"2018-01-01-preview"
]
},
"name": {
"type": "string",
"description": "The PrivateEndpointConnection name"
},
"properties": {
"oneOf": [
{
"$ref": "#/definitions/PrivateEndpointConnectionProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Properties of the private endpoint connection resource."
},
"type": {
"type": "string",
"enum": [
"privateEndpointConnections"
]
}
},
"required": [
"apiVersion",
"name",
"properties",
"type"
],
"description": "Microsoft.EventHub/namespaces/privateEndpointConnections"
},
"namespaces_virtualnetworkrules_childResource": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -751,6 +859,63 @@
},
"description": "The response from the List namespace operation."
},
"PrivateEndpoint": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The ARM identifier for Private Endpoint."
}
},
"description": "PrivateEndpoint information."
},
"PrivateEndpointConnectionProperties": {
"type": "object",
"properties": {
"privateEndpoint": {
"oneOf": [
{
"$ref": "#/definitions/PrivateEndpoint"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "PrivateEndpoint information."
},
"privateLinkServiceConnectionState": {
"oneOf": [
{
"$ref": "#/definitions/ConnectionState"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "ConnectionState information."
},
"provisioningState": {
"oneOf": [
{
"type": "string",
"enum": [
"Creating",
"Updating",
"Deleting",
"Succeeded",
"Canceled",
"Failed"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Provisioning state of the Private Endpoint Connection."
}
},
"description": "Properties of the private endpoint connection resource."
},
"Sku": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -824,4 +989,4 @@
"description": "Properties supplied to create or update VirtualNetworkRules"
}
}
}
}

0 comments on commit 1d7f8af

Please sign in to comment.