@azure/arm-webservices 1.1.1-alpha.20250123.1 → 1.1.1-alpha.20250124.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-esm/samples-dev/webServicesCreateOrUpdateSample.js +29 -38
- package/dist-esm/samples-dev/webServicesCreateOrUpdateSample.js.map +1 -1
- package/dist-esm/samples-dev/webServicesCreateRegionalPropertiesSample.js +1 -3
- package/dist-esm/samples-dev/webServicesCreateRegionalPropertiesSample.js.map +1 -1
- package/dist-esm/samples-dev/webServicesGetSample.js +1 -3
- package/dist-esm/samples-dev/webServicesGetSample.js.map +1 -1
- package/dist-esm/samples-dev/webServicesListByResourceGroupSample.js +2 -4
- package/dist-esm/samples-dev/webServicesListByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/webServicesListBySubscriptionIdSample.js +2 -4
- package/dist-esm/samples-dev/webServicesListBySubscriptionIdSample.js.map +1 -1
- package/dist-esm/samples-dev/webServicesListKeysSample.js +1 -3
- package/dist-esm/samples-dev/webServicesListKeysSample.js.map +1 -1
- package/dist-esm/samples-dev/webServicesPatchSample.js +2 -11
- package/dist-esm/samples-dev/webServicesPatchSample.js.map +1 -1
- package/dist-esm/samples-dev/webServicesRemoveSample.js +1 -3
- package/dist-esm/samples-dev/webServicesRemoveSample.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,13 +1,4 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
1
|
import { __awaiter } from "tslib";
|
|
9
|
-
// Copyright (c) Microsoft Corporation.
|
|
10
|
-
// Licensed under the MIT License.
|
|
11
2
|
import { AzureMLWebServicesManagementClient } from "@azure/arm-webservices";
|
|
12
3
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
13
4
|
/**
|
|
@@ -29,23 +20,23 @@ function putWebService() {
|
|
|
29
20
|
asset1: {
|
|
30
21
|
name: "Execute R Script",
|
|
31
22
|
type: "Module",
|
|
32
|
-
locationInfo: { credentials: "", uri: "aml://module/moduleId-1" }
|
|
23
|
+
locationInfo: { credentials: "", uri: "aml://module/moduleId-1" },
|
|
33
24
|
},
|
|
34
25
|
asset2: {
|
|
35
26
|
name: "Import Data",
|
|
36
27
|
type: "Module",
|
|
37
|
-
locationInfo: { credentials: "", uri: "aml://module/moduleId-2" }
|
|
38
|
-
}
|
|
28
|
+
locationInfo: { credentials: "", uri: "aml://module/moduleId-2" },
|
|
29
|
+
},
|
|
39
30
|
},
|
|
40
31
|
commitmentPlan: {
|
|
41
|
-
id: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName"
|
|
32
|
+
id: "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.MachineLearning/commitmentPlans/commitmentPlanName",
|
|
42
33
|
},
|
|
43
34
|
diagnostics: { level: "None" },
|
|
44
35
|
exampleRequest: {
|
|
45
36
|
globalParameters: {},
|
|
46
37
|
inputs: {
|
|
47
|
-
input1: []
|
|
48
|
-
}
|
|
38
|
+
input1: [],
|
|
39
|
+
},
|
|
49
40
|
},
|
|
50
41
|
exposeSampleData: true,
|
|
51
42
|
input: {
|
|
@@ -56,12 +47,12 @@ function putWebService() {
|
|
|
56
47
|
type: "object",
|
|
57
48
|
description: "",
|
|
58
49
|
properties: {
|
|
59
|
-
columnName: { type: "String", xMsIsnullable: false }
|
|
50
|
+
columnName: { type: "String", xMsIsnullable: false },
|
|
60
51
|
},
|
|
61
|
-
title: ""
|
|
62
|
-
}
|
|
52
|
+
title: "",
|
|
53
|
+
},
|
|
63
54
|
},
|
|
64
|
-
title: ""
|
|
55
|
+
title: "",
|
|
65
56
|
},
|
|
66
57
|
machineLearningWorkspace: { id: "workspaceId" },
|
|
67
58
|
output: {
|
|
@@ -73,12 +64,12 @@ function putWebService() {
|
|
|
73
64
|
description: "",
|
|
74
65
|
properties: {
|
|
75
66
|
age: { type: "Integer", format: "Int32", xMsIsnullable: true },
|
|
76
|
-
workclass: { type: "String", xMsIsnullable: false }
|
|
67
|
+
workclass: { type: "String", xMsIsnullable: false },
|
|
77
68
|
},
|
|
78
|
-
title: ""
|
|
79
|
-
}
|
|
69
|
+
title: "",
|
|
70
|
+
},
|
|
80
71
|
},
|
|
81
|
-
title: ""
|
|
72
|
+
title: "",
|
|
82
73
|
},
|
|
83
74
|
package: {
|
|
84
75
|
edges: [
|
|
@@ -86,18 +77,18 @@ function putWebService() {
|
|
|
86
77
|
sourceNodeId: "node2",
|
|
87
78
|
sourcePortId: "Results dataset",
|
|
88
79
|
targetNodeId: "node1",
|
|
89
|
-
targetPortId: "Dataset2"
|
|
80
|
+
targetPortId: "Dataset2",
|
|
90
81
|
},
|
|
91
82
|
{
|
|
92
83
|
sourceNodeId: "node3",
|
|
93
84
|
targetNodeId: "node1",
|
|
94
|
-
targetPortId: "Dataset1"
|
|
85
|
+
targetPortId: "Dataset1",
|
|
95
86
|
},
|
|
96
87
|
{
|
|
97
88
|
sourceNodeId: "node1",
|
|
98
89
|
sourcePortId: "Result Dataset",
|
|
99
|
-
targetNodeId: "node4"
|
|
100
|
-
}
|
|
90
|
+
targetNodeId: "node4",
|
|
91
|
+
},
|
|
101
92
|
],
|
|
102
93
|
graphParameters: {},
|
|
103
94
|
nodes: {
|
|
@@ -105,27 +96,27 @@ function putWebService() {
|
|
|
105
96
|
assetId: "asset1",
|
|
106
97
|
parameters: {
|
|
107
98
|
rScript: { certificateThumbprint: "" },
|
|
108
|
-
rVersion: { certificateThumbprint: "" }
|
|
109
|
-
}
|
|
99
|
+
rVersion: { certificateThumbprint: "" },
|
|
100
|
+
},
|
|
110
101
|
},
|
|
111
102
|
node2: {
|
|
112
103
|
assetId: "asset2",
|
|
113
104
|
parameters: {
|
|
114
105
|
accountKey: {
|
|
115
|
-
certificateThumbprint: "TheThumbprint"
|
|
106
|
+
certificateThumbprint: "TheThumbprint",
|
|
116
107
|
},
|
|
117
108
|
accountName: { certificateThumbprint: "" },
|
|
118
109
|
pleaseSpecifyAuthenticationType: {
|
|
119
|
-
certificateThumbprint: ""
|
|
110
|
+
certificateThumbprint: "",
|
|
120
111
|
},
|
|
121
112
|
pleaseSpecifyDataSource: {
|
|
122
|
-
certificateThumbprint: ""
|
|
123
|
-
}
|
|
124
|
-
}
|
|
113
|
+
certificateThumbprint: "",
|
|
114
|
+
},
|
|
115
|
+
},
|
|
125
116
|
},
|
|
126
117
|
node3: { inputId: "input1" },
|
|
127
|
-
node4: { outputId: "output1" }
|
|
128
|
-
}
|
|
118
|
+
node4: { outputId: "output1" },
|
|
119
|
+
},
|
|
129
120
|
},
|
|
130
121
|
packageType: "Graph",
|
|
131
122
|
parameters: {},
|
|
@@ -133,9 +124,9 @@ function putWebService() {
|
|
|
133
124
|
readOnly: false,
|
|
134
125
|
realtimeConfiguration: { maxConcurrentCalls: 4 },
|
|
135
126
|
storageAccount: { name: "Storage_Name", key: "Storage_Key" },
|
|
136
|
-
title: "Web Service Title"
|
|
127
|
+
title: "Web Service Title",
|
|
137
128
|
},
|
|
138
|
-
tags: { tag1: "value1", tag2: "value2" }
|
|
129
|
+
tags: { tag1: "value1", tag2: "value2" },
|
|
139
130
|
};
|
|
140
131
|
const credential = new DefaultAzureCredential();
|
|
141
132
|
const client = new AzureMLWebServicesManagementClient(credential, subscriptionId);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webServicesCreateOrUpdateSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesCreateOrUpdateSample.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"webServicesCreateOrUpdateSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesCreateOrUpdateSample.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __awaiter } from "tslib";
|
|
1
2
|
/*
|
|
2
3
|
* Copyright (c) Microsoft Corporation.
|
|
3
4
|
* Licensed under the MIT License.
|
|
@@ -5,9 +6,6 @@
|
|
|
5
6
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
7
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
8
|
*/
|
|
8
|
-
import { __awaiter } from "tslib";
|
|
9
|
-
// Copyright (c) Microsoft Corporation.
|
|
10
|
-
// Licensed under the MIT License.
|
|
11
9
|
import { AzureMLWebServicesManagementClient } from "@azure/arm-webservices";
|
|
12
10
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
13
11
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webServicesCreateRegionalPropertiesSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesCreateRegionalPropertiesSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG
|
|
1
|
+
{"version":3,"file":"webServicesCreateRegionalPropertiesSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesCreateRegionalPropertiesSample.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;AACH,OAAO,EAAE,kCAAkC,EAAE,MAAM,wBAAwB,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,wBAAwB;;QACrC,MAAM,cAAc,GAAG,iBAAiB,CAAC;QACzC,MAAM,iBAAiB,GAAG,sBAAsB,CAAC;QACjD,MAAM,cAAc,GAAG,sBAAsB,CAAC;QAC9C,MAAM,MAAM,GAAG,gBAAgB,CAAC;QAChC,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,kCAAkC,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAClF,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,oCAAoC,CAC1E,iBAAiB,EACjB,cAAc,EACd,MAAM,CACP,CAAC;QACF,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACtB,CAAC;CAAA;AAED,wBAAwB,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __awaiter } from "tslib";
|
|
1
2
|
/*
|
|
2
3
|
* Copyright (c) Microsoft Corporation.
|
|
3
4
|
* Licensed under the MIT License.
|
|
@@ -5,9 +6,6 @@
|
|
|
5
6
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
7
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
8
|
*/
|
|
8
|
-
import { __awaiter } from "tslib";
|
|
9
|
-
// Copyright (c) Microsoft Corporation.
|
|
10
|
-
// Licensed under the MIT License.
|
|
11
9
|
import { AzureMLWebServicesManagementClient } from "@azure/arm-webservices";
|
|
12
10
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
13
11
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webServicesGetSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesGetSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG
|
|
1
|
+
{"version":3,"file":"webServicesGetSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesGetSample.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;AACH,OAAO,EAAE,kCAAkC,EAAE,MAAM,wBAAwB,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,aAAa;;QAC1B,MAAM,cAAc,GAAG,iBAAiB,CAAC;QACzC,MAAM,iBAAiB,GAAG,sBAAsB,CAAC;QACjD,MAAM,cAAc,GAAG,sBAAsB,CAAC;QAC9C,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,kCAAkC,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAClF,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,GAAG,CAAC,iBAAiB,EAAE,cAAc,CAAC,CAAC;QAC/E,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACtB,CAAC;CAAA;AAED,aAAa,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __asyncValues, __awaiter } from "tslib";
|
|
1
2
|
/*
|
|
2
3
|
* Copyright (c) Microsoft Corporation.
|
|
3
4
|
* Licensed under the MIT License.
|
|
@@ -5,9 +6,6 @@
|
|
|
5
6
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
7
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
8
|
*/
|
|
8
|
-
import { __asyncValues, __awaiter } from "tslib";
|
|
9
|
-
// Copyright (c) Microsoft Corporation.
|
|
10
|
-
// Licensed under the MIT License.
|
|
11
9
|
import { AzureMLWebServicesManagementClient } from "@azure/arm-webservices";
|
|
12
10
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
13
11
|
/**
|
|
@@ -28,7 +26,7 @@ function getWebServicesByResourceGroup() {
|
|
|
28
26
|
for (var _d = true, _e = __asyncValues(client.webServices.listByResourceGroup(resourceGroupName)), _f; _f = yield _e.next(), _a = _f.done, !_a; _d = true) {
|
|
29
27
|
_c = _f.value;
|
|
30
28
|
_d = false;
|
|
31
|
-
|
|
29
|
+
const item = _c;
|
|
32
30
|
resArray.push(item);
|
|
33
31
|
}
|
|
34
32
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webServicesListByResourceGroupSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesListByResourceGroupSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG
|
|
1
|
+
{"version":3,"file":"webServicesListByResourceGroupSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesListByResourceGroupSample.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;AACH,OAAO,EAAE,kCAAkC,EAAE,MAAM,wBAAwB,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,6BAA6B;;;QAC1C,MAAM,cAAc,GAAG,iBAAiB,CAAC;QACzC,MAAM,iBAAiB,GAAG,sBAAsB,CAAC;QACjD,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,kCAAkC,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAClF,MAAM,QAAQ,GAAG,IAAI,KAAK,EAAE,CAAC;;YAC7B,KAAyB,eAAA,KAAA,cAAA,MAAM,CAAC,WAAW,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,CAAA,IAAA,sDAAE,CAAC;gBAA5D,cAAyD;gBAAzD,WAAyD;gBAAvE,MAAM,IAAI,KAAA,CAAA;gBACnB,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACtB,CAAC;;;;;;;;;QACD,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IACxB,CAAC;CAAA;AAED,6BAA6B,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __asyncValues, __awaiter } from "tslib";
|
|
1
2
|
/*
|
|
2
3
|
* Copyright (c) Microsoft Corporation.
|
|
3
4
|
* Licensed under the MIT License.
|
|
@@ -5,9 +6,6 @@
|
|
|
5
6
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
7
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
8
|
*/
|
|
8
|
-
import { __asyncValues, __awaiter } from "tslib";
|
|
9
|
-
// Copyright (c) Microsoft Corporation.
|
|
10
|
-
// Licensed under the MIT License.
|
|
11
9
|
import { AzureMLWebServicesManagementClient } from "@azure/arm-webservices";
|
|
12
10
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
13
11
|
/**
|
|
@@ -27,7 +25,7 @@ function getWebServicesBySubscriptionId() {
|
|
|
27
25
|
for (var _d = true, _e = __asyncValues(client.webServices.listBySubscriptionId()), _f; _f = yield _e.next(), _a = _f.done, !_a; _d = true) {
|
|
28
26
|
_c = _f.value;
|
|
29
27
|
_d = false;
|
|
30
|
-
|
|
28
|
+
const item = _c;
|
|
31
29
|
resArray.push(item);
|
|
32
30
|
}
|
|
33
31
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webServicesListBySubscriptionIdSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesListBySubscriptionIdSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG
|
|
1
|
+
{"version":3,"file":"webServicesListBySubscriptionIdSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesListBySubscriptionIdSample.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;AACH,OAAO,EAAE,kCAAkC,EAAE,MAAM,wBAAwB,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,8BAA8B;;;QAC3C,MAAM,cAAc,GAAG,iBAAiB,CAAC;QACzC,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,kCAAkC,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAClF,MAAM,QAAQ,GAAG,IAAI,KAAK,EAAE,CAAC;;YAC7B,KAAyB,eAAA,KAAA,cAAA,MAAM,CAAC,WAAW,CAAC,oBAAoB,EAAE,CAAA,IAAA,sDAAE,CAAC;gBAA5C,cAAyC;gBAAzC,WAAyC;gBAAvD,MAAM,IAAI,KAAA,CAAA;gBACnB,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACtB,CAAC;;;;;;;;;QACD,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;IACxB,CAAC;CAAA;AAED,8BAA8B,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __awaiter } from "tslib";
|
|
1
2
|
/*
|
|
2
3
|
* Copyright (c) Microsoft Corporation.
|
|
3
4
|
* Licensed under the MIT License.
|
|
@@ -5,9 +6,6 @@
|
|
|
5
6
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
7
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
8
|
*/
|
|
8
|
-
import { __awaiter } from "tslib";
|
|
9
|
-
// Copyright (c) Microsoft Corporation.
|
|
10
|
-
// Licensed under the MIT License.
|
|
11
9
|
import { AzureMLWebServicesManagementClient } from "@azure/arm-webservices";
|
|
12
10
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
13
11
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webServicesListKeysSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesListKeysSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG
|
|
1
|
+
{"version":3,"file":"webServicesListKeysSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesListKeysSample.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;AACH,OAAO,EAAE,kCAAkC,EAAE,MAAM,wBAAwB,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,iBAAiB;;QAC9B,MAAM,cAAc,GAAG,iBAAiB,CAAC;QACzC,MAAM,iBAAiB,GAAG,sBAAsB,CAAC;QACjD,MAAM,cAAc,GAAG,sBAAsB,CAAC;QAC9C,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,kCAAkC,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAClF,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,QAAQ,CAAC,iBAAiB,EAAE,cAAc,CAAC,CAAC;QACpF,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACtB,CAAC;CAAA;AAED,iBAAiB,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
|
@@ -1,13 +1,4 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
1
|
import { __awaiter } from "tslib";
|
|
9
|
-
// Copyright (c) Microsoft Corporation.
|
|
10
|
-
// Licensed under the MIT License.
|
|
11
2
|
import { AzureMLWebServicesManagementClient } from "@azure/arm-webservices";
|
|
12
3
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
13
4
|
/**
|
|
@@ -26,8 +17,8 @@ function patchWebService() {
|
|
|
26
17
|
properties: {
|
|
27
18
|
description: "New Web Service Description",
|
|
28
19
|
packageType: "Graph",
|
|
29
|
-
title: "New Web Service Title"
|
|
30
|
-
}
|
|
20
|
+
title: "New Web Service Title",
|
|
21
|
+
},
|
|
31
22
|
};
|
|
32
23
|
const credential = new DefaultAzureCredential();
|
|
33
24
|
const client = new AzureMLWebServicesManagementClient(credential, subscriptionId);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webServicesPatchSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesPatchSample.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"webServicesPatchSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesPatchSample.ts"],"names":[],"mappings":";AAQA,OAAO,EAAE,kCAAkC,EAAE,MAAM,wBAAwB,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,eAAe;;QAC5B,MAAM,cAAc,GAAG,iBAAiB,CAAC;QACzC,MAAM,iBAAiB,GAAG,sBAAsB,CAAC;QACjD,MAAM,cAAc,GAAG,sBAAsB,CAAC;QAC9C,MAAM,YAAY,GAAsB;YACtC,QAAQ,EAAE,SAAS;YACnB,UAAU,EAAE;gBACV,WAAW,EAAE,6BAA6B;gBAC1C,WAAW,EAAE,OAAO;gBACpB,KAAK,EAAE,uBAAuB;aAC/B;SACF,CAAC;QACF,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,kCAAkC,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAClF,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,iBAAiB,CACvD,iBAAiB,EACjB,cAAc,EACd,YAAY,CACb,CAAC;QACF,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACtB,CAAC;CAAA;AAED,eAAe,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __awaiter } from "tslib";
|
|
1
2
|
/*
|
|
2
3
|
* Copyright (c) Microsoft Corporation.
|
|
3
4
|
* Licensed under the MIT License.
|
|
@@ -5,9 +6,6 @@
|
|
|
5
6
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
7
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
8
|
*/
|
|
8
|
-
import { __awaiter } from "tslib";
|
|
9
|
-
// Copyright (c) Microsoft Corporation.
|
|
10
|
-
// Licensed under the MIT License.
|
|
11
9
|
import { AzureMLWebServicesManagementClient } from "@azure/arm-webservices";
|
|
12
10
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
13
11
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"webServicesRemoveSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesRemoveSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG
|
|
1
|
+
{"version":3,"file":"webServicesRemoveSample.js","sourceRoot":"","sources":["../../samples-dev/webServicesRemoveSample.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;AACH,OAAO,EAAE,kCAAkC,EAAE,MAAM,wBAAwB,CAAC;AAC5E,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,gBAAgB;;QAC7B,MAAM,cAAc,GAAG,iBAAiB,CAAC;QACzC,MAAM,iBAAiB,GAAG,sBAAsB,CAAC;QACjD,MAAM,cAAc,GAAG,sBAAsB,CAAC;QAC9C,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,kCAAkC,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAClF,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,kBAAkB,CAAC,iBAAiB,EAAE,cAAc,CAAC,CAAC;QAC9F,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACtB,CAAC;CAAA;AAED,gBAAgB,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
package/package.json
CHANGED