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 eventhub] Eventhub: Added PrivateEndpointConnection API #265

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
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"
}
}
}
}