Skip to content

Commit

Permalink
Added Path and Properties (#20887)
Browse files Browse the repository at this point in the history
* Added Path and Properties

* Path order

* Example changes

* members change

* Changes

* Path Order

* params

Co-authored-by: VamshiKrishna Chirra (Quadrant Resource) <[email protected]>
  • Loading branch information
12VamshiKrishna and VamshiKrishna Chirra (Quadrant Resource) authored Oct 6, 2022
1 parent e20588b commit 6f4e22c
Show file tree
Hide file tree
Showing 2 changed files with 156 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"parameters": {
"subscriptionId": "7a587823-959d-4ad0-85bd-cf2a7cef436a",
"resourceGroupName": "DP-900",
"workspaceName": "synapse-ws-ebi-data",
"kustoPoolName": "dataexplorerpool900",
"api-version": "2021-06-01-preview"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/7a587823-959d-4ad0-85bd-cf2a7cef436a/resourceGroups/DP-900/providers/Microsoft.Synapse/workspaces/synapse-ws-ebi-data/kustoPools/dataexplorerpool900/privateLinkResources",
"name": "synapseWorkspaceName/dataexplorerpool900/privateLinkResources",
"type": "Microsoft.Synapse/Workspaces/KustoPools/privateLinkResources",
"properties": {
"groupId": "aaaaa",
"requiredMembers": [
"Engine",
"DataManagement",
"blob-ne3kstrldkustoCluster00",
"queue-ne3kstrldkustoCluster00",
"table-ne3kstrldkustoCluster00",
"blob-qmukstrldkustoCluster01",
"queue-qmukstrldkustoCluster01",
"table-qmukstrldkustoCluster01"
],
"requiredZoneNames": [
"privatelink.westus2.kusto.windows.net",
"privatelink.blob.core.windows.net",
"privatelink.queue.core.windows.net",
"privatelink.table.core.windows.net"
],
"provisioningState": "Succeeded"
}
}
]
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2299,6 +2299,54 @@
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Synapse/workspaces/{workspaceName}/kustoPools/{kustoPoolName}/privateLinkResources": {
"get": {
"tags": [
"KustoPoolPrivateLinkResources"
],
"operationId": "KustoPoolPrivateLinkResources_List",
"x-ms-examples": {
"KustoPoolPrivateLinkResourcesList": {
"$ref": "./examples/KustoPoolPrivateLinkResourcesList.json"
}
},
"description": "Lists all Kusto pool PrivateLinkResources.",
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "../../../../common/v1/types.json#/parameters/WorkspaceNameParameter"
},
{
"$ref": "#/parameters/kustoPoolNameParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "OK.",
"schema": {
"$ref": "#/definitions/PrivateLinkResources"
}
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": null
}
}
}
},
"definitions": {
Expand Down Expand Up @@ -3874,6 +3922,72 @@
"description": "The collection of available SKUs for an existing resource."
}
}
},
"PrivateLinkResources": {
"type": "object",
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/KustoPoolPrivateLinkResources"
},
"description": "The list of Kusto Private Link Resources."
}
},
"description": "The list Kusto Private Link Resources operation response."
},
"KustoPoolPrivateLinkResources": {
"type": "object",
"properties": {
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/PrivateLinkResourcesProperties",
"description": "The Private Link Resources."
},
"systemData": {
"readOnly": true,
"type": "object",
"description": "Azure Resource Manager metadata containing createdBy and modifiedBy information.",
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/systemData"
}
},
"allOf": [
{
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/ProxyResource"
}
],
"description": "Class representing a Private Link Resources."
},
"PrivateLinkResourcesProperties": {
"type": "object",
"properties": {
"groupId": {
"type": "string",
"readOnly": true,
"description": "The Private link resources GroupId"
},
"requiredMembers": {
"description": "The private link resource required member names.",
"type": "array",
"items": {
"type": "string"
},
"readOnly": true
},
"requiredZoneNames": {
"description": "The private link resource required zone names.",
"type": "array",
"items": {
"type": "string"
},
"readOnly": true
},
"provisioningState": {
"$ref": "#/definitions/ResourceProvisioningState",
"description": "The provisioned state of the resource."
}
},
"description": "Private Link Resources Properties."
}
},
"parameters": {
Expand Down

0 comments on commit 6f4e22c

Please sign in to comment.