@azure/arm-relay 2.2.1 → 3.0.0
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/CHANGELOG.md +11 -0
- package/{LICENSE.txt → LICENSE} +2 -2
- package/README.md +69 -80
- package/dist/index.js +2907 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +493 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +9 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +23 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +369 -416
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +20 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +169 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/hybridConnections.d.ts +137 -0
- package/dist-esm/src/operations/hybridConnections.d.ts.map +1 -0
- package/dist-esm/src/operations/hybridConnections.js +571 -0
- package/dist-esm/src/operations/hybridConnections.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +3 -5
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/namespaces.d.ts +174 -0
- package/dist-esm/src/operations/namespaces.d.ts.map +1 -0
- package/dist-esm/src/operations/namespaces.js +771 -0
- package/dist-esm/src/operations/namespaces.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +32 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +120 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operations/wCFRelays.d.ts +137 -0
- package/dist-esm/src/operations/wCFRelays.d.ts.map +1 -0
- package/dist-esm/src/operations/wCFRelays.js +554 -0
- package/dist-esm/src/operations/wCFRelays.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/hybridConnections.d.ts +93 -0
- package/dist-esm/src/operationsInterfaces/hybridConnections.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/hybridConnections.js +9 -0
- package/dist-esm/src/operationsInterfaces/hybridConnections.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/namespaces.d.ts +121 -0
- package/dist-esm/src/operationsInterfaces/namespaces.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/namespaces.js +9 -0
- package/dist-esm/src/operationsInterfaces/namespaces.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/wCFRelays.d.ts +93 -0
- package/dist-esm/src/operationsInterfaces/wCFRelays.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/wCFRelays.js +9 -0
- package/dist-esm/src/operationsInterfaces/wCFRelays.js.map +1 -0
- package/dist-esm/src/relayAPI.d.ts +22 -0
- package/dist-esm/src/relayAPI.d.ts.map +1 -0
- package/dist-esm/src/relayAPI.js +55 -0
- package/dist-esm/src/relayAPI.js.map +1 -0
- package/dist-esm/test/relay_examples.d.ts +4 -0
- package/dist-esm/test/relay_examples.d.ts.map +1 -0
- package/dist-esm/test/relay_examples.js +240 -0
- package/dist-esm/test/relay_examples.js.map +1 -0
- package/package.json +68 -33
- package/review/arm-relay.api.md +539 -0
- package/rollup.config.js +184 -27
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +470 -1163
- package/src/models/mappers.ts +366 -413
- package/src/models/parameters.ts +126 -46
- package/src/operations/hybridConnections.ts +473 -492
- package/src/operations/index.ts +3 -5
- package/src/operations/namespaces.ts +702 -651
- package/src/operations/operations.ts +87 -73
- package/src/operations/wCFRelays.ts +470 -507
- package/src/operationsInterfaces/hybridConnections.ts +179 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/namespaces.ts +228 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/src/operationsInterfaces/wCFRelays.ts +179 -0
- package/src/relayAPI.ts +92 -0
- package/tsconfig.json +4 -4
- package/types/arm-relay.d.ts +931 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-relay.js +0 -2603
- package/dist/arm-relay.js.map +0 -1
- package/dist/arm-relay.min.js +0 -1
- package/dist/arm-relay.min.js.map +0 -1
- package/esm/models/hybridConnectionsMappers.d.ts +0 -2
- package/esm/models/hybridConnectionsMappers.d.ts.map +0 -1
- package/esm/models/hybridConnectionsMappers.js +0 -11
- package/esm/models/hybridConnectionsMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -1231
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -25
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/namespacesMappers.d.ts +0 -2
- package/esm/models/namespacesMappers.d.ts.map +0 -1
- package/esm/models/namespacesMappers.js +0 -11
- package/esm/models/namespacesMappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -11
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -11
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -118
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/wCFRelaysMappers.d.ts +0 -2
- package/esm/models/wCFRelaysMappers.d.ts.map +0 -1
- package/esm/models/wCFRelaysMappers.js +0 -11
- package/esm/models/wCFRelaysMappers.js.map +0 -1
- package/esm/operations/hybridConnections.d.ts +0 -310
- package/esm/operations/hybridConnections.d.ts.map +0 -1
- package/esm/operations/hybridConnections.js +0 -431
- package/esm/operations/hybridConnections.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/namespaces.d.ts +0 -348
- package/esm/operations/namespaces.d.ts.map +0 -1
- package/esm/operations/namespaces.js +0 -579
- package/esm/operations/namespaces.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -46
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -77
- package/esm/operations/operations.js.map +0 -1
- package/esm/operations/wCFRelays.d.ts +0 -310
- package/esm/operations/wCFRelays.d.ts.map +0 -1
- package/esm/operations/wCFRelays.js +0 -432
- package/esm/operations/wCFRelays.js.map +0 -1
- package/esm/relayManagementClient.d.ts +0 -28
- package/esm/relayManagementClient.d.ts.map +0 -1
- package/esm/relayManagementClient.js +0 -42
- package/esm/relayManagementClient.js.map +0 -1
- package/esm/relayManagementClientContext.d.ts +0 -23
- package/esm/relayManagementClientContext.d.ts.map +0 -1
- package/esm/relayManagementClientContext.js +0 -62
- package/esm/relayManagementClientContext.js.map +0 -1
- package/src/models/hybridConnectionsMappers.ts +0 -28
- package/src/models/namespacesMappers.ts +0 -30
- package/src/models/operationsMappers.ts +0 -17
- package/src/models/wCFRelaysMappers.ts +0 -29
- package/src/relayManagementClient.ts +0 -55
- package/src/relayManagementClientContext.ts +0 -69
|
@@ -0,0 +1,571 @@
|
|
|
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
|
+
import { __asyncDelegator, __asyncGenerator, __asyncValues, __await } from "tslib";
|
|
9
|
+
import * as coreClient from "@azure/core-client";
|
|
10
|
+
import * as Mappers from "../models/mappers";
|
|
11
|
+
import * as Parameters from "../models/parameters";
|
|
12
|
+
/// <reference lib="esnext.asynciterable" />
|
|
13
|
+
/** Class containing HybridConnections operations. */
|
|
14
|
+
export class HybridConnectionsImpl {
|
|
15
|
+
/**
|
|
16
|
+
* Initialize a new instance of the class HybridConnections class.
|
|
17
|
+
* @param client Reference to the service client
|
|
18
|
+
*/
|
|
19
|
+
constructor(client) {
|
|
20
|
+
this.client = client;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Lists the hybrid connection within the namespace.
|
|
24
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
25
|
+
* @param namespaceName The namespace name
|
|
26
|
+
* @param options The options parameters.
|
|
27
|
+
*/
|
|
28
|
+
listByNamespace(resourceGroupName, namespaceName, options) {
|
|
29
|
+
const iter = this.listByNamespacePagingAll(resourceGroupName, namespaceName, options);
|
|
30
|
+
return {
|
|
31
|
+
next() {
|
|
32
|
+
return iter.next();
|
|
33
|
+
},
|
|
34
|
+
[Symbol.asyncIterator]() {
|
|
35
|
+
return this;
|
|
36
|
+
},
|
|
37
|
+
byPage: () => {
|
|
38
|
+
return this.listByNamespacePagingPage(resourceGroupName, namespaceName, options);
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
}
|
|
42
|
+
listByNamespacePagingPage(resourceGroupName, namespaceName, options) {
|
|
43
|
+
return __asyncGenerator(this, arguments, function* listByNamespacePagingPage_1() {
|
|
44
|
+
let result = yield __await(this._listByNamespace(resourceGroupName, namespaceName, options));
|
|
45
|
+
yield yield __await(result.value || []);
|
|
46
|
+
let continuationToken = result.nextLink;
|
|
47
|
+
while (continuationToken) {
|
|
48
|
+
result = yield __await(this._listByNamespaceNext(resourceGroupName, namespaceName, continuationToken, options));
|
|
49
|
+
continuationToken = result.nextLink;
|
|
50
|
+
yield yield __await(result.value || []);
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
listByNamespacePagingAll(resourceGroupName, namespaceName, options) {
|
|
55
|
+
return __asyncGenerator(this, arguments, function* listByNamespacePagingAll_1() {
|
|
56
|
+
var e_1, _a;
|
|
57
|
+
try {
|
|
58
|
+
for (var _b = __asyncValues(this.listByNamespacePagingPage(resourceGroupName, namespaceName, options)), _c; _c = yield __await(_b.next()), !_c.done;) {
|
|
59
|
+
const page = _c.value;
|
|
60
|
+
yield __await(yield* __asyncDelegator(__asyncValues(page)));
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
64
|
+
finally {
|
|
65
|
+
try {
|
|
66
|
+
if (_c && !_c.done && (_a = _b.return)) yield __await(_a.call(_b));
|
|
67
|
+
}
|
|
68
|
+
finally { if (e_1) throw e_1.error; }
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
}
|
|
72
|
+
/**
|
|
73
|
+
* Authorization rules for a hybrid connection.
|
|
74
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
75
|
+
* @param namespaceName The namespace name
|
|
76
|
+
* @param hybridConnectionName The hybrid connection name.
|
|
77
|
+
* @param options The options parameters.
|
|
78
|
+
*/
|
|
79
|
+
listAuthorizationRules(resourceGroupName, namespaceName, hybridConnectionName, options) {
|
|
80
|
+
const iter = this.listAuthorizationRulesPagingAll(resourceGroupName, namespaceName, hybridConnectionName, options);
|
|
81
|
+
return {
|
|
82
|
+
next() {
|
|
83
|
+
return iter.next();
|
|
84
|
+
},
|
|
85
|
+
[Symbol.asyncIterator]() {
|
|
86
|
+
return this;
|
|
87
|
+
},
|
|
88
|
+
byPage: () => {
|
|
89
|
+
return this.listAuthorizationRulesPagingPage(resourceGroupName, namespaceName, hybridConnectionName, options);
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
listAuthorizationRulesPagingPage(resourceGroupName, namespaceName, hybridConnectionName, options) {
|
|
94
|
+
return __asyncGenerator(this, arguments, function* listAuthorizationRulesPagingPage_1() {
|
|
95
|
+
let result = yield __await(this._listAuthorizationRules(resourceGroupName, namespaceName, hybridConnectionName, options));
|
|
96
|
+
yield yield __await(result.value || []);
|
|
97
|
+
let continuationToken = result.nextLink;
|
|
98
|
+
while (continuationToken) {
|
|
99
|
+
result = yield __await(this._listAuthorizationRulesNext(resourceGroupName, namespaceName, hybridConnectionName, continuationToken, options));
|
|
100
|
+
continuationToken = result.nextLink;
|
|
101
|
+
yield yield __await(result.value || []);
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
}
|
|
105
|
+
listAuthorizationRulesPagingAll(resourceGroupName, namespaceName, hybridConnectionName, options) {
|
|
106
|
+
return __asyncGenerator(this, arguments, function* listAuthorizationRulesPagingAll_1() {
|
|
107
|
+
var e_2, _a;
|
|
108
|
+
try {
|
|
109
|
+
for (var _b = __asyncValues(this.listAuthorizationRulesPagingPage(resourceGroupName, namespaceName, hybridConnectionName, options)), _c; _c = yield __await(_b.next()), !_c.done;) {
|
|
110
|
+
const page = _c.value;
|
|
111
|
+
yield __await(yield* __asyncDelegator(__asyncValues(page)));
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
|
115
|
+
finally {
|
|
116
|
+
try {
|
|
117
|
+
if (_c && !_c.done && (_a = _b.return)) yield __await(_a.call(_b));
|
|
118
|
+
}
|
|
119
|
+
finally { if (e_2) throw e_2.error; }
|
|
120
|
+
}
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* Lists the hybrid connection within the namespace.
|
|
125
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
126
|
+
* @param namespaceName The namespace name
|
|
127
|
+
* @param options The options parameters.
|
|
128
|
+
*/
|
|
129
|
+
_listByNamespace(resourceGroupName, namespaceName, options) {
|
|
130
|
+
return this.client.sendOperationRequest({ resourceGroupName, namespaceName, options }, listByNamespaceOperationSpec);
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* Creates or updates a service hybrid connection. This operation is idempotent.
|
|
134
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
135
|
+
* @param namespaceName The namespace name
|
|
136
|
+
* @param hybridConnectionName The hybrid connection name.
|
|
137
|
+
* @param parameters Parameters supplied to create a hybrid connection.
|
|
138
|
+
* @param options The options parameters.
|
|
139
|
+
*/
|
|
140
|
+
createOrUpdate(resourceGroupName, namespaceName, hybridConnectionName, parameters, options) {
|
|
141
|
+
return this.client.sendOperationRequest({
|
|
142
|
+
resourceGroupName,
|
|
143
|
+
namespaceName,
|
|
144
|
+
hybridConnectionName,
|
|
145
|
+
parameters,
|
|
146
|
+
options
|
|
147
|
+
}, createOrUpdateOperationSpec);
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* Deletes a hybrid connection.
|
|
151
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
152
|
+
* @param namespaceName The namespace name
|
|
153
|
+
* @param hybridConnectionName The hybrid connection name.
|
|
154
|
+
* @param options The options parameters.
|
|
155
|
+
*/
|
|
156
|
+
delete(resourceGroupName, namespaceName, hybridConnectionName, options) {
|
|
157
|
+
return this.client.sendOperationRequest({ resourceGroupName, namespaceName, hybridConnectionName, options }, deleteOperationSpec);
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* Returns the description for the specified hybrid connection.
|
|
161
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
162
|
+
* @param namespaceName The namespace name
|
|
163
|
+
* @param hybridConnectionName The hybrid connection name.
|
|
164
|
+
* @param options The options parameters.
|
|
165
|
+
*/
|
|
166
|
+
get(resourceGroupName, namespaceName, hybridConnectionName, options) {
|
|
167
|
+
return this.client.sendOperationRequest({ resourceGroupName, namespaceName, hybridConnectionName, options }, getOperationSpec);
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* Authorization rules for a hybrid connection.
|
|
171
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
172
|
+
* @param namespaceName The namespace name
|
|
173
|
+
* @param hybridConnectionName The hybrid connection name.
|
|
174
|
+
* @param options The options parameters.
|
|
175
|
+
*/
|
|
176
|
+
_listAuthorizationRules(resourceGroupName, namespaceName, hybridConnectionName, options) {
|
|
177
|
+
return this.client.sendOperationRequest({ resourceGroupName, namespaceName, hybridConnectionName, options }, listAuthorizationRulesOperationSpec);
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* Creates or updates an authorization rule for a hybrid connection.
|
|
181
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
182
|
+
* @param namespaceName The namespace name
|
|
183
|
+
* @param hybridConnectionName The hybrid connection name.
|
|
184
|
+
* @param authorizationRuleName The authorization rule name.
|
|
185
|
+
* @param parameters The authorization rule parameters.
|
|
186
|
+
* @param options The options parameters.
|
|
187
|
+
*/
|
|
188
|
+
createOrUpdateAuthorizationRule(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, parameters, options) {
|
|
189
|
+
return this.client.sendOperationRequest({
|
|
190
|
+
resourceGroupName,
|
|
191
|
+
namespaceName,
|
|
192
|
+
hybridConnectionName,
|
|
193
|
+
authorizationRuleName,
|
|
194
|
+
parameters,
|
|
195
|
+
options
|
|
196
|
+
}, createOrUpdateAuthorizationRuleOperationSpec);
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* Deletes a hybrid connection authorization rule.
|
|
200
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
201
|
+
* @param namespaceName The namespace name
|
|
202
|
+
* @param hybridConnectionName The hybrid connection name.
|
|
203
|
+
* @param authorizationRuleName The authorization rule name.
|
|
204
|
+
* @param options The options parameters.
|
|
205
|
+
*/
|
|
206
|
+
deleteAuthorizationRule(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, options) {
|
|
207
|
+
return this.client.sendOperationRequest({
|
|
208
|
+
resourceGroupName,
|
|
209
|
+
namespaceName,
|
|
210
|
+
hybridConnectionName,
|
|
211
|
+
authorizationRuleName,
|
|
212
|
+
options
|
|
213
|
+
}, deleteAuthorizationRuleOperationSpec);
|
|
214
|
+
}
|
|
215
|
+
/**
|
|
216
|
+
* Hybrid connection authorization rule for a hybrid connection by name.
|
|
217
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
218
|
+
* @param namespaceName The namespace name
|
|
219
|
+
* @param hybridConnectionName The hybrid connection name.
|
|
220
|
+
* @param authorizationRuleName The authorization rule name.
|
|
221
|
+
* @param options The options parameters.
|
|
222
|
+
*/
|
|
223
|
+
getAuthorizationRule(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, options) {
|
|
224
|
+
return this.client.sendOperationRequest({
|
|
225
|
+
resourceGroupName,
|
|
226
|
+
namespaceName,
|
|
227
|
+
hybridConnectionName,
|
|
228
|
+
authorizationRuleName,
|
|
229
|
+
options
|
|
230
|
+
}, getAuthorizationRuleOperationSpec);
|
|
231
|
+
}
|
|
232
|
+
/**
|
|
233
|
+
* Primary and secondary connection strings to the hybrid connection.
|
|
234
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
235
|
+
* @param namespaceName The namespace name
|
|
236
|
+
* @param hybridConnectionName The hybrid connection name.
|
|
237
|
+
* @param authorizationRuleName The authorization rule name.
|
|
238
|
+
* @param options The options parameters.
|
|
239
|
+
*/
|
|
240
|
+
listKeys(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, options) {
|
|
241
|
+
return this.client.sendOperationRequest({
|
|
242
|
+
resourceGroupName,
|
|
243
|
+
namespaceName,
|
|
244
|
+
hybridConnectionName,
|
|
245
|
+
authorizationRuleName,
|
|
246
|
+
options
|
|
247
|
+
}, listKeysOperationSpec);
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* Regenerates the primary or secondary connection strings to the hybrid connection.
|
|
251
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
252
|
+
* @param namespaceName The namespace name
|
|
253
|
+
* @param hybridConnectionName The hybrid connection name.
|
|
254
|
+
* @param authorizationRuleName The authorization rule name.
|
|
255
|
+
* @param parameters Parameters supplied to regenerate authorization rule.
|
|
256
|
+
* @param options The options parameters.
|
|
257
|
+
*/
|
|
258
|
+
regenerateKeys(resourceGroupName, namespaceName, hybridConnectionName, authorizationRuleName, parameters, options) {
|
|
259
|
+
return this.client.sendOperationRequest({
|
|
260
|
+
resourceGroupName,
|
|
261
|
+
namespaceName,
|
|
262
|
+
hybridConnectionName,
|
|
263
|
+
authorizationRuleName,
|
|
264
|
+
parameters,
|
|
265
|
+
options
|
|
266
|
+
}, regenerateKeysOperationSpec);
|
|
267
|
+
}
|
|
268
|
+
/**
|
|
269
|
+
* ListByNamespaceNext
|
|
270
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
271
|
+
* @param namespaceName The namespace name
|
|
272
|
+
* @param nextLink The nextLink from the previous successful call to the ListByNamespace method.
|
|
273
|
+
* @param options The options parameters.
|
|
274
|
+
*/
|
|
275
|
+
_listByNamespaceNext(resourceGroupName, namespaceName, nextLink, options) {
|
|
276
|
+
return this.client.sendOperationRequest({ resourceGroupName, namespaceName, nextLink, options }, listByNamespaceNextOperationSpec);
|
|
277
|
+
}
|
|
278
|
+
/**
|
|
279
|
+
* ListAuthorizationRulesNext
|
|
280
|
+
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
281
|
+
* @param namespaceName The namespace name
|
|
282
|
+
* @param hybridConnectionName The hybrid connection name.
|
|
283
|
+
* @param nextLink The nextLink from the previous successful call to the ListAuthorizationRules method.
|
|
284
|
+
* @param options The options parameters.
|
|
285
|
+
*/
|
|
286
|
+
_listAuthorizationRulesNext(resourceGroupName, namespaceName, hybridConnectionName, nextLink, options) {
|
|
287
|
+
return this.client.sendOperationRequest({
|
|
288
|
+
resourceGroupName,
|
|
289
|
+
namespaceName,
|
|
290
|
+
hybridConnectionName,
|
|
291
|
+
nextLink,
|
|
292
|
+
options
|
|
293
|
+
}, listAuthorizationRulesNextOperationSpec);
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
// Operation Specifications
|
|
297
|
+
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
|
|
298
|
+
const listByNamespaceOperationSpec = {
|
|
299
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}/hybridConnections",
|
|
300
|
+
httpMethod: "GET",
|
|
301
|
+
responses: {
|
|
302
|
+
200: {
|
|
303
|
+
bodyMapper: Mappers.HybridConnectionListResult
|
|
304
|
+
},
|
|
305
|
+
default: {
|
|
306
|
+
bodyMapper: Mappers.ErrorResponse
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
queryParameters: [Parameters.apiVersion],
|
|
310
|
+
urlParameters: [
|
|
311
|
+
Parameters.$host,
|
|
312
|
+
Parameters.subscriptionId,
|
|
313
|
+
Parameters.resourceGroupName,
|
|
314
|
+
Parameters.namespaceName
|
|
315
|
+
],
|
|
316
|
+
headerParameters: [Parameters.accept],
|
|
317
|
+
serializer
|
|
318
|
+
};
|
|
319
|
+
const createOrUpdateOperationSpec = {
|
|
320
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}/hybridConnections/{hybridConnectionName}",
|
|
321
|
+
httpMethod: "PUT",
|
|
322
|
+
responses: {
|
|
323
|
+
200: {
|
|
324
|
+
bodyMapper: Mappers.HybridConnection
|
|
325
|
+
},
|
|
326
|
+
default: {
|
|
327
|
+
bodyMapper: Mappers.ErrorResponse
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
requestBody: Parameters.parameters5,
|
|
331
|
+
queryParameters: [Parameters.apiVersion],
|
|
332
|
+
urlParameters: [
|
|
333
|
+
Parameters.$host,
|
|
334
|
+
Parameters.subscriptionId,
|
|
335
|
+
Parameters.resourceGroupName,
|
|
336
|
+
Parameters.namespaceName,
|
|
337
|
+
Parameters.hybridConnectionName
|
|
338
|
+
],
|
|
339
|
+
headerParameters: [Parameters.accept, Parameters.contentType],
|
|
340
|
+
mediaType: "json",
|
|
341
|
+
serializer
|
|
342
|
+
};
|
|
343
|
+
const deleteOperationSpec = {
|
|
344
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}/hybridConnections/{hybridConnectionName}",
|
|
345
|
+
httpMethod: "DELETE",
|
|
346
|
+
responses: {
|
|
347
|
+
200: {},
|
|
348
|
+
204: {},
|
|
349
|
+
default: {
|
|
350
|
+
bodyMapper: Mappers.ErrorResponse
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
queryParameters: [Parameters.apiVersion],
|
|
354
|
+
urlParameters: [
|
|
355
|
+
Parameters.$host,
|
|
356
|
+
Parameters.subscriptionId,
|
|
357
|
+
Parameters.resourceGroupName,
|
|
358
|
+
Parameters.namespaceName,
|
|
359
|
+
Parameters.hybridConnectionName
|
|
360
|
+
],
|
|
361
|
+
headerParameters: [Parameters.accept],
|
|
362
|
+
serializer
|
|
363
|
+
};
|
|
364
|
+
const getOperationSpec = {
|
|
365
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}/hybridConnections/{hybridConnectionName}",
|
|
366
|
+
httpMethod: "GET",
|
|
367
|
+
responses: {
|
|
368
|
+
200: {
|
|
369
|
+
bodyMapper: Mappers.HybridConnection
|
|
370
|
+
},
|
|
371
|
+
default: {
|
|
372
|
+
bodyMapper: Mappers.ErrorResponse
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
queryParameters: [Parameters.apiVersion],
|
|
376
|
+
urlParameters: [
|
|
377
|
+
Parameters.$host,
|
|
378
|
+
Parameters.subscriptionId,
|
|
379
|
+
Parameters.resourceGroupName,
|
|
380
|
+
Parameters.namespaceName,
|
|
381
|
+
Parameters.hybridConnectionName
|
|
382
|
+
],
|
|
383
|
+
headerParameters: [Parameters.accept],
|
|
384
|
+
serializer
|
|
385
|
+
};
|
|
386
|
+
const listAuthorizationRulesOperationSpec = {
|
|
387
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}/hybridConnections/{hybridConnectionName}/authorizationRules",
|
|
388
|
+
httpMethod: "GET",
|
|
389
|
+
responses: {
|
|
390
|
+
200: {
|
|
391
|
+
bodyMapper: Mappers.AuthorizationRuleListResult
|
|
392
|
+
},
|
|
393
|
+
default: {
|
|
394
|
+
bodyMapper: Mappers.ErrorResponse
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
queryParameters: [Parameters.apiVersion],
|
|
398
|
+
urlParameters: [
|
|
399
|
+
Parameters.$host,
|
|
400
|
+
Parameters.subscriptionId,
|
|
401
|
+
Parameters.resourceGroupName,
|
|
402
|
+
Parameters.namespaceName,
|
|
403
|
+
Parameters.hybridConnectionName
|
|
404
|
+
],
|
|
405
|
+
headerParameters: [Parameters.accept],
|
|
406
|
+
serializer
|
|
407
|
+
};
|
|
408
|
+
const createOrUpdateAuthorizationRuleOperationSpec = {
|
|
409
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}/hybridConnections/{hybridConnectionName}/authorizationRules/{authorizationRuleName}",
|
|
410
|
+
httpMethod: "PUT",
|
|
411
|
+
responses: {
|
|
412
|
+
200: {
|
|
413
|
+
bodyMapper: Mappers.AuthorizationRule
|
|
414
|
+
},
|
|
415
|
+
default: {
|
|
416
|
+
bodyMapper: Mappers.ErrorResponse
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
requestBody: Parameters.parameters3,
|
|
420
|
+
queryParameters: [Parameters.apiVersion],
|
|
421
|
+
urlParameters: [
|
|
422
|
+
Parameters.$host,
|
|
423
|
+
Parameters.subscriptionId,
|
|
424
|
+
Parameters.resourceGroupName,
|
|
425
|
+
Parameters.namespaceName,
|
|
426
|
+
Parameters.authorizationRuleName,
|
|
427
|
+
Parameters.hybridConnectionName
|
|
428
|
+
],
|
|
429
|
+
headerParameters: [Parameters.accept, Parameters.contentType],
|
|
430
|
+
mediaType: "json",
|
|
431
|
+
serializer
|
|
432
|
+
};
|
|
433
|
+
const deleteAuthorizationRuleOperationSpec = {
|
|
434
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}/hybridConnections/{hybridConnectionName}/authorizationRules/{authorizationRuleName}",
|
|
435
|
+
httpMethod: "DELETE",
|
|
436
|
+
responses: {
|
|
437
|
+
200: {},
|
|
438
|
+
204: {},
|
|
439
|
+
default: {
|
|
440
|
+
bodyMapper: Mappers.ErrorResponse
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
queryParameters: [Parameters.apiVersion],
|
|
444
|
+
urlParameters: [
|
|
445
|
+
Parameters.$host,
|
|
446
|
+
Parameters.subscriptionId,
|
|
447
|
+
Parameters.resourceGroupName,
|
|
448
|
+
Parameters.namespaceName,
|
|
449
|
+
Parameters.authorizationRuleName,
|
|
450
|
+
Parameters.hybridConnectionName
|
|
451
|
+
],
|
|
452
|
+
headerParameters: [Parameters.accept],
|
|
453
|
+
serializer
|
|
454
|
+
};
|
|
455
|
+
const getAuthorizationRuleOperationSpec = {
|
|
456
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}/hybridConnections/{hybridConnectionName}/authorizationRules/{authorizationRuleName}",
|
|
457
|
+
httpMethod: "GET",
|
|
458
|
+
responses: {
|
|
459
|
+
200: {
|
|
460
|
+
bodyMapper: Mappers.AuthorizationRule
|
|
461
|
+
},
|
|
462
|
+
default: {
|
|
463
|
+
bodyMapper: Mappers.ErrorResponse
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
queryParameters: [Parameters.apiVersion],
|
|
467
|
+
urlParameters: [
|
|
468
|
+
Parameters.$host,
|
|
469
|
+
Parameters.subscriptionId,
|
|
470
|
+
Parameters.resourceGroupName,
|
|
471
|
+
Parameters.namespaceName,
|
|
472
|
+
Parameters.authorizationRuleName,
|
|
473
|
+
Parameters.hybridConnectionName
|
|
474
|
+
],
|
|
475
|
+
headerParameters: [Parameters.accept],
|
|
476
|
+
serializer
|
|
477
|
+
};
|
|
478
|
+
const listKeysOperationSpec = {
|
|
479
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}/hybridConnections/{hybridConnectionName}/authorizationRules/{authorizationRuleName}/listKeys",
|
|
480
|
+
httpMethod: "POST",
|
|
481
|
+
responses: {
|
|
482
|
+
200: {
|
|
483
|
+
bodyMapper: Mappers.AccessKeys
|
|
484
|
+
},
|
|
485
|
+
default: {
|
|
486
|
+
bodyMapper: Mappers.ErrorResponse
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
queryParameters: [Parameters.apiVersion],
|
|
490
|
+
urlParameters: [
|
|
491
|
+
Parameters.$host,
|
|
492
|
+
Parameters.subscriptionId,
|
|
493
|
+
Parameters.resourceGroupName,
|
|
494
|
+
Parameters.namespaceName,
|
|
495
|
+
Parameters.authorizationRuleName,
|
|
496
|
+
Parameters.hybridConnectionName
|
|
497
|
+
],
|
|
498
|
+
headerParameters: [Parameters.accept],
|
|
499
|
+
serializer
|
|
500
|
+
};
|
|
501
|
+
const regenerateKeysOperationSpec = {
|
|
502
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}/hybridConnections/{hybridConnectionName}/authorizationRules/{authorizationRuleName}/regenerateKeys",
|
|
503
|
+
httpMethod: "POST",
|
|
504
|
+
responses: {
|
|
505
|
+
200: {
|
|
506
|
+
bodyMapper: Mappers.AccessKeys
|
|
507
|
+
},
|
|
508
|
+
default: {
|
|
509
|
+
bodyMapper: Mappers.ErrorResponse
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
requestBody: Parameters.parameters4,
|
|
513
|
+
queryParameters: [Parameters.apiVersion],
|
|
514
|
+
urlParameters: [
|
|
515
|
+
Parameters.$host,
|
|
516
|
+
Parameters.subscriptionId,
|
|
517
|
+
Parameters.resourceGroupName,
|
|
518
|
+
Parameters.namespaceName,
|
|
519
|
+
Parameters.authorizationRuleName,
|
|
520
|
+
Parameters.hybridConnectionName
|
|
521
|
+
],
|
|
522
|
+
headerParameters: [Parameters.accept, Parameters.contentType],
|
|
523
|
+
mediaType: "json",
|
|
524
|
+
serializer
|
|
525
|
+
};
|
|
526
|
+
const listByNamespaceNextOperationSpec = {
|
|
527
|
+
path: "{nextLink}",
|
|
528
|
+
httpMethod: "GET",
|
|
529
|
+
responses: {
|
|
530
|
+
200: {
|
|
531
|
+
bodyMapper: Mappers.HybridConnectionListResult
|
|
532
|
+
},
|
|
533
|
+
default: {
|
|
534
|
+
bodyMapper: Mappers.ErrorResponse
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
queryParameters: [Parameters.apiVersion],
|
|
538
|
+
urlParameters: [
|
|
539
|
+
Parameters.$host,
|
|
540
|
+
Parameters.nextLink,
|
|
541
|
+
Parameters.subscriptionId,
|
|
542
|
+
Parameters.resourceGroupName,
|
|
543
|
+
Parameters.namespaceName
|
|
544
|
+
],
|
|
545
|
+
headerParameters: [Parameters.accept],
|
|
546
|
+
serializer
|
|
547
|
+
};
|
|
548
|
+
const listAuthorizationRulesNextOperationSpec = {
|
|
549
|
+
path: "{nextLink}",
|
|
550
|
+
httpMethod: "GET",
|
|
551
|
+
responses: {
|
|
552
|
+
200: {
|
|
553
|
+
bodyMapper: Mappers.AuthorizationRuleListResult
|
|
554
|
+
},
|
|
555
|
+
default: {
|
|
556
|
+
bodyMapper: Mappers.ErrorResponse
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
queryParameters: [Parameters.apiVersion],
|
|
560
|
+
urlParameters: [
|
|
561
|
+
Parameters.$host,
|
|
562
|
+
Parameters.nextLink,
|
|
563
|
+
Parameters.subscriptionId,
|
|
564
|
+
Parameters.resourceGroupName,
|
|
565
|
+
Parameters.namespaceName,
|
|
566
|
+
Parameters.hybridConnectionName
|
|
567
|
+
],
|
|
568
|
+
headerParameters: [Parameters.accept],
|
|
569
|
+
serializer
|
|
570
|
+
};
|
|
571
|
+
//# sourceMappingURL=hybridConnections.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hybridConnections.js","sourceRoot":"","sources":["../../../src/operations/hybridConnections.ts"],"names":[],"mappings":"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"}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/operations/index.ts"],"names":[],"mappings":"AAQA,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,aAAa,CAAC"}
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
* license information.
|
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
|
3
|
+
* Licensed under the MIT License.
|
|
5
4
|
*
|
|
6
5
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
9
7
|
*/
|
|
10
8
|
export * from "./operations";
|
|
11
9
|
export * from "./namespaces";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,aAAa,CAAC"}
|