From c812847941a2033125fd7c81a996ce3489c0d2d4 Mon Sep 17 00:00:00 2001 From: "REDMOND\\frbettat" Date: Tue, 16 Jan 2018 14:27:54 -0800 Subject: [PATCH 1/9] Adding preview version of Event Hubs Cluster to Azure REST API specs. --- .../2018-01-01-preview/EventHubCluster.json | 606 ++++++++ .../examples/Clusters/EHClusterGet.json | 26 + .../examples/Clusters/EHClusterPatch.json | 50 + .../EHClusterQuotaConfigurationGet.json | 18 + .../EHClusterQuotaConfigurationPatch.json | 33 + .../EHClustersListByResourceGroup.json | 26 + .../EHClustersListBySubscription.json | 25 + .../Clusters/EHNamespacesInClusterGet.json | 1363 +++++++++++++++++ 8 files changed, 2147 insertions(+) create mode 100644 specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json create mode 100644 specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json create mode 100644 specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json create mode 100644 specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationGet.json create mode 100644 specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationPatch.json create mode 100644 specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json create mode 100644 specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json create mode 100644 specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHNamespacesInClusterGet.json diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json new file mode 100644 index 000000000000..d54cd49b2575 --- /dev/null +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json @@ -0,0 +1,606 @@ +{ + "swagger": "2.0", + "info": { + "title": "EventHubClusterManagementClient", + "description": "Azure Event Hubs Cluster client for managing Event Hubs Cluster resources.", + "version": "2018-01-01-preview" + }, + "host": "management.azure.com", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ], + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "flow": "implicit", + "description": "Azure Active Directory OAuth2 Flow", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/clusters": { + "get": { + "tags": [ + "Event Hubs Clusters" + ], + "operationId": "EHClusters_ListByResourceGroup", + "x-ms-examples": { + "ClustersListByResourceGroup": { + "$ref": "./examples/Clusters/EHClustersListByResourceGroup.json" + } + }, + "description": "Lists the available Event Hubs Clusters within an ARM resource group.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Clusters returned successfully.", + "schema": { + "$ref": "#/definitions/EHClusterListResult" + } + }, + "default": { + "description": "Event Hub Cluster error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/clusters/{clusterName}": { + "get": { + "tags": [ + "Event Hubs Cluster" + ], + "operationId": "Clusters_Get", + "x-ms-examples": { + "ClusterGet": { + "$ref": "./examples/Clusters/EHClusterGet.json" + } + }, + "description": "Gets the resource description of the specified Event Hubs Cluster.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ClusterNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Event Hubs Cluster resource description returned successfully.", + "schema": { + "$ref": "#/definitions/EHCluster" + } + }, + "default": { + "description": "Event Hubs Cluster error response describing why the cluster description get operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "patch": { + "tags": [ + "Event Hubs Cluster" + ], + "operationId": "Clusters_Update", + "x-ms-examples": { + "ClusterUpdate": { + "$ref": "./examples/Clusters/EHClusterUpdate.json" + } + }, + "description": "Modifies mutable properties on the Event Hubs Cluster. This operation is idempotent.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ClusterNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/EHCluster" + }, + "description": "The properties of the Event Hubs Cluster which should be updated." + } + ], + "responses": { + "200": { + "description": "Event Hubs Cluster successfully created.", + "schema": { + "$ref": "#/definitions/EHCluster" + } + }, + "201": { + "description": "Event Hubs Cluster update request accepted.", + "schema": { + "$ref": "#/definitions/EHCluster" + } + }, + "202": { + "description": "Event Hubs Cluster update request accepted." + }, + "default": { + "description": "Event Hubs error response detailing why the Event Hubs Cluster update operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-long-running-operation": true + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/clusters/{clusterName}/namespaces": { + "get": { + "tags": [ + "Event Hubs Namespaces in Cluster" + ], + "operationId": "Clusters_NamespacesGet", + "x-ms-examples": { + "ClusterNamespaces": { + "$ref": "./examples/Clusters/EHNamespacesInClusterGet.json" + } + }, + "description": "Get all Event Hubs Namespaces within the Event Hubs Cluster.", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ClusterNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "Event Hubs Cluster Namespace list returned successfully.", + "schema": { + "$ref": "#/definitions/EHNamespaceListResult" + } + }, + "default": { + "description": "Event Hubs Cluster error response describing why the namespaces in cluster get operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/clusters/{clusterName}/quotaConfiguration/default": { + "patch": { + "tags": [ + "Event Hubs Cluster Configuration" + ], + "operationId": "Clusters_ConfigurationPatch", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ClusterNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + }, + { + "name": "parameters", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/EHClusterQuotaConfigurationProperties", + "required": [ + "settings" + ] + }, + "description": "Parameters for creating an Event Hubs Cluster resource." + } + ], + "x-ms-examples": { + "ClustersQuotasConfigurationPatch": { + "$ref": "./examples/Clusters/EHClusterQuotaConfigurationPatch.json" + } + }, + "description": "Replace all specified Event Hubs Cluster settings with those contained in the request body. Leaves the settings not specified in the request body unmodified.", + "responses": { + "200": { + "description": "Event Hubs Cluster settings configuration returned.", + "schema": { + "$ref": "#/definitions/EHClusterQuotaConfigurationProperties" + } + }, + "201": { + "description": "Event Hubs Cluster setting configuration request successfully accepted.", + "schema": { + "$ref": "#/definitions/EHClusterQuotaConfigurationProperties" + } + }, + "202": { + "description": "Event Hubs Cluster update request accepted." + }, + "default": { + "description": "Event Hubs Cluster error response describing why the get cluster quotas and settings operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + }, + "get": { + "tags": [ + "Event Hubs Cluster Configuration" + ], + "operationId": "Clusters_ConfigurationGet", + "parameters": [ + { + "$ref": "#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "#/parameters/ResourceGroupNameParameter" + }, + { + "$ref": "#/parameters/ClusterNameParameter" + }, + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "x-ms-examples": { + "ClustersQuotasConfigurationGet": { + "$ref": "./examples/Clusters/EHClusterQuotaConfigurationGet.json" + } + }, + "description": "Get all Event Hubs Cluster settings - a collection of key/value pairs which represent the quotas and settings imposed on the cluster.", + "responses": { + "200": { + "description": "Event Hubs Cluster settings configuration returned.", + "schema": { + "$ref": "#/definitions/EHClusterQuotaConfigurationProperties" + } + }, + "default": { + "description": "Event Hubs Cluster error response describing why the get cluster quotas and settings operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + } + } + } + }, + "definitions": { + "EHCluster": { + "properties": { + "properties": { + "x-ms-client-flatten": true, + "properties": { + "created": { + "readOnly": true, + "type": "string", + "description": "The UTC time when the Event Hubs Cluster was created." + }, + "updated": { + "readOnly": true, + "type": "string", + "description": "The UTC time when the Event Hubs Cluster was last updated." + }, + "capacity": { + "readOnly": true, + "type": "integer", + "format": "int32", + "description": "The number of Capacity Units contained in this cluster." + } + }, + "description": "Event Hubs Cluster properties supplied in responses in List or Get operations." + } + }, + "allOf": [ + { + "$ref": "#/definitions/TrackedResource" + } + ], + "description": "Single Event Hubs Cluster resource in List or Get operations." + }, + "EHClusterListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/EHCluster" + }, + "description": "The Event Hubs Clusters present in the List Event Hubs operation results." + }, + "nextLink": { + "type": "string", + "description": "Link to the next set of results. Empty unless the value parameter contains an incomplete list of Event Hubs Clusters." + } + }, + "description": "The response of the List Event Hubs Clusters operation." + }, + "EHClusterQuotaConfigurationProperties": { + "properties": { + "settings": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "All possible Cluster settings - a collection of key/value paired settings which apply to quotas and configurations imposed on the cluster." + } + }, + "description": "Contains all settings for the cluster." + }, + "ErrorResponse": { + "description": "Error response that indicates the service is not able to process the incoming request. The reason is provided in the error message.", + "type": "object", + "properties": { + "code": { + "description": "Error code.", + "type": "string" + }, + "message": { + "description": "Error message indicating why the operation failed.", + "type": "string" + } + } + }, + "TrackedResource": { + "properties": { + "location": { + "type": "string", + "x-ms-mutability": [ + "read", + "create" + ], + "description": "Resource location" + }, + "tags": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "x-ms-mutability": [ + "read", + "create", + "update" + ], + "description": "Resource tags" + } + }, + "allOf": [ + { + "$ref": "#/definitions/Resource" + } + ], + "description": "Definition of an Azure resource." + }, + "Resource": { + "properties": { + "id": { + "type": "string", + "readOnly": true, + "description": "Resource Id" + }, + "name": { + "type": "string", + "readOnly": true, + "description": "Resource name" + }, + "type": { + "type": "string", + "readOnly": true, + "description": "Resource type" + } + }, + "description": "The Resource definition", + "x-ms-azure-resource": true + }, + "EHNamespaceListResult": { + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/definitions/EHNamespace" + }, + "description": "Result of the List Namespace operation" + }, + "nextLink": { + "type": "string", + "description": "Link to the next set of results. Not empty if Value contains incomplete list of namespaces." + } + }, + "description": "The response of the List Namespace operation" + }, + "EHNamespace": { + "properties": { + "sku": { + "$ref": "#/definitions/Sku", + "description": "Properties of sku resource" + }, + "properties": { + "x-ms-client-flatten": true, + "properties": { + "provisioningState": { + "readOnly": true, + "type": "string", + "description": "Provisioning state of the Namespace." + }, + "createdAt": { + "readOnly": true, + "format": "date-time", + "type": "string", + "description": "The time the Namespace was created." + }, + "updatedAt": { + "readOnly": true, + "format": "date-time", + "type": "string", + "description": "The time the Namespace was updated." + }, + "serviceBusEndpoint": { + "readOnly": true, + "type": "string", + "description": "Endpoint you can use to perform Service Bus operations." + }, + "metricId": { + "readOnly": true, + "type": "string", + "description": "Identifier for Azure Insights metrics." + }, + "isAutoInflateEnabled": { + "type": "boolean", + "description": "Value that indicates whether AutoInflate is enabled for eventhub namespace." + }, + "maximumThroughputUnits": { + "format": "int32", + "type": "integer", + "maximum": 20, + "minimum": 0, + "description": "Upper limit of throughput units when AutoInflate is enabled, vaule should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)" + } + }, + "description": "Namespace properties supplied for create namespace operation." + } + }, + "allOf": [ + { + "$ref": "#/definitions/TrackedResource" + } + ], + "description": "Single Namespace item in List or Get Operation" + }, + "Sku": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Name of this SKU.", + "enum": [ + "Basic", + "Standard" + ], + "x-ms-enum": { + "name": "SkuName", + "modelAsString": true + } + }, + "tier": { + "type": "string", + "description": "The billing tier of this particular SKU.", + "enum": [ + "Basic", + "Standard" + ], + "x-ms-enum": { + "name": "SkuTier", + "modelAsString": true + } + }, + "capacity": { + "format": "int32", + "maximum": 20, + "minimum": 0, + "type": "integer", + "description": "The Event Hubs throughput units, vaule should be 0 to 20 throughput units." + } + }, + "required": [ + "name" + ], + "description": "SKU parameters supplied to the create namespace operation" + } + }, + "parameters": { + "SubscriptionIdParameter": { + "name": "subscriptionId", + "in": "path", + "required": true, + "type": "string", + "description": "Subscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call." + }, + "ApiVersionParameter": { + "name": "api-version", + "in": "query", + "required": true, + "type": "string", + "description": "Client API version." + }, + "ResourceGroupNameParameter": { + "name": "resourceGroupName", + "in": "path", + "required": true, + "type": "string", + "minLength": 1, + "maxLength": 90, + "x-ms-parameter-location": "method", + "description": "Name of the resource group within the Azure subscription." + }, + "ClusterNameParameter": { + "name": "clusterName", + "in": "path", + "required": true, + "type": "string", + "minLength": 6, + "maxLength": 50, + "x-ms-parameter-location": "method", + "description": "The name of the Event Hubs Cluster." + } + } +} \ No newline at end of file diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json new file mode 100644 index 000000000000..6ac0ac18214e --- /dev/null +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "clusterName": "testCluster", + "resourceGroupName": "myResourceGroup", + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/clusters/testCluster", + "name": "testCluster", + "type": "Microsoft.EventHub/Clusters", + "location": "South Central US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "createdAt": "2017-05-24T23:23:27.877Z", + "updatedAt": "2017-05-24T23:23:27.877Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json new file mode 100644 index 000000000000..e1db973fe840 --- /dev/null +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json @@ -0,0 +1,50 @@ +{ + "parameters": { + "clusterName": "testCluster", + "resourceGroupName": "myResourceGroup", + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", + "parameters":{ + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/clusters/testCluster", + "name": "testCluster", + "type": "Microsoft.EventHub/Clusters", + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + }, + "properties": { + "createdAt": "2017-06-01T21:37:04.46Z", + "updatedAt": "2017-06-01T21:37:53.413Z" + } + } + }, + "201": { + "body": { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/myResourceGroup/providers/Microsoft.EventHub/clusters/testCluster", + "name": "testCluster", + "type": "Microsoft.EventHub/Clusters", + "location": "South Central US", + "tags": { + "tag3": "value3", + "tag4": "value4" + }, + "properties": { + "createdAt": "2017-06-01T21:37:04.46Z", + "updatedAt": "2017-06-01T21:37:53.413Z" + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationGet.json new file mode 100644 index 000000000000..c5ea73433060 --- /dev/null +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationGet.json @@ -0,0 +1,18 @@ +{ + "parameters": { + "clusterName": "testCluster", + "resourceGroupName": "myResourceGroup", + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" + }, + "responses": { + "200": { + "body": { + "settings": { + "namespaces-per-cluster-quota": "200", + "eventhub-per-namespace-quota": "20" + } + } + } + } +} \ No newline at end of file diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationPatch.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationPatch.json new file mode 100644 index 000000000000..d214e8c44414 --- /dev/null +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationPatch.json @@ -0,0 +1,33 @@ +{ + "parameters": { + "clusterName": "testCluster", + "resourceGroupName": "ArunMonocle", + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", + "parameters": { + "settings": { + "namespaces-per-cluster-quota": "200", + "eventhub-per-namespace-quota": "20" + } + } + }, + "responses": { + "200": { + "body": { + "settings": { + "namespaces-per-cluster-quota": "200", + "eventhub-per-namespace-quota": "20" + } + } + }, + "201": { + "body": { + "settings": { + "namespaces-per-cluster-quota": "200", + "eventhub-per-namespace-quota": "20" + } + } + }, + "202": {} + } +} \ No newline at end of file diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json new file mode 100644 index 000000000000..d462085f60c3 --- /dev/null +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json @@ -0,0 +1,26 @@ +{ + "parameters": { + "api-version": "2017-04-01", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4", + "resourceGroupName": "myResourceGroup" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/clusters/testCluster", + "name": "testCluster", + "type": "Microsoft.EventHub/Clusters", + "location": "South Central US", + "tags": {}, + "properties": { + "createdAt": "2016-09-13T23:17:25.24Z", + "updatedAt": "2016-09-13T23:17:28.223Z" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json new file mode 100644 index 000000000000..457c81f207ae --- /dev/null +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json @@ -0,0 +1,25 @@ +{ + "parameters": { + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/clusters/testCluster", + "name": "testCluster", + "type": "Microsoft.EventHub/Clusters", + "location": "South Central US", + "tags": {}, + "properties": { + "createdAt": "2016-09-13T23:17:25.24Z", + "updatedAt": "2016-09-13T23:17:28.223Z" + } + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHNamespacesInClusterGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHNamespacesInClusterGet.json new file mode 100644 index 000000000000..ba7941a870f0 --- /dev/null +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHNamespacesInClusterGet.json @@ -0,0 +1,1363 @@ +{ + "parameters": { + "clusterName": "testCluster", + "resourceGroupName": "myResourceGroup", + "api-version": "2018-01-01-preview", + "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/sadfsadfsadf/providers/Microsoft.EventHub/namespaces/eh-ns1", + "name": "eh-ns1", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:eh-ns1", + "createdAt": "2016-08-23T04:15:35.263Z", + "updatedAt": "2017-02-03T20:13:04.007Z", + "serviceBusEndpoint": "https://eh-ns1.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 9 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/ehnamespace1", + "name": "ehnamespace1", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 20, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ehnamespace1", + "createdAt": "2016-08-05T16:56:48.657Z", + "updatedAt": "2017-05-03T23:49:12.69Z", + "serviceBusEndpoint": "https://ehnamespace1.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-08dc2b6d-82f6-43e8-bdcd-56bbb31a1a95", + "name": "NS-08dc2b6d-82f6-43e8-bdcd-56bbb31a1a95", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-08dc2b6d-82f6-43e8-bdcd-56bbb31a1a95", + "createdAt": "2016-09-16T01:10:00.96Z", + "updatedAt": "2017-02-11T11:15:32.313Z", + "serviceBusEndpoint": "https://NS-08dc2b6d-82f6-43e8-bdcd-56bbb31a1a95.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-027302b7-df82-43a1-abf7-b6a2e2429115", + "name": "NS-027302b7-df82-43a1-abf7-b6a2e2429115", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-027302b7-df82-43a1-abf7-b6a2e2429115", + "createdAt": "2016-08-05T04:13:34.727Z", + "updatedAt": "2017-02-11T10:35:30.053Z", + "serviceBusEndpoint": "https://NS-027302b7-df82-43a1-abf7-b6a2e2429115.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 7 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/abc-7-14", + "name": "abc-7-14", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 14, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:abc-7-14", + "createdAt": "2017-05-05T17:58:58.433Z", + "updatedAt": "2017-05-05T17:59:20Z", + "serviceBusEndpoint": "https://abc-7-14.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3054", + "name": "sdk-Namespace-3054", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3054", + "createdAt": "2017-05-24T18:43:53.58Z", + "updatedAt": "2017-05-24T18:44:16.657Z", + "serviceBusEndpoint": "https://sdk-Namespace-3054.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/namespace1asdfsa", + "name": "namespace1asdfsa", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:namespace1asdfsa", + "createdAt": "2016-09-12T18:23:15.833Z", + "updatedAt": "2017-02-04T01:58:49.523Z", + "serviceBusEndpoint": "https://namespace1asdfsa.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 3 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/hello1-3-8", + "name": "hello1-3-8", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 8, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:hello1-3-8", + "createdAt": "2017-05-05T19:23:18.96Z", + "updatedAt": "2017-05-05T19:23:42.497Z", + "serviceBusEndpoint": "https://hello1-3-8.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/SBPerplexed", + "name": "SBPerplexed", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sbperplexed", + "createdAt": "2016-10-10T19:18:57.773Z", + "updatedAt": "2017-02-03T23:46:15.22Z", + "serviceBusEndpoint": "https://SBPerplexed.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/ehnamespace123", + "name": "ehnamespace123", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ehnamespace123", + "createdAt": "2016-08-05T16:57:09Z", + "updatedAt": "2017-02-11T08:25:30.093Z", + "serviceBusEndpoint": "https://ehnamespace123.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/oaisdjfoiasdjfoiajsdfoijasd", + "name": "oaisdjfoiasdjfoiajsdfoijasd", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:oaisdjfoiasdjfoiajsdfoijasd", + "createdAt": "2017-05-03T22:05:29.61Z", + "updatedAt": "2017-05-03T22:05:51.593Z", + "serviceBusEndpoint": "https://oaisdjfoiasdjfoiajsdfoijasd.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-ns3", + "name": "rrama-ns3", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-ns3", + "createdAt": "2016-08-23T04:22:40.633Z", + "updatedAt": "2017-02-11T12:52:58.277Z", + "serviceBusEndpoint": "https://rrama-ns3.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/abc123", + "name": "abc123", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:abc123", + "createdAt": "2017-05-04T19:06:00.813Z", + "updatedAt": "2017-05-04T19:06:23.71Z", + "serviceBusEndpoint": "https://abc123.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/ehnamespace21", + "name": "ehnamespace21", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ehnamespace21", + "createdAt": "2016-08-05T16:57:00.377Z", + "updatedAt": "2017-02-11T09:50:32.86Z", + "serviceBusEndpoint": "https://ehnamespace21.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/SBFlerbederp", + "name": "SBFlerbederp", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sbflerbederp", + "createdAt": "2016-10-10T19:32:17.56Z", + "updatedAt": "2017-02-03T20:46:59.227Z", + "serviceBusEndpoint": "https://SBFlerbederp.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 9 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/aaa-001-9-11", + "name": "aaa-001-9-11", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 11, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:aaa-001-9-11", + "createdAt": "2017-05-05T17:32:22.37Z", + "updatedAt": "2017-05-05T17:32:44.76Z", + "serviceBusEndpoint": "https://aaa-001-9-11.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-47a32389-7331-47c8-9228-4c145b2650d7", + "name": "NS-47a32389-7331-47c8-9228-4c145b2650d7", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-47a32389-7331-47c8-9228-4c145b2650d7", + "createdAt": "2016-09-16T01:41:51.857Z", + "updatedAt": "2017-02-11T08:28:03.157Z", + "serviceBusEndpoint": "https://NS-47a32389-7331-47c8-9228-4c145b2650d7.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-54cbc924-fb3c-4b09-bd7a-4fe6d2b785a7", + "name": "NS-54cbc924-fb3c-4b09-bd7a-4fe6d2b785a7", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-54cbc924-fb3c-4b09-bd7a-4fe6d2b785a7", + "createdAt": "2016-08-05T03:39:52.323Z", + "updatedAt": "2017-02-11T04:40:32.24Z", + "serviceBusEndpoint": "https://NS-54cbc924-fb3c-4b09-bd7a-4fe6d2b785a7.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/SBFeasible", + "name": "SBFeasible", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sbfeasible", + "createdAt": "2016-10-10T19:05:24.76Z", + "updatedAt": "2017-02-03T19:51:55.893Z", + "serviceBusEndpoint": "https://SBFeasible.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-3b72258b-a8a1-4250-8952-e89a15af71fc", + "name": "NS-3b72258b-a8a1-4250-8952-e89a15af71fc", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-3b72258b-a8a1-4250-8952-e89a15af71fc", + "createdAt": "2016-09-16T17:59:27.227Z", + "updatedAt": "2017-02-27T19:34:26.633Z", + "serviceBusEndpoint": "https://NS-3b72258b-a8a1-4250-8952-e89a15af71fc.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", + "name": "sdk-Namespace-5849", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": { + "tag1": "value1", + "tag2": "value2" + }, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", + "createdAt": "2017-05-24T23:23:27.877Z", + "updatedAt": "2017-05-24T23:23:50.467Z", + "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/testDC/providers/Microsoft.EventHub/namespaces/TestNamespace1", + "name": "TestNamespace1", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 10, + "provisioningState": "Updating", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:testnamespace1", + "createdAt": "2017-04-25T00:28:00.243Z", + "updatedAt": "2017-04-26T20:54:41.18Z", + "serviceBusEndpoint": "https://TestNamespace1.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-ehns", + "name": "rrama-ehns", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-ehns", + "createdAt": "2016-08-23T04:22:49.74Z", + "updatedAt": "2017-02-11T07:03:51.793Z", + "serviceBusEndpoint": "https://rrama-ehns.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/testDC/providers/Microsoft.EventHub/namespaces/TestNamespace3", + "name": "TestNamespace3", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:testnamespace3", + "createdAt": "2017-05-03T22:33:17.84Z", + "updatedAt": "2017-05-03T22:33:40.087Z", + "serviceBusEndpoint": "https://TestNamespace3.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4984", + "name": "sdk-Namespace-4984", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-4984", + "createdAt": "2017-05-24T21:31:03.587Z", + "updatedAt": "2017-05-24T21:31:24.967Z", + "serviceBusEndpoint": "https://sdk-Namespace-4984.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-19df9616-54d6-47c9-8779-a4651835a95c", + "name": "NS-19df9616-54d6-47c9-8779-a4651835a95c", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-19df9616-54d6-47c9-8779-a4651835a95c", + "createdAt": "2016-08-23T02:38:33.8Z", + "updatedAt": "2017-02-11T04:28:01.093Z", + "serviceBusEndpoint": "https://NS-19df9616-54d6-47c9-8779-a4651835a95c.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-463af3de-8c87-4347-a614-a4c24f748109", + "name": "NS-463af3de-8c87-4347-a614-a4c24f748109", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-463af3de-8c87-4347-a614-a4c24f748109", + "createdAt": "2016-08-05T00:55:04.807Z", + "updatedAt": "2017-02-11T06:13:53.343Z", + "serviceBusEndpoint": "https://NS-463af3de-8c87-4347-a614-a4c24f748109.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5606", + "name": "sdk-Namespace-5606", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5606", + "createdAt": "2017-05-24T18:56:05.093Z", + "updatedAt": "2017-05-24T18:56:27.32Z", + "serviceBusEndpoint": "https://sdk-Namespace-5606.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-2d5d93d1-1d01-4141-9f4d-7d619b9c88c3", + "name": "NS-2d5d93d1-1d01-4141-9f4d-7d619b9c88c3", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-2d5d93d1-1d01-4141-9f4d-7d619b9c88c3", + "createdAt": "2016-08-05T04:18:53.27Z", + "updatedAt": "2017-02-11T06:49:39.877Z", + "serviceBusEndpoint": "https://NS-2d5d93d1-1d01-4141-9f4d-7d619b9c88c3.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7703", + "name": "sdk-Namespace-7703", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-7703", + "createdAt": "2017-05-24T19:05:23.817Z", + "updatedAt": "2017-05-24T19:05:44.717Z", + "serviceBusEndpoint": "https://sdk-Namespace-7703.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 3 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/zzzzzzzzzzzzzzzzzzzzzz-00001", + "name": "zzzzzzzzzzzzzzzzzzzzzz-00001", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 11, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:zzzzzzzzzzzzzzzzzzzzzz-00001", + "createdAt": "2017-05-04T21:35:49.383Z", + "updatedAt": "2017-05-05T17:01:20.733Z", + "serviceBusEndpoint": "https://zzzzzzzzzzzzzzzzzzzzzz-00001.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/SBQuestionable", + "name": "SBQuestionable", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sbquestionable", + "createdAt": "2016-10-10T18:56:24.723Z", + "updatedAt": "2017-02-03T19:51:46.983Z", + "serviceBusEndpoint": "https://SBQuestionable.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/ehnamespace1234", + "name": "ehnamespace1234", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ehnamespace1234", + "createdAt": "2016-08-05T16:57:17.863Z", + "updatedAt": "2017-02-11T10:35:33.817Z", + "serviceBusEndpoint": "https://ehnamespace1234.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3919", + "name": "sdk-Namespace-3919", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3919", + "createdAt": "2017-05-24T02:08:20.15Z", + "updatedAt": "2017-05-24T02:08:41.313Z", + "serviceBusEndpoint": "https://sdk-Namespace-3919.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/arunarchivetest", + "name": "arunarchivetest", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:arunarchivetest", + "createdAt": "2017-03-08T19:25:49.897Z", + "updatedAt": "2017-03-08T19:26:17.49Z", + "serviceBusEndpoint": "https://arunarchivetest.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/aiosdjfaoidjasdoijasdfoijasdfofijsdf", + "name": "aiosdjfaoidjasdoijasdfoijasdfofijsdf", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:aiosdjfaoidjasdoijasdfoijasdfofijsdf", + "createdAt": "2017-05-04T21:23:23.9Z", + "updatedAt": "2017-05-04T21:23:46.78Z", + "serviceBusEndpoint": "https://aiosdjfaoidjasdoijasdfoijasdfofijsdf.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3413", + "name": "sdk-Namespace-3413", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3413", + "createdAt": "2017-05-24T19:02:15.45Z", + "updatedAt": "2017-05-24T19:02:38.047Z", + "serviceBusEndpoint": "https://sdk-Namespace-3413.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/SBConfuzzled", + "name": "SBConfuzzled", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sbconfuzzled", + "createdAt": "2016-10-10T19:30:45.71Z", + "updatedAt": "2017-02-03T22:49:17.82Z", + "serviceBusEndpoint": "https://SBConfuzzled.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8695", + "name": "sdk-Namespace-8695", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-8695", + "createdAt": "2017-05-24T20:03:43.81Z", + "updatedAt": "2017-05-24T20:04:05.88Z", + "serviceBusEndpoint": "https://sdk-Namespace-8695.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 11 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/aaa-11-17", + "name": "aaa-11-17", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 17, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:aaa-11-17", + "createdAt": "2017-05-08T18:47:07.64Z", + "updatedAt": "2017-05-08T18:47:29.587Z", + "serviceBusEndpoint": "https://aaa-11-17.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 4 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/hello1-4-14", + "name": "hello1-4-14", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 14, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:hello1-4-14", + "createdAt": "2017-05-05T18:54:20.563Z", + "updatedAt": "2017-05-05T18:54:42.507Z", + "serviceBusEndpoint": "https://hello1-4-14.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4801", + "name": "sdk-Namespace-4801", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-4801", + "createdAt": "2017-05-24T18:39:39.213Z", + "updatedAt": "2017-05-24T18:40:00.087Z", + "serviceBusEndpoint": "https://sdk-Namespace-4801.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 8 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/RichardsEventHub1", + "name": "RichardsEventHub1", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 15, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:richardseventhub1", + "createdAt": "2017-04-27T19:15:13.05Z", + "updatedAt": "2017-05-09T19:34:41.127Z", + "serviceBusEndpoint": "https://RichardsEventHub1.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 7 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-autoinflate-test", + "name": "rrama-autoinflate-test", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 10, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-autoinflate-test", + "createdAt": "2017-05-01T16:58:11.34Z", + "updatedAt": "2017-05-08T21:52:42.663Z", + "serviceBusEndpoint": "https://rrama-autoinflate-test.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/foofoofoofoof", + "name": "foofoofoofoof", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:foofoofoofoof", + "createdAt": "2017-04-29T02:47:53.523Z", + "updatedAt": "2017-04-29T02:48:17.95Z", + "serviceBusEndpoint": "https://foofoofoofoof.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/asdf1234asdf", + "name": "asdf1234asdf", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:asdf1234asdf", + "createdAt": "2016-09-13T01:45:40.58Z", + "updatedAt": "2017-02-11T06:54:38.623Z", + "serviceBusEndpoint": "https://asdf1234asdf.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2812", + "name": "sdk-Namespace-2812", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-2812", + "createdAt": "2017-05-24T18:55:44.687Z", + "updatedAt": "2017-05-24T18:56:05.587Z", + "serviceBusEndpoint": "https://sdk-Namespace-2812.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-4aadc830-1029-49b8-8fbd-dd0130e7a84c", + "name": "NS-4aadc830-1029-49b8-8fbd-dd0130e7a84c", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-4aadc830-1029-49b8-8fbd-dd0130e7a84c", + "createdAt": "2016-08-05T04:02:53.43Z", + "updatedAt": "2017-02-11T05:13:02.697Z", + "serviceBusEndpoint": "https://NS-4aadc830-1029-49b8-8fbd-dd0130e7a84c.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-5e79a429-aa52-42b9-8120-2fe72fc00727", + "name": "NS-5e79a429-aa52-42b9-8120-2fe72fc00727", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-5e79a429-aa52-42b9-8120-2fe72fc00727", + "createdAt": "2016-08-05T01:13:41.527Z", + "updatedAt": "2017-02-11T04:24:44.797Z", + "serviceBusEndpoint": "https://NS-5e79a429-aa52-42b9-8120-2fe72fc00727.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-df-ns1", + "name": "rrama-df-ns1", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-df-ns1", + "createdAt": "2016-10-27T23:35:05.453Z", + "updatedAt": "2017-02-03T20:23:49.533Z", + "serviceBusEndpoint": "https://rrama-df-ns1.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 9 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/bbbb-9-12", + "name": "bbbb-9-12", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 12, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:bbbb-9-12", + "createdAt": "2017-05-05T17:47:35.123Z", + "updatedAt": "2017-05-05T17:47:56.1Z", + "serviceBusEndpoint": "https://bbbb-9-12.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/eh-autoInflate/providers/Microsoft.EventHub/namespaces/rrama-autoinflate-template1", + "name": "rrama-autoinflate-template1", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 10, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-autoinflate-template1", + "createdAt": "2017-05-03T17:46:36.71Z", + "updatedAt": "2017-05-03T17:47:00.163Z", + "serviceBusEndpoint": "https://rrama-autoinflate-template1.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/RandomPlotTwists", + "name": "RandomPlotTwists", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:randomplottwists", + "createdAt": "2017-05-18T00:37:26.13Z", + "updatedAt": "2017-05-18T00:37:49.533Z", + "serviceBusEndpoint": "https://RandomPlotTwists.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-1862d295-09cc-4e54-b23d-a2bc3bab2392", + "name": "NS-1862d295-09cc-4e54-b23d-a2bc3bab2392", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-1862d295-09cc-4e54-b23d-a2bc3bab2392", + "createdAt": "2016-08-05T04:08:14.253Z", + "updatedAt": "2017-02-11T04:33:53.34Z", + "serviceBusEndpoint": "https://NS-1862d295-09cc-4e54-b23d-a2bc3bab2392.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-MigrateThis", + "name": "NS-MigrateThis", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-migratethis", + "createdAt": "2016-08-06T00:23:12.3Z", + "updatedAt": "2017-02-04T00:25:08.043Z", + "serviceBusEndpoint": "https://NS-MigrateThis.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-5e01d977-125c-4fd2-8a78-cc50be544d1f", + "name": "NS-5e01d977-125c-4fd2-8a78-cc50be544d1f", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-5e01d977-125c-4fd2-8a78-cc50be544d1f", + "createdAt": "2016-08-05T04:34:33.617Z", + "updatedAt": "2017-02-11T05:54:42.25Z", + "serviceBusEndpoint": "https://NS-5e01d977-125c-4fd2-8a78-cc50be544d1f.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 10 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-2b17fb74-2719-4c68-9ba3-13a018485b1f", + "name": "NS-2b17fb74-2719-4c68-9ba3-13a018485b1f", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 10, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-2b17fb74-2719-4c68-9ba3-13a018485b1f", + "createdAt": "2016-08-05T04:29:17.147Z", + "updatedAt": "2017-05-02T19:52:53.243Z", + "serviceBusEndpoint": "https://NS-2b17fb74-2719-4c68-9ba3-13a018485b1f.servicebus.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-int7-ehns123", + "name": "rrama-int7-ehns123", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-int7-ehns123", + "createdAt": "2016-09-13T23:35:15.473Z", + "updatedAt": "2016-09-13T23:35:38.63Z", + "serviceBusEndpoint": "https://rrama-int7-ehns123.servicebus.int7.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-autoinflate-test", + "name": "rrama-autoinflate-test", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 10, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-autoinflate-test", + "createdAt": "2017-05-01T17:48:04.55Z", + "updatedAt": "2017-05-04T21:15:36.013Z", + "serviceBusEndpoint": "https://rrama-autoinflate-test.servicebus.int7.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-autoinflate2", + "name": "rrama-autoinflate2", + "type": "Microsoft.EventHub/Namespaces", + "location": "North Europe", + "tags": {}, + "properties": { + "isAutoInflateEnabled": true, + "maximumThroughputUnits": 10, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-autoinflate2", + "createdAt": "2017-05-01T20:50:00.22Z", + "updatedAt": "2017-05-01T20:50:24.687Z", + "serviceBusEndpoint": "https://rrama-autoinflate2.servicebus.int7.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 1 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/db3-rrama-foo1", + "name": "db3-rrama-foo1", + "type": "Microsoft.EventHub/Namespaces", + "location": "North Europe", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:db3-rrama-foo1", + "createdAt": "2017-04-28T23:47:36.503Z", + "updatedAt": "2017-05-01T21:14:37.133Z", + "serviceBusEndpoint": "https://db3-rrama-foo1.servicebus.int7.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-int7-ehns1", + "name": "rrama-int7-ehns1", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-int7-ehns1", + "createdAt": "2016-09-13T23:20:44.853Z", + "updatedAt": "2016-09-13T23:20:47.35Z", + "serviceBusEndpoint": "https://rrama-int7-ehns1.servicebus.int7.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-int7-ns1", + "name": "rrama-int7-ns1", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-int7-ns1", + "createdAt": "2016-09-13T23:17:25.24Z", + "updatedAt": "2016-09-13T23:17:28.223Z", + "serviceBusEndpoint": "https://rrama-int7-ns1.servicebus.int7.windows-int.net:443/" + } + }, + { + "sku": { + "name": "Standard", + "tier": "Standard", + "capacity": 0 + }, + "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-ehns2-int7", + "name": "rrama-ehns2-int7", + "type": "Microsoft.EventHub/Namespaces", + "location": "South Central US", + "tags": {}, + "properties": { + "isAutoInflateEnabled": false, + "maximumThroughputUnits": 0, + "provisioningState": "Succeeded", + "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-ehns2-int7", + "createdAt": "2016-09-13T23:26:21.64Z", + "updatedAt": "2016-09-13T23:26:37.95Z", + "serviceBusEndpoint": "https://rrama-ehns2-int7.servicebus.int7.windows-int.net:443/" + } + } + ] + } + } + } +} \ No newline at end of file From 5bdef436e6b3c677c62bc45441cfdd092462fe84 Mon Sep 17 00:00:00 2001 From: "REDMOND\\frbettat" Date: Tue, 16 Jan 2018 14:38:59 -0800 Subject: [PATCH 2/9] Adding capacity property to EH Cluster examples. --- .../examples/Clusters/EHClusterGet.json | 5 +++-- .../examples/Clusters/EHClusterPatch.json | 10 ++++++---- .../Clusters/EHClustersListByResourceGroup.json | 5 +++-- .../Clusters/EHClustersListBySubscription.json | 5 +++-- 4 files changed, 15 insertions(+), 10 deletions(-) diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json index 6ac0ac18214e..19acc1731066 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json @@ -17,8 +17,9 @@ "tag2": "value2" }, "properties": { - "createdAt": "2017-05-24T23:23:27.877Z", - "updatedAt": "2017-05-24T23:23:27.877Z" + "created": "2017-05-24T23:23:27.877Z", + "updated": "2017-05-24T23:23:27.877Z", + "capacity": 2 } } } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json index e1db973fe840..5847f8b0b79b 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json @@ -24,8 +24,9 @@ "tag4": "value4" }, "properties": { - "createdAt": "2017-06-01T21:37:04.46Z", - "updatedAt": "2017-06-01T21:37:53.413Z" + "created": "2017-06-01T21:37:04.46Z", + "updated": "2017-06-01T21:37:53.413Z", + "capacity": 2 } } }, @@ -40,8 +41,9 @@ "tag4": "value4" }, "properties": { - "createdAt": "2017-06-01T21:37:04.46Z", - "updatedAt": "2017-06-01T21:37:53.413Z" + "created": "2017-06-01T21:37:04.46Z", + "updated": "2017-06-01T21:37:53.413Z", + "capacity": 2 } } }, diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json index d462085f60c3..8ea6e7d3076d 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json @@ -15,8 +15,9 @@ "location": "South Central US", "tags": {}, "properties": { - "createdAt": "2016-09-13T23:17:25.24Z", - "updatedAt": "2016-09-13T23:17:28.223Z" + "created": "2016-09-13T23:17:25.24Z", + "updated": "2016-09-13T23:17:28.223Z", + "capacity": 2 } } ] diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json index 457c81f207ae..44646ee5115b 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json @@ -14,8 +14,9 @@ "location": "South Central US", "tags": {}, "properties": { - "createdAt": "2016-09-13T23:17:25.24Z", - "updatedAt": "2016-09-13T23:17:28.223Z" + "created": "2016-09-13T23:17:25.24Z", + "updated": "2016-09-13T23:17:28.223Z", + "capacity": 2 } } ] From 1228908b67782f12d4e81742515b0bd32e3df56b Mon Sep 17 00:00:00 2001 From: "REDMOND\\frbettat" Date: Tue, 16 Jan 2018 14:49:28 -0800 Subject: [PATCH 3/9] Differentiating update semantics with patch semantics. --- .../preview/2018-01-01-preview/EventHubCluster.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json index d54cd49b2575..380a18decf7b 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json @@ -121,10 +121,10 @@ "tags": [ "Event Hubs Cluster" ], - "operationId": "Clusters_Update", + "operationId": "Clusters_Patch", "x-ms-examples": { - "ClusterUpdate": { - "$ref": "./examples/Clusters/EHClusterUpdate.json" + "ClusterPatch": { + "$ref": "./examples/Clusters/EHClusterPatch.json" } }, "description": "Modifies mutable properties on the Event Hubs Cluster. This operation is idempotent.", From b549b3dc0565aeadde62ef32c38d5bb64dec66aa Mon Sep 17 00:00:00 2001 From: Franco Bettati Date: Wed, 14 Feb 2018 10:59:17 -0800 Subject: [PATCH 4/9] RP-Cluster API: Revamping namespaces enumeration in cluster. --- .../2018-01-01-preview/EventHubCluster.json | 45 - .../Clusters/EHNamespacesInClusterGet.json | 1363 ----------------- 2 files changed, 1408 deletions(-) delete mode 100644 specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHNamespacesInClusterGet.json diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json index 380a18decf7b..8efb07b69130 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json @@ -177,51 +177,6 @@ "x-ms-long-running-operation": true } }, - "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/clusters/{clusterName}/namespaces": { - "get": { - "tags": [ - "Event Hubs Namespaces in Cluster" - ], - "operationId": "Clusters_NamespacesGet", - "x-ms-examples": { - "ClusterNamespaces": { - "$ref": "./examples/Clusters/EHNamespacesInClusterGet.json" - } - }, - "description": "Get all Event Hubs Namespaces within the Event Hubs Cluster.", - "parameters": [ - { - "$ref": "#/parameters/SubscriptionIdParameter" - }, - { - "$ref": "#/parameters/ResourceGroupNameParameter" - }, - { - "$ref": "#/parameters/ClusterNameParameter" - }, - { - "$ref": "#/parameters/ApiVersionParameter" - } - ], - "responses": { - "200": { - "description": "Event Hubs Cluster Namespace list returned successfully.", - "schema": { - "$ref": "#/definitions/EHNamespaceListResult" - } - }, - "default": { - "description": "Event Hubs Cluster error response describing why the namespaces in cluster get operation failed.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - } - } - }, - "x-ms-pageable": { - "nextLinkName": "nextLink" - } - } - }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/clusters/{clusterName}/quotaConfiguration/default": { "patch": { "tags": [ diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHNamespacesInClusterGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHNamespacesInClusterGet.json deleted file mode 100644 index ba7941a870f0..000000000000 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHNamespacesInClusterGet.json +++ /dev/null @@ -1,1363 +0,0 @@ -{ - "parameters": { - "clusterName": "testCluster", - "resourceGroupName": "myResourceGroup", - "api-version": "2018-01-01-preview", - "subscriptionId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4" - }, - "responses": { - "200": { - "body": { - "value": [ - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/sadfsadfsadf/providers/Microsoft.EventHub/namespaces/eh-ns1", - "name": "eh-ns1", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:eh-ns1", - "createdAt": "2016-08-23T04:15:35.263Z", - "updatedAt": "2017-02-03T20:13:04.007Z", - "serviceBusEndpoint": "https://eh-ns1.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 9 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/ehnamespace1", - "name": "ehnamespace1", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 20, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ehnamespace1", - "createdAt": "2016-08-05T16:56:48.657Z", - "updatedAt": "2017-05-03T23:49:12.69Z", - "serviceBusEndpoint": "https://ehnamespace1.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-08dc2b6d-82f6-43e8-bdcd-56bbb31a1a95", - "name": "NS-08dc2b6d-82f6-43e8-bdcd-56bbb31a1a95", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-08dc2b6d-82f6-43e8-bdcd-56bbb31a1a95", - "createdAt": "2016-09-16T01:10:00.96Z", - "updatedAt": "2017-02-11T11:15:32.313Z", - "serviceBusEndpoint": "https://NS-08dc2b6d-82f6-43e8-bdcd-56bbb31a1a95.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-027302b7-df82-43a1-abf7-b6a2e2429115", - "name": "NS-027302b7-df82-43a1-abf7-b6a2e2429115", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-027302b7-df82-43a1-abf7-b6a2e2429115", - "createdAt": "2016-08-05T04:13:34.727Z", - "updatedAt": "2017-02-11T10:35:30.053Z", - "serviceBusEndpoint": "https://NS-027302b7-df82-43a1-abf7-b6a2e2429115.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 7 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/abc-7-14", - "name": "abc-7-14", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 14, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:abc-7-14", - "createdAt": "2017-05-05T17:58:58.433Z", - "updatedAt": "2017-05-05T17:59:20Z", - "serviceBusEndpoint": "https://abc-7-14.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3054", - "name": "sdk-Namespace-3054", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3054", - "createdAt": "2017-05-24T18:43:53.58Z", - "updatedAt": "2017-05-24T18:44:16.657Z", - "serviceBusEndpoint": "https://sdk-Namespace-3054.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/namespace1asdfsa", - "name": "namespace1asdfsa", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:namespace1asdfsa", - "createdAt": "2016-09-12T18:23:15.833Z", - "updatedAt": "2017-02-04T01:58:49.523Z", - "serviceBusEndpoint": "https://namespace1asdfsa.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 3 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/hello1-3-8", - "name": "hello1-3-8", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 8, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:hello1-3-8", - "createdAt": "2017-05-05T19:23:18.96Z", - "updatedAt": "2017-05-05T19:23:42.497Z", - "serviceBusEndpoint": "https://hello1-3-8.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/SBPerplexed", - "name": "SBPerplexed", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sbperplexed", - "createdAt": "2016-10-10T19:18:57.773Z", - "updatedAt": "2017-02-03T23:46:15.22Z", - "serviceBusEndpoint": "https://SBPerplexed.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/ehnamespace123", - "name": "ehnamespace123", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ehnamespace123", - "createdAt": "2016-08-05T16:57:09Z", - "updatedAt": "2017-02-11T08:25:30.093Z", - "serviceBusEndpoint": "https://ehnamespace123.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/oaisdjfoiasdjfoiajsdfoijasd", - "name": "oaisdjfoiasdjfoiajsdfoijasd", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:oaisdjfoiasdjfoiajsdfoijasd", - "createdAt": "2017-05-03T22:05:29.61Z", - "updatedAt": "2017-05-03T22:05:51.593Z", - "serviceBusEndpoint": "https://oaisdjfoiasdjfoiajsdfoijasd.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-ns3", - "name": "rrama-ns3", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-ns3", - "createdAt": "2016-08-23T04:22:40.633Z", - "updatedAt": "2017-02-11T12:52:58.277Z", - "serviceBusEndpoint": "https://rrama-ns3.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/abc123", - "name": "abc123", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:abc123", - "createdAt": "2017-05-04T19:06:00.813Z", - "updatedAt": "2017-05-04T19:06:23.71Z", - "serviceBusEndpoint": "https://abc123.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/ehnamespace21", - "name": "ehnamespace21", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ehnamespace21", - "createdAt": "2016-08-05T16:57:00.377Z", - "updatedAt": "2017-02-11T09:50:32.86Z", - "serviceBusEndpoint": "https://ehnamespace21.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/SBFlerbederp", - "name": "SBFlerbederp", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sbflerbederp", - "createdAt": "2016-10-10T19:32:17.56Z", - "updatedAt": "2017-02-03T20:46:59.227Z", - "serviceBusEndpoint": "https://SBFlerbederp.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 9 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/aaa-001-9-11", - "name": "aaa-001-9-11", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 11, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:aaa-001-9-11", - "createdAt": "2017-05-05T17:32:22.37Z", - "updatedAt": "2017-05-05T17:32:44.76Z", - "serviceBusEndpoint": "https://aaa-001-9-11.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-47a32389-7331-47c8-9228-4c145b2650d7", - "name": "NS-47a32389-7331-47c8-9228-4c145b2650d7", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-47a32389-7331-47c8-9228-4c145b2650d7", - "createdAt": "2016-09-16T01:41:51.857Z", - "updatedAt": "2017-02-11T08:28:03.157Z", - "serviceBusEndpoint": "https://NS-47a32389-7331-47c8-9228-4c145b2650d7.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-54cbc924-fb3c-4b09-bd7a-4fe6d2b785a7", - "name": "NS-54cbc924-fb3c-4b09-bd7a-4fe6d2b785a7", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-54cbc924-fb3c-4b09-bd7a-4fe6d2b785a7", - "createdAt": "2016-08-05T03:39:52.323Z", - "updatedAt": "2017-02-11T04:40:32.24Z", - "serviceBusEndpoint": "https://NS-54cbc924-fb3c-4b09-bd7a-4fe6d2b785a7.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/SBFeasible", - "name": "SBFeasible", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sbfeasible", - "createdAt": "2016-10-10T19:05:24.76Z", - "updatedAt": "2017-02-03T19:51:55.893Z", - "serviceBusEndpoint": "https://SBFeasible.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-3b72258b-a8a1-4250-8952-e89a15af71fc", - "name": "NS-3b72258b-a8a1-4250-8952-e89a15af71fc", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-3b72258b-a8a1-4250-8952-e89a15af71fc", - "createdAt": "2016-09-16T17:59:27.227Z", - "updatedAt": "2017-02-27T19:34:26.633Z", - "serviceBusEndpoint": "https://NS-3b72258b-a8a1-4250-8952-e89a15af71fc.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5849", - "name": "sdk-Namespace-5849", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": { - "tag1": "value1", - "tag2": "value2" - }, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5849", - "createdAt": "2017-05-24T23:23:27.877Z", - "updatedAt": "2017-05-24T23:23:50.467Z", - "serviceBusEndpoint": "https://sdk-Namespace-5849.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/testDC/providers/Microsoft.EventHub/namespaces/TestNamespace1", - "name": "TestNamespace1", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 10, - "provisioningState": "Updating", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:testnamespace1", - "createdAt": "2017-04-25T00:28:00.243Z", - "updatedAt": "2017-04-26T20:54:41.18Z", - "serviceBusEndpoint": "https://TestNamespace1.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-ehns", - "name": "rrama-ehns", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-ehns", - "createdAt": "2016-08-23T04:22:49.74Z", - "updatedAt": "2017-02-11T07:03:51.793Z", - "serviceBusEndpoint": "https://rrama-ehns.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/testDC/providers/Microsoft.EventHub/namespaces/TestNamespace3", - "name": "TestNamespace3", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:testnamespace3", - "createdAt": "2017-05-03T22:33:17.84Z", - "updatedAt": "2017-05-03T22:33:40.087Z", - "serviceBusEndpoint": "https://TestNamespace3.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4984", - "name": "sdk-Namespace-4984", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-4984", - "createdAt": "2017-05-24T21:31:03.587Z", - "updatedAt": "2017-05-24T21:31:24.967Z", - "serviceBusEndpoint": "https://sdk-Namespace-4984.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-19df9616-54d6-47c9-8779-a4651835a95c", - "name": "NS-19df9616-54d6-47c9-8779-a4651835a95c", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-19df9616-54d6-47c9-8779-a4651835a95c", - "createdAt": "2016-08-23T02:38:33.8Z", - "updatedAt": "2017-02-11T04:28:01.093Z", - "serviceBusEndpoint": "https://NS-19df9616-54d6-47c9-8779-a4651835a95c.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-463af3de-8c87-4347-a614-a4c24f748109", - "name": "NS-463af3de-8c87-4347-a614-a4c24f748109", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-463af3de-8c87-4347-a614-a4c24f748109", - "createdAt": "2016-08-05T00:55:04.807Z", - "updatedAt": "2017-02-11T06:13:53.343Z", - "serviceBusEndpoint": "https://NS-463af3de-8c87-4347-a614-a4c24f748109.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-5606", - "name": "sdk-Namespace-5606", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-5606", - "createdAt": "2017-05-24T18:56:05.093Z", - "updatedAt": "2017-05-24T18:56:27.32Z", - "serviceBusEndpoint": "https://sdk-Namespace-5606.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-2d5d93d1-1d01-4141-9f4d-7d619b9c88c3", - "name": "NS-2d5d93d1-1d01-4141-9f4d-7d619b9c88c3", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-2d5d93d1-1d01-4141-9f4d-7d619b9c88c3", - "createdAt": "2016-08-05T04:18:53.27Z", - "updatedAt": "2017-02-11T06:49:39.877Z", - "serviceBusEndpoint": "https://NS-2d5d93d1-1d01-4141-9f4d-7d619b9c88c3.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-7703", - "name": "sdk-Namespace-7703", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-7703", - "createdAt": "2017-05-24T19:05:23.817Z", - "updatedAt": "2017-05-24T19:05:44.717Z", - "serviceBusEndpoint": "https://sdk-Namespace-7703.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 3 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/zzzzzzzzzzzzzzzzzzzzzz-00001", - "name": "zzzzzzzzzzzzzzzzzzzzzz-00001", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 11, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:zzzzzzzzzzzzzzzzzzzzzz-00001", - "createdAt": "2017-05-04T21:35:49.383Z", - "updatedAt": "2017-05-05T17:01:20.733Z", - "serviceBusEndpoint": "https://zzzzzzzzzzzzzzzzzzzzzz-00001.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/SBQuestionable", - "name": "SBQuestionable", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sbquestionable", - "createdAt": "2016-10-10T18:56:24.723Z", - "updatedAt": "2017-02-03T19:51:46.983Z", - "serviceBusEndpoint": "https://SBQuestionable.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/ehnamespace1234", - "name": "ehnamespace1234", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ehnamespace1234", - "createdAt": "2016-08-05T16:57:17.863Z", - "updatedAt": "2017-02-11T10:35:33.817Z", - "serviceBusEndpoint": "https://ehnamespace1234.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3919", - "name": "sdk-Namespace-3919", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3919", - "createdAt": "2017-05-24T02:08:20.15Z", - "updatedAt": "2017-05-24T02:08:41.313Z", - "serviceBusEndpoint": "https://sdk-Namespace-3919.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/arunarchivetest", - "name": "arunarchivetest", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:arunarchivetest", - "createdAt": "2017-03-08T19:25:49.897Z", - "updatedAt": "2017-03-08T19:26:17.49Z", - "serviceBusEndpoint": "https://arunarchivetest.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/aiosdjfaoidjasdoijasdfoijasdfofijsdf", - "name": "aiosdjfaoidjasdoijasdfoijasdfofijsdf", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:aiosdjfaoidjasdoijasdfoijasdfofijsdf", - "createdAt": "2017-05-04T21:23:23.9Z", - "updatedAt": "2017-05-04T21:23:46.78Z", - "serviceBusEndpoint": "https://aiosdjfaoidjasdoijasdfoijasdfofijsdf.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-3413", - "name": "sdk-Namespace-3413", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-3413", - "createdAt": "2017-05-24T19:02:15.45Z", - "updatedAt": "2017-05-24T19:02:38.047Z", - "serviceBusEndpoint": "https://sdk-Namespace-3413.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/SBConfuzzled", - "name": "SBConfuzzled", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sbconfuzzled", - "createdAt": "2016-10-10T19:30:45.71Z", - "updatedAt": "2017-02-03T22:49:17.82Z", - "serviceBusEndpoint": "https://SBConfuzzled.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-8695", - "name": "sdk-Namespace-8695", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-8695", - "createdAt": "2017-05-24T20:03:43.81Z", - "updatedAt": "2017-05-24T20:04:05.88Z", - "serviceBusEndpoint": "https://sdk-Namespace-8695.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 11 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/aaa-11-17", - "name": "aaa-11-17", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 17, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:aaa-11-17", - "createdAt": "2017-05-08T18:47:07.64Z", - "updatedAt": "2017-05-08T18:47:29.587Z", - "serviceBusEndpoint": "https://aaa-11-17.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 4 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/hello1-4-14", - "name": "hello1-4-14", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 14, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:hello1-4-14", - "createdAt": "2017-05-05T18:54:20.563Z", - "updatedAt": "2017-05-05T18:54:42.507Z", - "serviceBusEndpoint": "https://hello1-4-14.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-4801", - "name": "sdk-Namespace-4801", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-4801", - "createdAt": "2017-05-24T18:39:39.213Z", - "updatedAt": "2017-05-24T18:40:00.087Z", - "serviceBusEndpoint": "https://sdk-Namespace-4801.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 8 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/RichardsEventHub1", - "name": "RichardsEventHub1", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 15, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:richardseventhub1", - "createdAt": "2017-04-27T19:15:13.05Z", - "updatedAt": "2017-05-09T19:34:41.127Z", - "serviceBusEndpoint": "https://RichardsEventHub1.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 7 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-autoinflate-test", - "name": "rrama-autoinflate-test", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 10, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-autoinflate-test", - "createdAt": "2017-05-01T16:58:11.34Z", - "updatedAt": "2017-05-08T21:52:42.663Z", - "serviceBusEndpoint": "https://rrama-autoinflate-test.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/foofoofoofoof", - "name": "foofoofoofoof", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:foofoofoofoof", - "createdAt": "2017-04-29T02:47:53.523Z", - "updatedAt": "2017-04-29T02:48:17.95Z", - "serviceBusEndpoint": "https://foofoofoofoof.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/asdf1234asdf", - "name": "asdf1234asdf", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:asdf1234asdf", - "createdAt": "2016-09-13T01:45:40.58Z", - "updatedAt": "2017-02-11T06:54:38.623Z", - "serviceBusEndpoint": "https://asdf1234asdf.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/ArunMonocle/providers/Microsoft.EventHub/namespaces/sdk-Namespace-2812", - "name": "sdk-Namespace-2812", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:sdk-namespace-2812", - "createdAt": "2017-05-24T18:55:44.687Z", - "updatedAt": "2017-05-24T18:56:05.587Z", - "serviceBusEndpoint": "https://sdk-Namespace-2812.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-4aadc830-1029-49b8-8fbd-dd0130e7a84c", - "name": "NS-4aadc830-1029-49b8-8fbd-dd0130e7a84c", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-4aadc830-1029-49b8-8fbd-dd0130e7a84c", - "createdAt": "2016-08-05T04:02:53.43Z", - "updatedAt": "2017-02-11T05:13:02.697Z", - "serviceBusEndpoint": "https://NS-4aadc830-1029-49b8-8fbd-dd0130e7a84c.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-5e79a429-aa52-42b9-8120-2fe72fc00727", - "name": "NS-5e79a429-aa52-42b9-8120-2fe72fc00727", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-5e79a429-aa52-42b9-8120-2fe72fc00727", - "createdAt": "2016-08-05T01:13:41.527Z", - "updatedAt": "2017-02-11T04:24:44.797Z", - "serviceBusEndpoint": "https://NS-5e79a429-aa52-42b9-8120-2fe72fc00727.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-df-ns1", - "name": "rrama-df-ns1", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-df-ns1", - "createdAt": "2016-10-27T23:35:05.453Z", - "updatedAt": "2017-02-03T20:23:49.533Z", - "serviceBusEndpoint": "https://rrama-df-ns1.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 9 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RichardsResources/providers/Microsoft.EventHub/namespaces/bbbb-9-12", - "name": "bbbb-9-12", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 12, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:bbbb-9-12", - "createdAt": "2017-05-05T17:47:35.123Z", - "updatedAt": "2017-05-05T17:47:56.1Z", - "serviceBusEndpoint": "https://bbbb-9-12.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/eh-autoInflate/providers/Microsoft.EventHub/namespaces/rrama-autoinflate-template1", - "name": "rrama-autoinflate-template1", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 10, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-autoinflate-template1", - "createdAt": "2017-05-03T17:46:36.71Z", - "updatedAt": "2017-05-03T17:47:00.163Z", - "serviceBusEndpoint": "https://rrama-autoinflate-template1.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/RapscallionResources/providers/Microsoft.EventHub/namespaces/RandomPlotTwists", - "name": "RandomPlotTwists", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:randomplottwists", - "createdAt": "2017-05-18T00:37:26.13Z", - "updatedAt": "2017-05-18T00:37:49.533Z", - "serviceBusEndpoint": "https://RandomPlotTwists.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-1862d295-09cc-4e54-b23d-a2bc3bab2392", - "name": "NS-1862d295-09cc-4e54-b23d-a2bc3bab2392", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-1862d295-09cc-4e54-b23d-a2bc3bab2392", - "createdAt": "2016-08-05T04:08:14.253Z", - "updatedAt": "2017-02-11T04:33:53.34Z", - "serviceBusEndpoint": "https://NS-1862d295-09cc-4e54-b23d-a2bc3bab2392.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-MigrateThis", - "name": "NS-MigrateThis", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-migratethis", - "createdAt": "2016-08-06T00:23:12.3Z", - "updatedAt": "2017-02-04T00:25:08.043Z", - "serviceBusEndpoint": "https://NS-MigrateThis.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-5e01d977-125c-4fd2-8a78-cc50be544d1f", - "name": "NS-5e01d977-125c-4fd2-8a78-cc50be544d1f", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-5e01d977-125c-4fd2-8a78-cc50be544d1f", - "createdAt": "2016-08-05T04:34:33.617Z", - "updatedAt": "2017-02-11T05:54:42.25Z", - "serviceBusEndpoint": "https://NS-5e01d977-125c-4fd2-8a78-cc50be544d1f.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 10 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/NS-2b17fb74-2719-4c68-9ba3-13a018485b1f", - "name": "NS-2b17fb74-2719-4c68-9ba3-13a018485b1f", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 10, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:ns-2b17fb74-2719-4c68-9ba3-13a018485b1f", - "createdAt": "2016-08-05T04:29:17.147Z", - "updatedAt": "2017-05-02T19:52:53.243Z", - "serviceBusEndpoint": "https://NS-2b17fb74-2719-4c68-9ba3-13a018485b1f.servicebus.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-int7-ehns123", - "name": "rrama-int7-ehns123", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-int7-ehns123", - "createdAt": "2016-09-13T23:35:15.473Z", - "updatedAt": "2016-09-13T23:35:38.63Z", - "serviceBusEndpoint": "https://rrama-int7-ehns123.servicebus.int7.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-autoinflate-test", - "name": "rrama-autoinflate-test", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 10, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-autoinflate-test", - "createdAt": "2017-05-01T17:48:04.55Z", - "updatedAt": "2017-05-04T21:15:36.013Z", - "serviceBusEndpoint": "https://rrama-autoinflate-test.servicebus.int7.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-autoinflate2", - "name": "rrama-autoinflate2", - "type": "Microsoft.EventHub/Namespaces", - "location": "North Europe", - "tags": {}, - "properties": { - "isAutoInflateEnabled": true, - "maximumThroughputUnits": 10, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-autoinflate2", - "createdAt": "2017-05-01T20:50:00.22Z", - "updatedAt": "2017-05-01T20:50:24.687Z", - "serviceBusEndpoint": "https://rrama-autoinflate2.servicebus.int7.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 1 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-ServiceBus-SouthCentralUS/providers/Microsoft.EventHub/namespaces/db3-rrama-foo1", - "name": "db3-rrama-foo1", - "type": "Microsoft.EventHub/Namespaces", - "location": "North Europe", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:db3-rrama-foo1", - "createdAt": "2017-04-28T23:47:36.503Z", - "updatedAt": "2017-05-01T21:14:37.133Z", - "serviceBusEndpoint": "https://db3-rrama-foo1.servicebus.int7.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-int7-ehns1", - "name": "rrama-int7-ehns1", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-int7-ehns1", - "createdAt": "2016-09-13T23:20:44.853Z", - "updatedAt": "2016-09-13T23:20:47.35Z", - "serviceBusEndpoint": "https://rrama-int7-ehns1.servicebus.int7.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-int7-ns1", - "name": "rrama-int7-ns1", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-int7-ns1", - "createdAt": "2016-09-13T23:17:25.24Z", - "updatedAt": "2016-09-13T23:17:28.223Z", - "serviceBusEndpoint": "https://rrama-int7-ns1.servicebus.int7.windows-int.net:443/" - } - }, - { - "sku": { - "name": "Standard", - "tier": "Standard", - "capacity": 0 - }, - "id": "/subscriptions/5f750a97-50d9-4e36-8081-c9ee4c0210d4/resourceGroups/Default-EventHub-SouthCentralUS/providers/Microsoft.EventHub/namespaces/rrama-ehns2-int7", - "name": "rrama-ehns2-int7", - "type": "Microsoft.EventHub/Namespaces", - "location": "South Central US", - "tags": {}, - "properties": { - "isAutoInflateEnabled": false, - "maximumThroughputUnits": 0, - "provisioningState": "Succeeded", - "metricId": "5f750a97-50d9-4e36-8081-c9ee4c0210d4:rrama-ehns2-int7", - "createdAt": "2016-09-13T23:26:21.64Z", - "updatedAt": "2016-09-13T23:26:37.95Z", - "serviceBusEndpoint": "https://rrama-ehns2-int7.servicebus.int7.windows-int.net:443/" - } - } - ] - } - } - } -} \ No newline at end of file From 54258d520274f7bfa3de7b5afe96f5609f889191 Mon Sep 17 00:00:00 2001 From: Franco Bettati Date: Mon, 12 Mar 2018 19:18:58 -0700 Subject: [PATCH 5/9] Adding cluster sku property bag and moving capacity to sku. Also adding metricId property to the custom properties bag. --- .../2018-01-01-preview/EventHubCluster.json | 38 +++++++++++++++++-- .../examples/Clusters/EHClusterGet.json | 6 ++- .../examples/Clusters/EHClusterPatch.json | 14 +++++-- .../EHClustersListByResourceGroup.json | 6 ++- .../EHClustersListBySubscription.json | 6 ++- 5 files changed, 60 insertions(+), 10 deletions(-) diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json index 8efb07b69130..c5b2f7f9a612 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json @@ -284,6 +284,10 @@ "definitions": { "EHCluster": { "properties": { + "sku": { + "$ref": "#/definitions/ClusterSku", + "description": "Properties of the cluster SKU." + }, "properties": { "x-ms-client-flatten": true, "properties": { @@ -297,11 +301,10 @@ "type": "string", "description": "The UTC time when the Event Hubs Cluster was last updated." }, - "capacity": { + "metricId": { "readOnly": true, - "type": "integer", - "format": "int32", - "description": "The number of Capacity Units contained in this cluster." + "type": "string", + "description": "The metric ID of the cluster resource. Provided by the service and not modifiable by the user." } }, "description": "Event Hubs Cluster properties supplied in responses in List or Get operations." @@ -520,6 +523,33 @@ "name" ], "description": "SKU parameters supplied to the create namespace operation" + }, + "ClusterSku": { + "type": "object", + "properties": { + "name": { + "type": "string", + "description": "Name of this SKU.", + "enum": [ + "Dedicated" + ], + "x-ms-enum": { + "name": "SkuName", + "modelAsString": true + } + }, + "capacity": { + "format": "int32", + "maximum": 32, + "minimum": 1, + "type": "integer", + "description": "The quantity of Event Hubs Cluster Capacity Units contained in this cluster." + } + }, + "required": [ + "name" + ], + "description": "SKU parameters particular to a cluster instance." } }, "parameters": { diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json index 19acc1731066..2a257820d9cb 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json @@ -16,10 +16,14 @@ "tag1": "value1", "tag2": "value2" }, + "sku": { + "name": "Dedicated", + "capacity": 4 + }, "properties": { "created": "2017-05-24T23:23:27.877Z", "updated": "2017-05-24T23:23:27.877Z", - "capacity": 2 + "metricId": "SN6-008" } } } diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json index 5847f8b0b79b..4539946ee5aa 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json @@ -23,10 +23,14 @@ "tag3": "value3", "tag4": "value4" }, + "sku": { + "name": "Dedicated", + "capacity": 4 + }, "properties": { "created": "2017-06-01T21:37:04.46Z", "updated": "2017-06-01T21:37:53.413Z", - "capacity": 2 + "metricId": "SN6-008" } } }, @@ -39,11 +43,15 @@ "tags": { "tag3": "value3", "tag4": "value4" - }, + }, + "sku": { + "name": "Dedicated", + "capacity": 4 + }, "properties": { "created": "2017-06-01T21:37:04.46Z", "updated": "2017-06-01T21:37:53.413Z", - "capacity": 2 + "metricId": "SN6-008" } } }, diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json index 8ea6e7d3076d..c4a2b3c1c9a9 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json @@ -14,10 +14,14 @@ "type": "Microsoft.EventHub/Clusters", "location": "South Central US", "tags": {}, + "sku": { + "name": "Dedicated", + "capacity": 4 + }, "properties": { "created": "2016-09-13T23:17:25.24Z", "updated": "2016-09-13T23:17:28.223Z", - "capacity": 2 + "metricId": "SN6-008" } } ] diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json index 44646ee5115b..b88ab50c0324 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json @@ -13,10 +13,14 @@ "type": "Microsoft.EventHub/Clusters", "location": "South Central US", "tags": {}, + "sku": { + "name": "Dedicated", + "capacity": 4 + }, "properties": { "created": "2016-09-13T23:17:25.24Z", "updated": "2016-09-13T23:17:28.223Z", - "capacity": 2 + "metricId": "SN6-008" } } ] From ae60e2ff5008bc673894be95dcf3e586a01000df Mon Sep 17 00:00:00 2001 From: Franco Bettati Date: Wed, 14 Mar 2018 10:59:06 -0700 Subject: [PATCH 6/9] RP-Cluster: Modifiying EHCluster references to Cluster references. Adding changes to readme file as well. --- .../2018-01-01-preview/EventHubCluster.json | 38 +++++++++---------- .../{EHClusterGet.json => ClusterGet.json} | 0 ...{EHClusterPatch.json => ClusterPatch.json} | 0 ...json => ClusterQuotaConfigurationGet.json} | 0 ...on => ClusterQuotaConfigurationPatch.json} | 0 ....json => ClustersListByResourceGroup.json} | 0 ...n.json => ClustersListBySubscription.json} | 0 .../eventhub/resource-manager/readme.md | 9 +++++ 8 files changed, 28 insertions(+), 19 deletions(-) rename specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/{EHClusterGet.json => ClusterGet.json} (100%) rename specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/{EHClusterPatch.json => ClusterPatch.json} (100%) rename specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/{EHClusterQuotaConfigurationGet.json => ClusterQuotaConfigurationGet.json} (100%) rename specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/{EHClusterQuotaConfigurationPatch.json => ClusterQuotaConfigurationPatch.json} (100%) rename specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/{EHClustersListByResourceGroup.json => ClustersListByResourceGroup.json} (100%) rename specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/{EHClustersListBySubscription.json => ClustersListBySubscription.json} (100%) diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json index c5b2f7f9a612..aaa4afacdc77 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json @@ -39,10 +39,10 @@ "tags": [ "Event Hubs Clusters" ], - "operationId": "EHClusters_ListByResourceGroup", + "operationId": "Clusters_ListByResourceGroup", "x-ms-examples": { "ClustersListByResourceGroup": { - "$ref": "./examples/Clusters/EHClustersListByResourceGroup.json" + "$ref": "./examples/Clusters/ClustersListByResourceGroup.json" } }, "description": "Lists the available Event Hubs Clusters within an ARM resource group.", @@ -61,7 +61,7 @@ "200": { "description": "Clusters returned successfully.", "schema": { - "$ref": "#/definitions/EHClusterListResult" + "$ref": "#/definitions/ClusterListResult" } }, "default": { @@ -84,7 +84,7 @@ "operationId": "Clusters_Get", "x-ms-examples": { "ClusterGet": { - "$ref": "./examples/Clusters/EHClusterGet.json" + "$ref": "./examples/Clusters/ClusterGet.json" } }, "description": "Gets the resource description of the specified Event Hubs Cluster.", @@ -106,7 +106,7 @@ "200": { "description": "Event Hubs Cluster resource description returned successfully.", "schema": { - "$ref": "#/definitions/EHCluster" + "$ref": "#/definitions/Cluster" } }, "default": { @@ -124,7 +124,7 @@ "operationId": "Clusters_Patch", "x-ms-examples": { "ClusterPatch": { - "$ref": "./examples/Clusters/EHClusterPatch.json" + "$ref": "./examples/Clusters/ClusterPatch.json" } }, "description": "Modifies mutable properties on the Event Hubs Cluster. This operation is idempotent.", @@ -146,7 +146,7 @@ "in": "body", "required": true, "schema": { - "$ref": "#/definitions/EHCluster" + "$ref": "#/definitions/Cluster" }, "description": "The properties of the Event Hubs Cluster which should be updated." } @@ -155,13 +155,13 @@ "200": { "description": "Event Hubs Cluster successfully created.", "schema": { - "$ref": "#/definitions/EHCluster" + "$ref": "#/definitions/Cluster" } }, "201": { "description": "Event Hubs Cluster update request accepted.", "schema": { - "$ref": "#/definitions/EHCluster" + "$ref": "#/definitions/Cluster" } }, "202": { @@ -201,7 +201,7 @@ "in": "body", "required": true, "schema": { - "$ref": "#/definitions/EHClusterQuotaConfigurationProperties", + "$ref": "#/definitions/ClusterQuotaConfigurationProperties", "required": [ "settings" ] @@ -211,7 +211,7 @@ ], "x-ms-examples": { "ClustersQuotasConfigurationPatch": { - "$ref": "./examples/Clusters/EHClusterQuotaConfigurationPatch.json" + "$ref": "./examples/Clusters/ClusterQuotaConfigurationPatch.json" } }, "description": "Replace all specified Event Hubs Cluster settings with those contained in the request body. Leaves the settings not specified in the request body unmodified.", @@ -219,13 +219,13 @@ "200": { "description": "Event Hubs Cluster settings configuration returned.", "schema": { - "$ref": "#/definitions/EHClusterQuotaConfigurationProperties" + "$ref": "#/definitions/ClusterQuotaConfigurationProperties" } }, "201": { "description": "Event Hubs Cluster setting configuration request successfully accepted.", "schema": { - "$ref": "#/definitions/EHClusterQuotaConfigurationProperties" + "$ref": "#/definitions/ClusterQuotaConfigurationProperties" } }, "202": { @@ -260,7 +260,7 @@ ], "x-ms-examples": { "ClustersQuotasConfigurationGet": { - "$ref": "./examples/Clusters/EHClusterQuotaConfigurationGet.json" + "$ref": "./examples/Clusters/ClusterQuotaConfigurationGet.json" } }, "description": "Get all Event Hubs Cluster settings - a collection of key/value pairs which represent the quotas and settings imposed on the cluster.", @@ -268,7 +268,7 @@ "200": { "description": "Event Hubs Cluster settings configuration returned.", "schema": { - "$ref": "#/definitions/EHClusterQuotaConfigurationProperties" + "$ref": "#/definitions/ClusterQuotaConfigurationProperties" } }, "default": { @@ -282,7 +282,7 @@ } }, "definitions": { - "EHCluster": { + "Cluster": { "properties": { "sku": { "$ref": "#/definitions/ClusterSku", @@ -317,12 +317,12 @@ ], "description": "Single Event Hubs Cluster resource in List or Get operations." }, - "EHClusterListResult": { + "ClusterListResult": { "properties": { "value": { "type": "array", "items": { - "$ref": "#/definitions/EHCluster" + "$ref": "#/definitions/Cluster" }, "description": "The Event Hubs Clusters present in the List Event Hubs operation results." }, @@ -333,7 +333,7 @@ }, "description": "The response of the List Event Hubs Clusters operation." }, - "EHClusterQuotaConfigurationProperties": { + "ClusterQuotaConfigurationProperties": { "properties": { "settings": { "type": "object", diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterGet.json similarity index 100% rename from specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterGet.json rename to specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterGet.json diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterPatch.json similarity index 100% rename from specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterPatch.json rename to specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterPatch.json diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationGet.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationGet.json similarity index 100% rename from specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationGet.json rename to specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationGet.json diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationPatch.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationPatch.json similarity index 100% rename from specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClusterQuotaConfigurationPatch.json rename to specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClusterQuotaConfigurationPatch.json diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListByResourceGroup.json similarity index 100% rename from specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListByResourceGroup.json rename to specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListByResourceGroup.json diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListBySubscription.json similarity index 100% rename from specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/EHClustersListBySubscription.json rename to specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Clusters/ClustersListBySubscription.json diff --git a/specification/eventhub/resource-manager/readme.md b/specification/eventhub/resource-manager/readme.md index a29f8a23ffa5..53ab7a722efa 100644 --- a/specification/eventhub/resource-manager/readme.md +++ b/specification/eventhub/resource-manager/readme.md @@ -50,6 +50,15 @@ input-file: ``` +### Tag: package-2018-01-preview + +These settings apply only when `--tag=package-2018-01-preview` is specified on the command line. + +``` yaml $(tag) == 'package-2018-01-preview' +input-file: +- Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json +``` + --- # Code Generation From bcd1f9aec977772496aea1b78436da99270a32eb Mon Sep 17 00:00:00 2001 From: Franco Bettati Date: Wed, 14 Mar 2018 11:59:42 -0700 Subject: [PATCH 7/9] RP-Cluster: Adding Event Hubs operations API to Cluster swagger. --- .../2018-01-01-preview/EventHubCluster.json | 83 ++++++ .../examples/Operations_List.json | 256 ++++++++++++++++++ 2 files changed, 339 insertions(+) create mode 100644 specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Operations_List.json diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json index aaa4afacdc77..e4a586c87606 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json @@ -34,6 +34,40 @@ } }, "paths": { + "/providers/Microsoft.EventHub/operations": { + "get": { + "tags": [ + "Operations" + ], + "operationId": "Operations_List", + "x-ms-examples": { + "EHOperations_List": { "$ref": "./examples/Operations_List.json" } + }, + "description": "Lists all of the available Event Hub REST API operations.", + "parameters": [ + { + "$ref": "#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK. The request has succeeded.", + "schema": { + "$ref": "#/definitions/OperationListResult" + } + }, + "default": { + "description": "Eventhub error response describing why the operation failed.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + } + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + } + } + }, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventHub/clusters": { "get": { "tags": [ @@ -359,6 +393,55 @@ } } }, + "OperationListResult": { + "description": "Result of the request to list Event Hub operations. It contains a list of operations and a URL link to get the next set of results.", + "properties": { + "value": { + "description": "List of Event Hub operations supported by the Microsoft.EventHub resource provider.", + "type": "array", + "readOnly": true, + "items": { + "$ref": "#/definitions/Operation" + } + }, + "nextLink": { + "readOnly": true, + "type": "string", + "description": "URL to get the next set of operation list results if there are any." + } + } + }, + "Operation": { + "description": "A Event Hub REST API operation", + "type": "object", + "properties": { + "name": { + "readOnly": true, + "type": "string", + "description": "Operation name: {provider}/{resource}/{operation}" + }, + "display": { + "description": "The object that represents the operation.", + "properties": { + "provider": { + "readOnly": true, + "type": "string", + "description": "Service provider: Microsoft.EventHub" + }, + "resource": { + "readOnly": true, + "type": "string", + "description": "Resource on which the operation is performed: Invoice, etc." + }, + "operation": { + "readOnly": true, + "type": "string", + "description": "Operation type: Read, write, delete, etc." + } + } + } + } + }, "TrackedResource": { "properties": { "location": { diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Operations_List.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Operations_List.json new file mode 100644 index 000000000000..e7d456476fb0 --- /dev/null +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/examples/Operations_List.json @@ -0,0 +1,256 @@ +{ + "parameters": { + "api-version": "2018-01-01-preview" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "name": "Microsoft.EventHub/checkNameAvailability/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Non Resource Operation", + "operation": "Get namespace availability.", + "description": "Checks availability of namespace under given subscription." + } + }, + { + "name": "Microsoft.EventHub/register/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub Resource Provider", + "operation": "Registers the EventHub Resource Provider", + "description": "Registers the subscription for the EventHub resource provider and enables the creation of EventHub resources" + } + }, + { + "name": "Microsoft.EventHub/namespaces/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace", + "operation": "Create Or Update Namespace ", + "description": "Create a Namespace Resource and Update its properties. Tags and status of the Namespace are the properties which can be updated." + } + }, + { + "name": "Microsoft.EventHub/namespaces/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace", + "operation": "Get Namespace Resource", + "description": "Get the list of Namespace Resource Description" + } + }, + { + "name": "Microsoft.EventHub/namespaces/Delete", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace", + "operation": "Delete Namespace", + "description": "Delete Namespace Resource" + } + }, + { + "name": "Microsoft.EventHub/namespaces/authorizationRules/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "AuthorizationRules", + "operation": "Get Namespace Authorization Rules", + "description": "Get the list of Namespaces Authorization Rules description." + } + }, + { + "name": "Microsoft.EventHub/namespaces/authorizationRules/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "AuthorizationRules", + "operation": "Create or Update Namespace Authorization Rules", + "description": "Create a Namespace level Authorization Rules and update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated." + } + }, + { + "name": "Microsoft.EventHub/namespaces/authorizationRules/delete", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "AuthorizationRules", + "operation": "Delete Namespace Authorization Rule", + "description": "Delete Namespace Authorization Rule. The Default Namespace Authorization Rule cannot be deleted. " + } + }, + { + "name": "Microsoft.EventHub/namespaces/authorizationRules/listkeys/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "AuthorizationRules", + "operation": "Get Namespace Listkeys", + "description": "Get the Connection String to the Namespace" + } + }, + { + "name": "Microsoft.EventHub/namespaces/authorizationRules/regenerateKeys/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "AuthorizationRules", + "operation": "Resource Regeneratekeys", + "description": "Regenerate the Primary or Secondary key to the Resource" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub", + "operation": "Create or Update EventHub", + "description": "Create or Update EventHub properties." + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub", + "operation": "Get EventHub", + "description": "Get list of EventHub Resource Descriptions" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/Delete", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub", + "operation": "Delete EventHub", + "description": "Operation to delete EventHub Resource" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub AuthorizationRules", + "operation": " Get EventHub Authorization Rules", + "description": " Get the list of EventHub Authorization Rules" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub AuthorizationRules", + "operation": "Create or Update EventHub Authorization Rule", + "description": "Create EventHub Authorization Rules and Update its properties. The Authorization Rules Access Rights, the Primary and Secondary Keys can be updated." + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/delete", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub AuthorizationRules", + "operation": "Delete EventHub Authorization Rules", + "description": "Operation to delete EventHub Authorization Rules" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/listkeys/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub AuthorizationRules", + "operation": "List EventHub keys", + "description": "Get the Connection String to EventHub" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventhubs/authorizationRules/regenerateKeys/action", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "EventHub AuthorizationRules", + "operation": "Resource Regeneratekeys", + "description": "Regenerate the Primary or Secondary key to the Resource" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventHubs/consumergroups/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "ConsumerGroup", + "operation": "Create or Update ConsumerGroup", + "description": "Create or Update ConsumerGroup properties." + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventHubs/consumergroups/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "ConsumerGroup", + "operation": "Get ConsumerGroup", + "description": "Get list of ConsumerGroup Resource Descriptions" + } + }, + { + "name": "Microsoft.EventHub/namespaces/eventHubs/consumergroups/Delete", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "ConsumerGroup", + "operation": "Delete ConsumerGroup", + "description": "Operation to delete ConsumerGroup Resource" + } + }, + { + "name": "Microsoft.EventHub/namespaces/metricDefinitions/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace metrics", + "operation": "Get Namespace metrics", + "description": "Get list of Namespace metrics Resource Descriptions" + } + }, + { + "name": "Microsoft.EventHub/namespaces/diagnosticSettings/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace diagnostic settings", + "operation": "Get Namespace diagnostic settings", + "description": "Get list of Namespace diagnostic settings Resource Descriptions" + } + }, + { + "name": "Microsoft.EventHub/namespaces/diagnosticSettings/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace diagnostic settings", + "operation": "Create or Update Namespace diagnostic settings", + "description": "Get list of Namespace diagnostic settings Resource Descriptions" + } + }, + { + "name": "Microsoft.EventHub/namespaces/logDefinitions/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Namespace logs", + "operation": "Get Namespace logs", + "description": "Get list of Namespace logs Resource Descriptions" + } + }, + { + "name": "Microsoft.EventHub/clusters/read", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Cluster", + "operation": "Get Event Hubs Clusters", + "description": "Get list of Event Hubs cluster resources." + } + }, + { + "name": "Microsoft.EventHub/clusters/write", + "display": { + "provider": "Microsoft Azure EventHub", + "resource": "Cluster", + "operation": "Update Cluster", + "description": "Update the properties of a cluster resource. Tags of the cluster are the properties which can be updated." + } + } + ] + } + } + } +} \ No newline at end of file From b4b3f63fdaebb219a8650aeba1646509ddd4f19e Mon Sep 17 00:00:00 2001 From: Franco Bettati Date: Wed, 14 Mar 2018 16:50:09 -0700 Subject: [PATCH 8/9] RP-Cluster: Removing leftover EHNamespaces definitions. --- .../2018-01-01-preview/EventHubCluster.json | 114 ------------------ 1 file changed, 114 deletions(-) diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json index e4a586c87606..a4278ab7a64c 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json @@ -493,120 +493,6 @@ "description": "The Resource definition", "x-ms-azure-resource": true }, - "EHNamespaceListResult": { - "properties": { - "value": { - "type": "array", - "items": { - "$ref": "#/definitions/EHNamespace" - }, - "description": "Result of the List Namespace operation" - }, - "nextLink": { - "type": "string", - "description": "Link to the next set of results. Not empty if Value contains incomplete list of namespaces." - } - }, - "description": "The response of the List Namespace operation" - }, - "EHNamespace": { - "properties": { - "sku": { - "$ref": "#/definitions/Sku", - "description": "Properties of sku resource" - }, - "properties": { - "x-ms-client-flatten": true, - "properties": { - "provisioningState": { - "readOnly": true, - "type": "string", - "description": "Provisioning state of the Namespace." - }, - "createdAt": { - "readOnly": true, - "format": "date-time", - "type": "string", - "description": "The time the Namespace was created." - }, - "updatedAt": { - "readOnly": true, - "format": "date-time", - "type": "string", - "description": "The time the Namespace was updated." - }, - "serviceBusEndpoint": { - "readOnly": true, - "type": "string", - "description": "Endpoint you can use to perform Service Bus operations." - }, - "metricId": { - "readOnly": true, - "type": "string", - "description": "Identifier for Azure Insights metrics." - }, - "isAutoInflateEnabled": { - "type": "boolean", - "description": "Value that indicates whether AutoInflate is enabled for eventhub namespace." - }, - "maximumThroughputUnits": { - "format": "int32", - "type": "integer", - "maximum": 20, - "minimum": 0, - "description": "Upper limit of throughput units when AutoInflate is enabled, vaule should be within 0 to 20 throughput units. ( '0' if AutoInflateEnabled = true)" - } - }, - "description": "Namespace properties supplied for create namespace operation." - } - }, - "allOf": [ - { - "$ref": "#/definitions/TrackedResource" - } - ], - "description": "Single Namespace item in List or Get Operation" - }, - "Sku": { - "type": "object", - "properties": { - "name": { - "type": "string", - "description": "Name of this SKU.", - "enum": [ - "Basic", - "Standard" - ], - "x-ms-enum": { - "name": "SkuName", - "modelAsString": true - } - }, - "tier": { - "type": "string", - "description": "The billing tier of this particular SKU.", - "enum": [ - "Basic", - "Standard" - ], - "x-ms-enum": { - "name": "SkuTier", - "modelAsString": true - } - }, - "capacity": { - "format": "int32", - "maximum": 20, - "minimum": 0, - "type": "integer", - "description": "The Event Hubs throughput units, vaule should be 0 to 20 throughput units." - } - }, - "required": [ - "name" - ], - "description": "SKU parameters supplied to the create namespace operation" - }, "ClusterSku": { "type": "object", "properties": { From 7df85a56272372d7e786bbf16e2115141464dd21 Mon Sep 17 00:00:00 2001 From: Franco Bettati Date: Thu, 15 Mar 2018 09:58:03 -0700 Subject: [PATCH 9/9] Cluster: Distinguishing between Cluster and Configuration clients in operation ids. --- .../preview/2018-01-01-preview/EventHubCluster.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json index a4278ab7a64c..afc018b1935f 100644 --- a/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json +++ b/specification/eventhub/resource-manager/Microsoft.EventHub/preview/2018-01-01-preview/EventHubCluster.json @@ -216,7 +216,7 @@ "tags": [ "Event Hubs Cluster Configuration" ], - "operationId": "Clusters_ConfigurationPatch", + "operationId": "Configuration_Patch", "parameters": [ { "$ref": "#/parameters/SubscriptionIdParameter" @@ -277,7 +277,7 @@ "tags": [ "Event Hubs Cluster Configuration" ], - "operationId": "Clusters_ConfigurationGet", + "operationId": "Configuration_Get", "parameters": [ { "$ref": "#/parameters/SubscriptionIdParameter"