diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/ApplicationOperationResults.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/ApplicationOperationResults.json new file mode 100644 index 000000000000..94d45a275533 --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/ApplicationOperationResults.json @@ -0,0 +1,188 @@ +{ + "swagger": "2.0", + "info": { + "description": "Application operation results.", + "title": "FabricAdminClient", + "version": "2016-05-01" + }, + "host": "adminmanagement.local.azurestack.external", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/applicationOperationResults/{operation}": { + "get": { + "x-ms-examples": { + "Returns the status of the operation.": { + "$ref": "./examples/ApplicationOperationResult/Get.json" + } + }, + "tags": [ + "ApplicationOperationResults" + ], + "description": "Returns the status of an application operation.", + "operationId": "ApplicationOperationResults_Get", + "parameters": [ + { + "$ref": "Fabric.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "Fabric.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "Fabric.json#/parameters/LocationParameter" + }, + { + "$ref": "#/parameters/OperationParameter" + }, + { + "$ref": "Fabric.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ApplicationOperationResult" + } + }, + "404": { + "description": "NOT FOUND" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/applicationOperationResults": { + "get": { + "x-ms-examples": { + "Returns a list of all application operation results at a location.": { + "$ref": "./examples/ApplicationOperationResult/List.json" + } + }, + "tags": [ + "ApplicationOperationResults" + ], + "description": "Returns a list of all application operation results at a location.", + "operationId": "ApplicationOperationResults_List", + "parameters": [ + { + "$ref": "Fabric.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "Fabric.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "Fabric.json#/parameters/LocationParameter" + }, + { + "$ref": "Fabric.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "Fabric.json#/parameters/FilterParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ApplicationOperationResultList" + } + }, + "404": { + "description": "NOT FOUND" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/ApplicationOperationResult" + } + } + }, + "definitions": { + "ApplicationOperationResult": { + "description": "Application operation result description.", + "type": "object", + "properties": { + "properties": { + "description": "Application operation result properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/ApplicationOperationResultModel" + } + }, + "allOf": [ + { + "$ref": "Fabric.json#/definitions/Resource" + } + ] + }, + "ApplicationOperationResultModel": { + "description": "Application operation result properties.", + "type": "object", + "properties": { + "instances": { + "description": "List of operation result instances.", + "type": "array", + "items": { + "type": "string" + } + }, + "provisioningState": { + "description": "Success or failure of operation.", + "type": "string" + } + } + }, + "ApplicationOperationResultList": { + "description": "Pageable list of application operation results.", + "type": "object", + "properties": { + "value": { + "description": "List of application operation results.", + "type": "array", + "items": { + "$ref": "#/definitions/ApplicationOperationResult" + } + }, + "nextLink": { + "description": "URI to the next page.", + "type": "string" + } + } + } + }, + "parameters": { + "OperationParameter": { + "name": "operation", + "description": "Operation identifier.", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + } + }, + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "flow": "implicit", + "description": "Authorization uses an Azure Active Directory OAuth2 flow.", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/ComputeOperationResults.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/ComputeOperationResults.json new file mode 100644 index 000000000000..d904096b7da6 --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/ComputeOperationResults.json @@ -0,0 +1,188 @@ +{ + "swagger": "2.0", + "info": { + "description": "Compute operation results.", + "title": "FabricAdminClient", + "version": "2016-05-01" + }, + "host": "adminmanagement.local.azurestack.external", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/computeOperationResults/{operation}": { + "get": { + "x-ms-examples": { + "Returns the status of the operation.": { + "$ref": "./examples/ComputeOperationResult/Get.json" + } + }, + "tags": [ + "ComputeOperationResults" + ], + "description": "Returns the status of a compute operation.", + "operationId": "ComputeOperationResults_Get", + "parameters": [ + { + "$ref": "Fabric.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "Fabric.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "Fabric.json#/parameters/LocationParameter" + }, + { + "$ref": "#/parameters/OperationParameter" + }, + { + "$ref": "Fabric.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ComputeOperationResult" + } + }, + "404": { + "description": "NOT FOUND" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/computeOperationResults": { + "get": { + "x-ms-examples": { + "Returns a list of all compute operation results at a location.": { + "$ref": "./examples/ComputeOperationResult/List.json" + } + }, + "tags": [ + "ComputeOperationResults" + ], + "description": "Returns a list of all compute operation results at a location.", + "operationId": "ComputeOperationResults_List", + "parameters": [ + { + "$ref": "Fabric.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "Fabric.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "Fabric.json#/parameters/LocationParameter" + }, + { + "$ref": "Fabric.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "Fabric.json#/parameters/FilterParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/ComputeOperationResultList" + } + }, + "404": { + "description": "NOT FOUND" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/ComputeOperationResult" + } + } + }, + "definitions": { + "ComputeOperationResult": { + "description": "Compute operation result description.", + "type": "object", + "properties": { + "properties": { + "description": "Compute operation result properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/ComputeOperationResultModel" + } + }, + "allOf": [ + { + "$ref": "Fabric.json#/definitions/Resource" + } + ] + }, + "ComputeOperationResultModel": { + "description": "Compute operation result properties.", + "type": "object", + "properties": { + "instances": { + "description": "List of operation result instances.", + "type": "array", + "items": { + "type": "string" + } + }, + "provisioningState": { + "description": "Success or failure of operation.", + "type": "string" + } + } + }, + "ComputeOperationResultList": { + "description": "Pageable list of compute operation results.", + "type": "object", + "properties": { + "value": { + "description": "List of compute operation results.", + "type": "array", + "items": { + "$ref": "#/definitions/ComputeOperationResult" + } + }, + "nextLink": { + "description": "URI to the next page.", + "type": "string" + } + } + } + }, + "parameters": { + "OperationParameter": { + "name": "operation", + "description": "Operation identifier.", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + } + }, + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "flow": "implicit", + "description": "Authorization uses an Azure Active Directory OAuth2 flow.", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/NetworkOperationResults.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/NetworkOperationResults.json new file mode 100644 index 000000000000..0ae07c037c04 --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/NetworkOperationResults.json @@ -0,0 +1,188 @@ +{ + "swagger": "2.0", + "info": { + "description": "Network operation results.", + "title": "FabricAdminClient", + "version": "2016-05-01" + }, + "host": "adminmanagement.local.azurestack.external", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/networkOperationResults/{operation}": { + "get": { + "x-ms-examples": { + "Returns the status of the operation.": { + "$ref": "./examples/NetworkOperationResult/Get.json" + } + }, + "tags": [ + "NetworkOperationResults" + ], + "description": "Returns the status of a network operation.", + "operationId": "NetworkOperationResults_Get", + "parameters": [ + { + "$ref": "Fabric.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "Fabric.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "Fabric.json#/parameters/LocationParameter" + }, + { + "$ref": "#/parameters/OperationParameter" + }, + { + "$ref": "Fabric.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/NetworkOperationResult" + } + }, + "404": { + "description": "NOT FOUND" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/networkOperationResults": { + "get": { + "x-ms-examples": { + "Returns a list of all network operation results at a location.": { + "$ref": "./examples/NetworkOperationResult/List.json" + } + }, + "tags": [ + "NetworkOperationResults" + ], + "description": "Returns a list of all network operation results at a location.", + "operationId": "NetworkOperationResults_List", + "parameters": [ + { + "$ref": "Fabric.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "Fabric.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "Fabric.json#/parameters/LocationParameter" + }, + { + "$ref": "Fabric.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "Fabric.json#/parameters/FilterParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/NetworkOperationResultList" + } + }, + "404": { + "description": "NOT FOUND" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/NetworkOperationResult" + } + } + }, + "definitions": { + "NetworkOperationResult": { + "description": "Network operation result description.", + "type": "object", + "properties": { + "properties": { + "description": "Network operation result properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/NetworkOperationResultModel" + } + }, + "allOf": [ + { + "$ref": "Fabric.json#/definitions/Resource" + } + ] + }, + "NetworkOperationResultModel": { + "description": "Network operation result properties.", + "type": "object", + "properties": { + "instances": { + "description": "List of operation result instances.", + "type": "array", + "items": { + "type": "string" + } + }, + "provisioningState": { + "description": "Success or failure of operation.", + "type": "string" + } + } + }, + "NetworkOperationResultList": { + "description": "Pageable list of network operation results.", + "type": "object", + "properties": { + "value": { + "description": "List of network operation results.", + "type": "array", + "items": { + "$ref": "#/definitions/NetworkOperationResult" + } + }, + "nextLink": { + "description": "URI to the next page.", + "type": "string" + } + } + } + }, + "parameters": { + "OperationParameter": { + "name": "operation", + "description": "Operation identifier.", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + } + }, + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "flow": "implicit", + "description": "Authorization uses an Azure Active Directory OAuth2 flow.", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/StorageOperationResults.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/StorageOperationResults.json new file mode 100644 index 000000000000..ac40f061d4dd --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/StorageOperationResults.json @@ -0,0 +1,188 @@ +{ + "swagger": "2.0", + "info": { + "description": "Storage operation results.", + "title": "FabricAdminClient", + "version": "2016-05-01" + }, + "host": "adminmanagement.local.azurestack.external", + "schemes": [ + "https" + ], + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": { + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/storageOperationResults/{operation}": { + "get": { + "x-ms-examples": { + "Returns the status of the operation.": { + "$ref": "./examples/StorageOperationResult/Get.json" + } + }, + "tags": [ + "StorageOperationResults" + ], + "description": "Returns the status of a storage operation.", + "operationId": "StorageOperationResults_Get", + "parameters": [ + { + "$ref": "Fabric.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "Fabric.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "Fabric.json#/parameters/LocationParameter" + }, + { + "$ref": "#/parameters/OperationParameter" + }, + { + "$ref": "Fabric.json#/parameters/ApiVersionParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/StorageOperationResult" + } + }, + "404": { + "description": "NOT FOUND" + } + } + } + }, + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Fabric.Admin/fabricLocations/{location}/storageOperationResults": { + "get": { + "x-ms-examples": { + "Returns a list of all storage operation results at a location.": { + "$ref": "./examples/StorageOperationResult/List.json" + } + }, + "tags": [ + "StorageOperationResults" + ], + "description": "Returns a list of all storage operation results at a location.", + "operationId": "StorageOperationResults_List", + "parameters": [ + { + "$ref": "Fabric.json#/parameters/SubscriptionIdParameter" + }, + { + "$ref": "Fabric.json#/parameters/ResourceGroupParameter" + }, + { + "$ref": "Fabric.json#/parameters/LocationParameter" + }, + { + "$ref": "Fabric.json#/parameters/ApiVersionParameter" + }, + { + "$ref": "Fabric.json#/parameters/FilterParameter" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/StorageOperationResultList" + } + }, + "404": { + "description": "NOT FOUND" + } + }, + "x-ms-pageable": { + "nextLinkName": "nextLink" + }, + "x-ms-odata": "#/definitions/StorageOperationResult" + } + } + }, + "definitions": { + "StorageOperationResult": { + "description": "Storage operation result description.", + "type": "object", + "properties": { + "properties": { + "description": "Storage operation result properties.", + "x-ms-client-flatten": true, + "$ref": "#/definitions/StorageOperationResultModel" + } + }, + "allOf": [ + { + "$ref": "Fabric.json#/definitions/Resource" + } + ] + }, + "StorageOperationResultModel": { + "description": "Storage operation result properties.", + "type": "object", + "properties": { + "instances": { + "description": "List of operation result instances.", + "type": "array", + "items": { + "type": "string" + } + }, + "provisioningState": { + "description": "Success or failure of operation.", + "type": "string" + } + } + }, + "StorageOperationResultList": { + "description": "Pageable list of storage operation results.", + "type": "object", + "properties": { + "value": { + "description": "List of storage operation results.", + "type": "array", + "items": { + "$ref": "#/definitions/StorageOperationResult" + } + }, + "nextLink": { + "description": "URI to the next page.", + "type": "string" + } + } + } + }, + "parameters": { + "OperationParameter": { + "name": "operation", + "description": "Operation identifier.", + "in": "path", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + } + }, + "securityDefinitions": { + "azure_auth": { + "type": "oauth2", + "authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize", + "flow": "implicit", + "description": "Authorization uses an Azure Active Directory OAuth2 flow.", + "scopes": { + "user_impersonation": "impersonate your user account" + } + } + }, + "security": [ + { + "azure_auth": [ + "user_impersonation" + ] + } + ] +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ApplicationOperationResult/Get.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ApplicationOperationResult/Get.json new file mode 100644 index 000000000000..2fa7c89cd3f2 --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ApplicationOperationResult/Get.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "api-version": "2016-05-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName" : "System.local", + "location": "local", + "operation": "7129ebd4-efb5-4faf-89a5-9b9071811610" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + } + } + }, + "404": {} + } +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ApplicationOperationResult/List.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ApplicationOperationResult/List.json new file mode 100644 index 000000000000..255fe329dfa9 --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ApplicationOperationResult/List.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2016-05-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "System.local", + "location": "local" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "properties": { + "provisioningState": "Failed" + }, + "error":{ + "code":"OperationBlockedDueToUpdateInProgress", + "message":"The operation cannot be performed at the present time, because there is an Azure Stack update in progress. Wait until the Azure Stack update is complete and then try your operation again." + } + + } + ] + } + }, + "404": {} + } +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ComputeOperationResult/Get.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ComputeOperationResult/Get.json new file mode 100644 index 000000000000..2fa7c89cd3f2 --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ComputeOperationResult/Get.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "api-version": "2016-05-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName" : "System.local", + "location": "local", + "operation": "7129ebd4-efb5-4faf-89a5-9b9071811610" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + } + } + }, + "404": {} + } +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ComputeOperationResult/List.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ComputeOperationResult/List.json new file mode 100644 index 000000000000..255fe329dfa9 --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/ComputeOperationResult/List.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2016-05-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "System.local", + "location": "local" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "properties": { + "provisioningState": "Failed" + }, + "error":{ + "code":"OperationBlockedDueToUpdateInProgress", + "message":"The operation cannot be performed at the present time, because there is an Azure Stack update in progress. Wait until the Azure Stack update is complete and then try your operation again." + } + + } + ] + } + }, + "404": {} + } +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/NetworkOperationResult/Get.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/NetworkOperationResult/Get.json new file mode 100644 index 000000000000..2fa7c89cd3f2 --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/NetworkOperationResult/Get.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "api-version": "2016-05-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName" : "System.local", + "location": "local", + "operation": "7129ebd4-efb5-4faf-89a5-9b9071811610" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + } + } + }, + "404": {} + } +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/NetworkOperationResult/List.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/NetworkOperationResult/List.json new file mode 100644 index 000000000000..255fe329dfa9 --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/NetworkOperationResult/List.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2016-05-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "System.local", + "location": "local" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "properties": { + "provisioningState": "Failed" + }, + "error":{ + "code":"OperationBlockedDueToUpdateInProgress", + "message":"The operation cannot be performed at the present time, because there is an Azure Stack update in progress. Wait until the Azure Stack update is complete and then try your operation again." + } + + } + ] + } + }, + "404": {} + } +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/StorageOperationResult/Get.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/StorageOperationResult/Get.json new file mode 100644 index 000000000000..2fa7c89cd3f2 --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/StorageOperationResult/Get.json @@ -0,0 +1,19 @@ +{ + "parameters": { + "api-version": "2016-05-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName" : "System.local", + "location": "local", + "operation": "7129ebd4-efb5-4faf-89a5-9b9071811610" + }, + "responses": { + "200": { + "body": { + "properties": { + "provisioningState": "Succeeded" + } + } + }, + "404": {} + } +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/StorageOperationResult/List.json b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/StorageOperationResult/List.json new file mode 100644 index 000000000000..255fe329dfa9 --- /dev/null +++ b/specification/azsadmin/resource-manager/fabric/Microsoft.Fabric.Admin/preview/2016-05-01/examples/StorageOperationResult/List.json @@ -0,0 +1,32 @@ +{ + "parameters": { + "api-version": "2016-05-01", + "subscriptionId": "20ff7fc3-e762-44dd-bd96-b71116dcdc23", + "resourceGroupName": "System.local", + "location": "local" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "properties": { + "provisioningState": "Succeeded" + } + }, + { + "properties": { + "provisioningState": "Failed" + }, + "error":{ + "code":"OperationBlockedDueToUpdateInProgress", + "message":"The operation cannot be performed at the present time, because there is an Azure Stack update in progress. Wait until the Azure Stack update is complete and then try your operation again." + } + + } + ] + } + }, + "404": {} + } +} \ No newline at end of file diff --git a/specification/azsadmin/resource-manager/fabric/readme.md b/specification/azsadmin/resource-manager/fabric/readme.md index 3f94f6cf565d..3fb1723bbc71 100644 --- a/specification/azsadmin/resource-manager/fabric/readme.md +++ b/specification/azsadmin/resource-manager/fabric/readme.md @@ -33,6 +33,8 @@ These settings apply only when `--tag=package-2016-05-01` is specified on the co ``` yaml $(tag) == 'package-2016-05-01' input-file: + - "Microsoft.Fabric.Admin/preview/2016-05-01/ApplicationOperationResults.json" + - "Microsoft.Fabric.Admin/preview/2016-05-01/ComputeOperationResults.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/Fabric.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/EdgeGateway.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/EdgeGatewayPool.json" @@ -47,9 +49,11 @@ input-file: - "Microsoft.Fabric.Admin/preview/2016-05-01/Volume.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/LogicalSubnet.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/MacAddressPool.json" + - "Microsoft.Fabric.Admin/preview/2016-05-01/NetworkOperationResults.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/ScaleUnit.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/ScaleUnitNode.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/SlbMuxInstance.json" + - "Microsoft.Fabric.Admin/preview/2016-05-01/StorageOperationResults.json" ``` ### Tag: package-2018-10-01 @@ -58,6 +62,8 @@ These settings apply only when `--tag=package-2018-10-01` is specified on the co ``` yaml $(tag) == 'package-2018-10-01' input-file: + - "Microsoft.Fabric.Admin/preview/2016-05-01/ApplicationOperationResults.json" + - "Microsoft.Fabric.Admin/preview/2016-05-01/ComputeOperationResults.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/Fabric.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/EdgeGateway.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/EdgeGatewayPool.json" @@ -71,9 +77,11 @@ input-file: - "Microsoft.Fabric.Admin/preview/2016-05-01/StorageSystem.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/LogicalSubnet.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/MacAddressPool.json" + - "Microsoft.Fabric.Admin/preview/2016-05-01/NetworkOperationResults.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/ScaleUnit.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/ScaleUnitNode.json" - "Microsoft.Fabric.Admin/preview/2016-05-01/SlbMuxInstance.json" + - "Microsoft.Fabric.Admin/preview/2016-05-01/StorageOperationResults.json" - "Microsoft.Fabric.Admin/preview/2018-10-01/Drive.json" - "Microsoft.Fabric.Admin/preview/2018-10-01/StorageSubSystem.json" - "Microsoft.Fabric.Admin/preview/2018-10-01/Volume.json"