-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Hub Generated] Review request for Microsoft.DataFactory to add versi…
…on stable/2018-06-01 (#18439) * Added Global Parameters CRUD APIs * Small JSON fix * Updated Global parameters definitions * Small typo fix * Added spec and fixed delete * Correct path * Fixed casing * Added references * Small case fix * Small fix and prettier cleanup * Added type object Co-authored-by: Kevin Naddoni <naddonik@microsoft.com>
- Loading branch information
Showing
7 changed files
with
449 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
...resource-manager/Microsoft.DataFactory/stable/2018-06-01/entityTypes/GlobalParameter.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"swagger": "2.0", | ||
"info": { | ||
"title": "DataFactoryManagementClient", | ||
"version": "2018-06-01" | ||
}, | ||
"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": {}, | ||
"definitions": { | ||
"GlobalParameter": { | ||
"description": "Global parameters associated with the Azure Data Factory", | ||
"type": "object", | ||
"properties": {}, | ||
"additionalProperties": { | ||
"$ref": "../datafactory.json#/definitions/GlobalParameterSpecification" | ||
} | ||
} | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
...rce-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_Create.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-12345678abc", | ||
"resourceGroupName": "exampleResourceGroup", | ||
"factoryName": "exampleFactoryName", | ||
"globalParameterName": "default", | ||
"default": { | ||
"properties": { | ||
"waitTime": { | ||
"value": 5, | ||
"type": "Int" | ||
} | ||
} | ||
}, | ||
"api-version": "2018-06-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": { | ||
"Date": "Sat, 16 Jun 2018 00:40:14 GMT", | ||
"X-Content-Type-Options": "nosniff", | ||
"x-ms-ratelimit-remaining-subscription-writes": "1186", | ||
"x-ms-request-id": "373f1a49-685d-4c07-8857-0fcf1bcaffcb", | ||
"x-ms-correlation-request-id": "373f1a49-685d-4c07-8857-0fcf1bcaffcb" | ||
}, | ||
"body": { | ||
"id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/globalParameters/default", | ||
"name": "default", | ||
"type": "Microsoft.DataFactory/factories/globalParameters", | ||
"properties": { | ||
"waitTime": { | ||
"value": 5, | ||
"type": "Int" | ||
} | ||
}, | ||
"etag": "0a008ad4-0000-0000-0000-5b245c6e0000" | ||
} | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...rce-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_Delete.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-12345678abc", | ||
"resourceGroupName": "exampleResourceGroup", | ||
"factoryName": "exampleFactoryName", | ||
"globalParameterName": "default", | ||
"api-version": "2018-06-01" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"204": {} | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
...source-manager/Microsoft.DataFactory/stable/2018-06-01/examples/GlobalParameters_Get.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"parameters": { | ||
"subscriptionId": "12345678-1234-1234-1234-12345678abc", | ||
"resourceGroupName": "exampleResourceGroup", | ||
"factoryName": "exampleFactoryName", | ||
"globalParameterName": "default", | ||
"api-version": "2018-06-01" | ||
}, | ||
"responses": { | ||
"200": { | ||
"headers": { | ||
"Date": "Mon, 22 Apr 2019 18:33:52 GMT", | ||
"X-Content-Type-Options": "nosniff", | ||
"x-ms-ratelimit-remaining-subscription-reads": "11989", | ||
"x-ms-request-id": "8ad1759f-24c1-46a5-aef5-edd267e18870", | ||
"x-ms-correlation-request-id": "8ad1759f-24c1-46a5-aef5-edd267e18870" | ||
}, | ||
"body": { | ||
"id": "/subscriptions/12345678-1234-1234-1234-12345678abc/resourceGroups/exampleResourceGroup/providers/Microsoft.DataFactory/factories/exampleFactoryName/globalParameters/default", | ||
"name": "default", | ||
"type": "Microsoft.DataFactory/factories/globalParameters", | ||
"properties": { | ||
"waitTime": { | ||
"value": 10, | ||
"type": "Int" | ||
} | ||
}, | ||
"etag": "72001a6a-0000-0400-0000-623d058f0000" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.