@azure/arm-relay 0.1.0 → 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} +21 -21
- package/README.md +98 -96
- 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 +71 -34
- 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 +611 -0
- package/{lib → src}/models/mappers.ts +366 -413
- package/src/models/parameters.ts +200 -0
- package/src/operations/hybridConnections.ts +780 -0
- package/{lib → src}/operations/index.ts +3 -5
- package/src/operations/namespaces.ts +1028 -0
- package/src/operations/operations.ts +137 -0
- package/src/operations/wCFRelays.ts +763 -0
- 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 -2593
- 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 -22
- package/esm/relayManagementClient.d.ts.map +0 -1
- package/esm/relayManagementClient.js +0 -37
- package/esm/relayManagementClient.js.map +0 -1
- package/esm/relayManagementClientContext.d.ts +0 -17
- package/esm/relayManagementClientContext.d.ts.map +0 -1
- package/esm/relayManagementClientContext.js +0 -57
- package/esm/relayManagementClientContext.js.map +0 -1
- package/lib/models/hybridConnectionsMappers.ts +0 -28
- package/lib/models/index.ts +0 -1304
- package/lib/models/namespacesMappers.ts +0 -30
- package/lib/models/operationsMappers.ts +0 -17
- package/lib/models/parameters.ts +0 -120
- package/lib/models/wCFRelaysMappers.ts +0 -29
- package/lib/operations/hybridConnections.ts +0 -799
- package/lib/operations/namespaces.ts +0 -977
- package/lib/operations/operations.ts +0 -123
- package/lib/operations/wCFRelays.ts +0 -800
- package/lib/relayManagementClient.ts +0 -49
- package/lib/relayManagementClientContext.ts +0 -63
package/esm/models/index.d.ts
DELETED
|
@@ -1,1231 +0,0 @@
|
|
|
1
|
-
import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
|
|
2
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
3
|
-
export { BaseResource, CloudError };
|
|
4
|
-
/**
|
|
5
|
-
* @interface
|
|
6
|
-
* An interface representing Resource.
|
|
7
|
-
* The resource definition.
|
|
8
|
-
*
|
|
9
|
-
* @extends BaseResource
|
|
10
|
-
*/
|
|
11
|
-
export interface Resource extends BaseResource {
|
|
12
|
-
/**
|
|
13
|
-
* @member {string} [id] Resource ID.
|
|
14
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
15
|
-
* the server.**
|
|
16
|
-
*/
|
|
17
|
-
readonly id?: string;
|
|
18
|
-
/**
|
|
19
|
-
* @member {string} [name] Resource name.
|
|
20
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
21
|
-
* the server.**
|
|
22
|
-
*/
|
|
23
|
-
readonly name?: string;
|
|
24
|
-
/**
|
|
25
|
-
* @member {string} [type] Resource type.
|
|
26
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
27
|
-
* the server.**
|
|
28
|
-
*/
|
|
29
|
-
readonly type?: string;
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* @interface
|
|
33
|
-
* An interface representing TrackedResource.
|
|
34
|
-
* Definition of resource.
|
|
35
|
-
*
|
|
36
|
-
* @extends Resource
|
|
37
|
-
*/
|
|
38
|
-
export interface TrackedResource extends Resource {
|
|
39
|
-
/**
|
|
40
|
-
* @member {string} location Resource location.
|
|
41
|
-
*/
|
|
42
|
-
location: string;
|
|
43
|
-
/**
|
|
44
|
-
* @member {{ [propertyName: string]: string }} [tags] Resource tags.
|
|
45
|
-
*/
|
|
46
|
-
tags?: {
|
|
47
|
-
[propertyName: string]: string;
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
/**
|
|
51
|
-
* @interface
|
|
52
|
-
* An interface representing ResourceNamespacePatch.
|
|
53
|
-
* Definition of resource.
|
|
54
|
-
*
|
|
55
|
-
* @extends Resource
|
|
56
|
-
*/
|
|
57
|
-
export interface ResourceNamespacePatch extends Resource {
|
|
58
|
-
/**
|
|
59
|
-
* @member {{ [propertyName: string]: string }} [tags] Resource tags.
|
|
60
|
-
*/
|
|
61
|
-
tags?: {
|
|
62
|
-
[propertyName: string]: string;
|
|
63
|
-
};
|
|
64
|
-
}
|
|
65
|
-
/**
|
|
66
|
-
* @interface
|
|
67
|
-
* An interface representing HybridConnection.
|
|
68
|
-
* Description of hybrid connection resource.
|
|
69
|
-
*
|
|
70
|
-
* @extends Resource
|
|
71
|
-
*/
|
|
72
|
-
export interface HybridConnection extends Resource {
|
|
73
|
-
/**
|
|
74
|
-
* @member {Date} [createdAt] The time the hybrid connection was created.
|
|
75
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
76
|
-
* the server.**
|
|
77
|
-
*/
|
|
78
|
-
readonly createdAt?: Date;
|
|
79
|
-
/**
|
|
80
|
-
* @member {Date} [updatedAt] The time the namespace was updated.
|
|
81
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
82
|
-
* the server.**
|
|
83
|
-
*/
|
|
84
|
-
readonly updatedAt?: Date;
|
|
85
|
-
/**
|
|
86
|
-
* @member {number} [listenerCount] The number of listeners for this hybrid
|
|
87
|
-
* connection. Note that min : 1 and max:25 are supported.
|
|
88
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
89
|
-
* the server.**
|
|
90
|
-
*/
|
|
91
|
-
readonly listenerCount?: number;
|
|
92
|
-
/**
|
|
93
|
-
* @member {boolean} [requiresClientAuthorization] Returns true if client
|
|
94
|
-
* authorization is needed for this hybrid connection; otherwise, false.
|
|
95
|
-
*/
|
|
96
|
-
requiresClientAuthorization?: boolean;
|
|
97
|
-
/**
|
|
98
|
-
* @member {string} [userMetadata] The usermetadata is a placeholder to store
|
|
99
|
-
* user-defined string data for the hybrid connection endpoint. For example,
|
|
100
|
-
* it can be used to store descriptive data, such as a list of teams and
|
|
101
|
-
* their contact information. Also, user-defined configuration settings can
|
|
102
|
-
* be stored.
|
|
103
|
-
*/
|
|
104
|
-
userMetadata?: string;
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* @interface
|
|
108
|
-
* An interface representing WcfRelay.
|
|
109
|
-
* Description of the WCF relay resource.
|
|
110
|
-
*
|
|
111
|
-
* @extends Resource
|
|
112
|
-
*/
|
|
113
|
-
export interface WcfRelay extends Resource {
|
|
114
|
-
/**
|
|
115
|
-
* @member {boolean} [isDynamic] Returns true if the relay is dynamic;
|
|
116
|
-
* otherwise, false.
|
|
117
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
118
|
-
* the server.**
|
|
119
|
-
*/
|
|
120
|
-
readonly isDynamic?: boolean;
|
|
121
|
-
/**
|
|
122
|
-
* @member {Date} [createdAt] The time the WCF relay was created.
|
|
123
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
124
|
-
* the server.**
|
|
125
|
-
*/
|
|
126
|
-
readonly createdAt?: Date;
|
|
127
|
-
/**
|
|
128
|
-
* @member {Date} [updatedAt] The time the namespace was updated.
|
|
129
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
130
|
-
* the server.**
|
|
131
|
-
*/
|
|
132
|
-
readonly updatedAt?: Date;
|
|
133
|
-
/**
|
|
134
|
-
* @member {number} [listenerCount] The number of listeners for this relay.
|
|
135
|
-
* Note that min :1 and max:25 are supported.
|
|
136
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
137
|
-
* the server.**
|
|
138
|
-
*/
|
|
139
|
-
readonly listenerCount?: number;
|
|
140
|
-
/**
|
|
141
|
-
* @member {Relaytype} [relayType] WCF relay type. Possible values include:
|
|
142
|
-
* 'NetTcp', 'Http'
|
|
143
|
-
*/
|
|
144
|
-
relayType?: Relaytype;
|
|
145
|
-
/**
|
|
146
|
-
* @member {boolean} [requiresClientAuthorization] Returns true if client
|
|
147
|
-
* authorization is needed for this relay; otherwise, false.
|
|
148
|
-
*/
|
|
149
|
-
requiresClientAuthorization?: boolean;
|
|
150
|
-
/**
|
|
151
|
-
* @member {boolean} [requiresTransportSecurity] Returns true if transport
|
|
152
|
-
* security is needed for this relay; otherwise, false.
|
|
153
|
-
*/
|
|
154
|
-
requiresTransportSecurity?: boolean;
|
|
155
|
-
/**
|
|
156
|
-
* @member {string} [userMetadata] The usermetadata is a placeholder to store
|
|
157
|
-
* user-defined string data for the WCF Relay endpoint. For example, it can
|
|
158
|
-
* be used to store descriptive data, such as list of teams and their contact
|
|
159
|
-
* information. Also, user-defined configuration settings can be stored.
|
|
160
|
-
*/
|
|
161
|
-
userMetadata?: string;
|
|
162
|
-
}
|
|
163
|
-
/**
|
|
164
|
-
* @interface
|
|
165
|
-
* An interface representing Sku.
|
|
166
|
-
* SKU of the namespace.
|
|
167
|
-
*
|
|
168
|
-
*/
|
|
169
|
-
export interface Sku {
|
|
170
|
-
/**
|
|
171
|
-
* @member {SkuTier} [tier] The tier of this SKU. Possible values include:
|
|
172
|
-
* 'Standard'
|
|
173
|
-
*/
|
|
174
|
-
tier?: SkuTier;
|
|
175
|
-
}
|
|
176
|
-
/**
|
|
177
|
-
* @interface
|
|
178
|
-
* An interface representing RelayNamespace.
|
|
179
|
-
* Description of a namespace resource.
|
|
180
|
-
*
|
|
181
|
-
* @extends TrackedResource
|
|
182
|
-
*/
|
|
183
|
-
export interface RelayNamespace extends TrackedResource {
|
|
184
|
-
/**
|
|
185
|
-
* @member {Sku} [sku] SKU of the namespace.
|
|
186
|
-
*/
|
|
187
|
-
sku?: Sku;
|
|
188
|
-
/**
|
|
189
|
-
* @member {ProvisioningStateEnum} [provisioningState] Possible values
|
|
190
|
-
* include: 'Created', 'Succeeded', 'Deleted', 'Failed', 'Updating',
|
|
191
|
-
* 'Unknown'
|
|
192
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
193
|
-
* the server.**
|
|
194
|
-
*/
|
|
195
|
-
readonly provisioningState?: ProvisioningStateEnum;
|
|
196
|
-
/**
|
|
197
|
-
* @member {Date} [createdAt] The time the namespace was created.
|
|
198
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
199
|
-
* the server.**
|
|
200
|
-
*/
|
|
201
|
-
readonly createdAt?: Date;
|
|
202
|
-
/**
|
|
203
|
-
* @member {Date} [updatedAt] The time the namespace was updated.
|
|
204
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
205
|
-
* the server.**
|
|
206
|
-
*/
|
|
207
|
-
readonly updatedAt?: Date;
|
|
208
|
-
/**
|
|
209
|
-
* @member {string} [serviceBusEndpoint] Endpoint you can use to perform
|
|
210
|
-
* Service Bus operations.
|
|
211
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
212
|
-
* the server.**
|
|
213
|
-
*/
|
|
214
|
-
readonly serviceBusEndpoint?: string;
|
|
215
|
-
/**
|
|
216
|
-
* @member {string} [metricId] Identifier for Azure Insights metrics.
|
|
217
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
218
|
-
* the server.**
|
|
219
|
-
*/
|
|
220
|
-
readonly metricId?: string;
|
|
221
|
-
}
|
|
222
|
-
/**
|
|
223
|
-
* @interface
|
|
224
|
-
* An interface representing RelayUpdateParameters.
|
|
225
|
-
* Description of a namespace resource.
|
|
226
|
-
*
|
|
227
|
-
* @extends ResourceNamespacePatch
|
|
228
|
-
*/
|
|
229
|
-
export interface RelayUpdateParameters extends ResourceNamespacePatch {
|
|
230
|
-
/**
|
|
231
|
-
* @member {Sku} [sku] SKU of the namespace.
|
|
232
|
-
*/
|
|
233
|
-
sku?: Sku;
|
|
234
|
-
/**
|
|
235
|
-
* @member {ProvisioningStateEnum} [provisioningState] Possible values
|
|
236
|
-
* include: 'Created', 'Succeeded', 'Deleted', 'Failed', 'Updating',
|
|
237
|
-
* 'Unknown'
|
|
238
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
239
|
-
* the server.**
|
|
240
|
-
*/
|
|
241
|
-
readonly provisioningState?: ProvisioningStateEnum;
|
|
242
|
-
/**
|
|
243
|
-
* @member {Date} [createdAt] The time the namespace was created.
|
|
244
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
245
|
-
* the server.**
|
|
246
|
-
*/
|
|
247
|
-
readonly createdAt?: Date;
|
|
248
|
-
/**
|
|
249
|
-
* @member {Date} [updatedAt] The time the namespace was updated.
|
|
250
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
251
|
-
* the server.**
|
|
252
|
-
*/
|
|
253
|
-
readonly updatedAt?: Date;
|
|
254
|
-
/**
|
|
255
|
-
* @member {string} [serviceBusEndpoint] Endpoint you can use to perform
|
|
256
|
-
* Service Bus operations.
|
|
257
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
258
|
-
* the server.**
|
|
259
|
-
*/
|
|
260
|
-
readonly serviceBusEndpoint?: string;
|
|
261
|
-
/**
|
|
262
|
-
* @member {string} [metricId] Identifier for Azure Insights metrics.
|
|
263
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
264
|
-
* the server.**
|
|
265
|
-
*/
|
|
266
|
-
readonly metricId?: string;
|
|
267
|
-
}
|
|
268
|
-
/**
|
|
269
|
-
* @interface
|
|
270
|
-
* An interface representing AuthorizationRule.
|
|
271
|
-
* Description of a namespace authorization rule.
|
|
272
|
-
*
|
|
273
|
-
* @extends Resource
|
|
274
|
-
*/
|
|
275
|
-
export interface AuthorizationRule extends Resource {
|
|
276
|
-
/**
|
|
277
|
-
* @member {AccessRights[]} rights The rights associated with the rule.
|
|
278
|
-
*/
|
|
279
|
-
rights: AccessRights[];
|
|
280
|
-
}
|
|
281
|
-
/**
|
|
282
|
-
* @interface
|
|
283
|
-
* An interface representing AccessKeys.
|
|
284
|
-
* Namespace/Relay Connection String
|
|
285
|
-
*
|
|
286
|
-
*/
|
|
287
|
-
export interface AccessKeys {
|
|
288
|
-
/**
|
|
289
|
-
* @member {string} [primaryConnectionString] Primary connection string of
|
|
290
|
-
* the created namespace authorization rule.
|
|
291
|
-
*/
|
|
292
|
-
primaryConnectionString?: string;
|
|
293
|
-
/**
|
|
294
|
-
* @member {string} [secondaryConnectionString] Secondary connection string
|
|
295
|
-
* of the created namespace authorization rule.
|
|
296
|
-
*/
|
|
297
|
-
secondaryConnectionString?: string;
|
|
298
|
-
/**
|
|
299
|
-
* @member {string} [primaryKey] A base64-encoded 256-bit primary key for
|
|
300
|
-
* signing and validating the SAS token.
|
|
301
|
-
*/
|
|
302
|
-
primaryKey?: string;
|
|
303
|
-
/**
|
|
304
|
-
* @member {string} [secondaryKey] A base64-encoded 256-bit secondary key for
|
|
305
|
-
* signing and validating the SAS token.
|
|
306
|
-
*/
|
|
307
|
-
secondaryKey?: string;
|
|
308
|
-
/**
|
|
309
|
-
* @member {string} [keyName] A string that describes the authorization rule.
|
|
310
|
-
*/
|
|
311
|
-
keyName?: string;
|
|
312
|
-
}
|
|
313
|
-
/**
|
|
314
|
-
* @interface
|
|
315
|
-
* An interface representing RegenerateAccessKeyParameters.
|
|
316
|
-
* Parameters supplied to the regenerate authorization rule operation,
|
|
317
|
-
* specifies which key neeeds to be reset.
|
|
318
|
-
*
|
|
319
|
-
*/
|
|
320
|
-
export interface RegenerateAccessKeyParameters {
|
|
321
|
-
/**
|
|
322
|
-
* @member {KeyType} keyType The access key to regenerate. Possible values
|
|
323
|
-
* include: 'PrimaryKey', 'SecondaryKey'
|
|
324
|
-
*/
|
|
325
|
-
keyType: KeyType;
|
|
326
|
-
/**
|
|
327
|
-
* @member {string} [key] Optional. If the key value is provided, this is set
|
|
328
|
-
* to key type, or autogenerated key value set for key type.
|
|
329
|
-
*/
|
|
330
|
-
key?: string;
|
|
331
|
-
}
|
|
332
|
-
/**
|
|
333
|
-
* @interface
|
|
334
|
-
* An interface representing CheckNameAvailability.
|
|
335
|
-
* Description of the check name availability request properties.
|
|
336
|
-
*
|
|
337
|
-
*/
|
|
338
|
-
export interface CheckNameAvailability {
|
|
339
|
-
/**
|
|
340
|
-
* @member {string} name The namespace name to check for availability. The
|
|
341
|
-
* namespace name can contain only letters, numbers, and hyphens. The
|
|
342
|
-
* namespace must start with a letter, and it must end with a letter or
|
|
343
|
-
* number.
|
|
344
|
-
*/
|
|
345
|
-
name: string;
|
|
346
|
-
}
|
|
347
|
-
/**
|
|
348
|
-
* @interface
|
|
349
|
-
* An interface representing CheckNameAvailabilityResult.
|
|
350
|
-
* Description of the check name availability request properties.
|
|
351
|
-
*
|
|
352
|
-
*/
|
|
353
|
-
export interface CheckNameAvailabilityResult {
|
|
354
|
-
/**
|
|
355
|
-
* @member {string} [message] The detailed info regarding the reason
|
|
356
|
-
* associated with the namespace.
|
|
357
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
358
|
-
* the server.**
|
|
359
|
-
*/
|
|
360
|
-
readonly message?: string;
|
|
361
|
-
/**
|
|
362
|
-
* @member {boolean} [nameAvailable] Value indicating namespace is available.
|
|
363
|
-
* Returns true if the namespace is available; otherwise, false.
|
|
364
|
-
*/
|
|
365
|
-
nameAvailable?: boolean;
|
|
366
|
-
/**
|
|
367
|
-
* @member {UnavailableReason} [reason] The reason for unavailability of a
|
|
368
|
-
* namespace. Possible values include: 'None', 'InvalidName',
|
|
369
|
-
* 'SubscriptionIsDisabled', 'NameInUse', 'NameInLockdown',
|
|
370
|
-
* 'TooManyNamespaceInCurrentSubscription'
|
|
371
|
-
*/
|
|
372
|
-
reason?: UnavailableReason;
|
|
373
|
-
}
|
|
374
|
-
/**
|
|
375
|
-
* @interface
|
|
376
|
-
* An interface representing OperationDisplay.
|
|
377
|
-
* The object that represents the operation.
|
|
378
|
-
*
|
|
379
|
-
*/
|
|
380
|
-
export interface OperationDisplay {
|
|
381
|
-
/**
|
|
382
|
-
* @member {string} [provider] Service provider: Relay.
|
|
383
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
384
|
-
* the server.**
|
|
385
|
-
*/
|
|
386
|
-
readonly provider?: string;
|
|
387
|
-
/**
|
|
388
|
-
* @member {string} [resource] Resource on which the operation is performed:
|
|
389
|
-
* Invoice, etc.
|
|
390
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
391
|
-
* the server.**
|
|
392
|
-
*/
|
|
393
|
-
readonly resource?: string;
|
|
394
|
-
/**
|
|
395
|
-
* @member {string} [operation] Operation type: Read, write, delete, etc.
|
|
396
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
397
|
-
* the server.**
|
|
398
|
-
*/
|
|
399
|
-
readonly operation?: string;
|
|
400
|
-
}
|
|
401
|
-
/**
|
|
402
|
-
* @interface
|
|
403
|
-
* An interface representing Operation.
|
|
404
|
-
* A Relay REST API operation.
|
|
405
|
-
*
|
|
406
|
-
*/
|
|
407
|
-
export interface Operation {
|
|
408
|
-
/**
|
|
409
|
-
* @member {string} [name] Operation name: {provider}/{resource}/{operation}
|
|
410
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
411
|
-
* the server.**
|
|
412
|
-
*/
|
|
413
|
-
readonly name?: string;
|
|
414
|
-
/**
|
|
415
|
-
* @member {OperationDisplay} [display] The object that represents the
|
|
416
|
-
* operation.
|
|
417
|
-
*/
|
|
418
|
-
display?: OperationDisplay;
|
|
419
|
-
}
|
|
420
|
-
/**
|
|
421
|
-
* @interface
|
|
422
|
-
* An interface representing ErrorResponse.
|
|
423
|
-
* Error reponse indicates Relay service is not able to process the incoming
|
|
424
|
-
* request. The reason is provided in the error message.
|
|
425
|
-
*
|
|
426
|
-
*/
|
|
427
|
-
export interface ErrorResponse {
|
|
428
|
-
/**
|
|
429
|
-
* @member {string} [code] Error code.
|
|
430
|
-
*/
|
|
431
|
-
code?: string;
|
|
432
|
-
/**
|
|
433
|
-
* @member {string} [message] Error message indicating why the operation
|
|
434
|
-
* failed.
|
|
435
|
-
*/
|
|
436
|
-
message?: string;
|
|
437
|
-
}
|
|
438
|
-
/**
|
|
439
|
-
* @interface
|
|
440
|
-
* An interface representing RelayManagementClientOptions.
|
|
441
|
-
* @extends AzureServiceClientOptions
|
|
442
|
-
*/
|
|
443
|
-
export interface RelayManagementClientOptions extends AzureServiceClientOptions {
|
|
444
|
-
/**
|
|
445
|
-
* @member {string} [baseUri]
|
|
446
|
-
*/
|
|
447
|
-
baseUri?: string;
|
|
448
|
-
}
|
|
449
|
-
/**
|
|
450
|
-
* @interface
|
|
451
|
-
* An interface representing the OperationListResult.
|
|
452
|
-
* Result of the request to list Relay operations. It contains a list of
|
|
453
|
-
* operations and a URL link to get the next set of results.
|
|
454
|
-
*
|
|
455
|
-
* @extends Array<Operation>
|
|
456
|
-
*/
|
|
457
|
-
export interface OperationListResult extends Array<Operation> {
|
|
458
|
-
/**
|
|
459
|
-
* @member {string} [nextLink] URL to get the next set of operation list
|
|
460
|
-
* results if there are any.
|
|
461
|
-
* **NOTE: This property will not be serialized. It can only be populated by
|
|
462
|
-
* the server.**
|
|
463
|
-
*/
|
|
464
|
-
readonly nextLink?: string;
|
|
465
|
-
}
|
|
466
|
-
/**
|
|
467
|
-
* @interface
|
|
468
|
-
* An interface representing the RelayNamespaceListResult.
|
|
469
|
-
* The response from the list namespace operation.
|
|
470
|
-
*
|
|
471
|
-
* @extends Array<RelayNamespace>
|
|
472
|
-
*/
|
|
473
|
-
export interface RelayNamespaceListResult extends Array<RelayNamespace> {
|
|
474
|
-
/**
|
|
475
|
-
* @member {string} [nextLink] Link to the next set of results. Not empty if
|
|
476
|
-
* value contains incomplete list of namespaces.
|
|
477
|
-
*/
|
|
478
|
-
nextLink?: string;
|
|
479
|
-
}
|
|
480
|
-
/**
|
|
481
|
-
* @interface
|
|
482
|
-
* An interface representing the AuthorizationRuleListResult.
|
|
483
|
-
* The response from the list namespace operation.
|
|
484
|
-
*
|
|
485
|
-
* @extends Array<AuthorizationRule>
|
|
486
|
-
*/
|
|
487
|
-
export interface AuthorizationRuleListResult extends Array<AuthorizationRule> {
|
|
488
|
-
/**
|
|
489
|
-
* @member {string} [nextLink] Link to the next set of results. Not empty if
|
|
490
|
-
* value contains incomplete list of authorization rules.
|
|
491
|
-
*/
|
|
492
|
-
nextLink?: string;
|
|
493
|
-
}
|
|
494
|
-
/**
|
|
495
|
-
* @interface
|
|
496
|
-
* An interface representing the HybridConnectionListResult.
|
|
497
|
-
* The response of the list hybrid connection operation.
|
|
498
|
-
*
|
|
499
|
-
* @extends Array<HybridConnection>
|
|
500
|
-
*/
|
|
501
|
-
export interface HybridConnectionListResult extends Array<HybridConnection> {
|
|
502
|
-
/**
|
|
503
|
-
* @member {string} [nextLink] Link to the next set of results. Not empty if
|
|
504
|
-
* value contains incomplete list hybrid connection operation.
|
|
505
|
-
*/
|
|
506
|
-
nextLink?: string;
|
|
507
|
-
}
|
|
508
|
-
/**
|
|
509
|
-
* @interface
|
|
510
|
-
* An interface representing the WcfRelaysListResult.
|
|
511
|
-
* The response of the list WCF relay operation.
|
|
512
|
-
*
|
|
513
|
-
* @extends Array<WcfRelay>
|
|
514
|
-
*/
|
|
515
|
-
export interface WcfRelaysListResult extends Array<WcfRelay> {
|
|
516
|
-
/**
|
|
517
|
-
* @member {string} [nextLink] Link to the next set of results. Not empty if
|
|
518
|
-
* value contains incomplete list of WCF relays.
|
|
519
|
-
*/
|
|
520
|
-
nextLink?: string;
|
|
521
|
-
}
|
|
522
|
-
/**
|
|
523
|
-
* Defines values for Relaytype.
|
|
524
|
-
* Possible values include: 'NetTcp', 'Http'
|
|
525
|
-
* @readonly
|
|
526
|
-
* @enum {string}
|
|
527
|
-
*/
|
|
528
|
-
export declare type Relaytype = 'NetTcp' | 'Http';
|
|
529
|
-
/**
|
|
530
|
-
* Defines values for SkuTier.
|
|
531
|
-
* Possible values include: 'Standard'
|
|
532
|
-
* @readonly
|
|
533
|
-
* @enum {string}
|
|
534
|
-
*/
|
|
535
|
-
export declare type SkuTier = 'Standard';
|
|
536
|
-
/**
|
|
537
|
-
* Defines values for ProvisioningStateEnum.
|
|
538
|
-
* Possible values include: 'Created', 'Succeeded', 'Deleted', 'Failed', 'Updating', 'Unknown'
|
|
539
|
-
* @readonly
|
|
540
|
-
* @enum {string}
|
|
541
|
-
*/
|
|
542
|
-
export declare type ProvisioningStateEnum = 'Created' | 'Succeeded' | 'Deleted' | 'Failed' | 'Updating' | 'Unknown';
|
|
543
|
-
/**
|
|
544
|
-
* Defines values for AccessRights.
|
|
545
|
-
* Possible values include: 'Manage', 'Send', 'Listen'
|
|
546
|
-
* @readonly
|
|
547
|
-
* @enum {string}
|
|
548
|
-
*/
|
|
549
|
-
export declare type AccessRights = 'Manage' | 'Send' | 'Listen';
|
|
550
|
-
/**
|
|
551
|
-
* Defines values for KeyType.
|
|
552
|
-
* Possible values include: 'PrimaryKey', 'SecondaryKey'
|
|
553
|
-
* @readonly
|
|
554
|
-
* @enum {string}
|
|
555
|
-
*/
|
|
556
|
-
export declare type KeyType = 'PrimaryKey' | 'SecondaryKey';
|
|
557
|
-
/**
|
|
558
|
-
* Defines values for UnavailableReason.
|
|
559
|
-
* Possible values include: 'None', 'InvalidName', 'SubscriptionIsDisabled', 'NameInUse',
|
|
560
|
-
* 'NameInLockdown', 'TooManyNamespaceInCurrentSubscription'
|
|
561
|
-
* @readonly
|
|
562
|
-
* @enum {string}
|
|
563
|
-
*/
|
|
564
|
-
export declare type UnavailableReason = 'None' | 'InvalidName' | 'SubscriptionIsDisabled' | 'NameInUse' | 'NameInLockdown' | 'TooManyNamespaceInCurrentSubscription';
|
|
565
|
-
/**
|
|
566
|
-
* Contains response data for the list operation.
|
|
567
|
-
*/
|
|
568
|
-
export declare type OperationsListResponse = OperationListResult & {
|
|
569
|
-
/**
|
|
570
|
-
* The underlying HTTP response.
|
|
571
|
-
*/
|
|
572
|
-
_response: msRest.HttpResponse & {
|
|
573
|
-
/**
|
|
574
|
-
* The response body as text (string format)
|
|
575
|
-
*/
|
|
576
|
-
bodyAsText: string;
|
|
577
|
-
/**
|
|
578
|
-
* The response body as parsed JSON or XML
|
|
579
|
-
*/
|
|
580
|
-
parsedBody: OperationListResult;
|
|
581
|
-
};
|
|
582
|
-
};
|
|
583
|
-
/**
|
|
584
|
-
* Contains response data for the listNext operation.
|
|
585
|
-
*/
|
|
586
|
-
export declare type OperationsListNextResponse = OperationListResult & {
|
|
587
|
-
/**
|
|
588
|
-
* The underlying HTTP response.
|
|
589
|
-
*/
|
|
590
|
-
_response: msRest.HttpResponse & {
|
|
591
|
-
/**
|
|
592
|
-
* The response body as text (string format)
|
|
593
|
-
*/
|
|
594
|
-
bodyAsText: string;
|
|
595
|
-
/**
|
|
596
|
-
* The response body as parsed JSON or XML
|
|
597
|
-
*/
|
|
598
|
-
parsedBody: OperationListResult;
|
|
599
|
-
};
|
|
600
|
-
};
|
|
601
|
-
/**
|
|
602
|
-
* Contains response data for the checkNameAvailabilityMethod operation.
|
|
603
|
-
*/
|
|
604
|
-
export declare type NamespacesCheckNameAvailabilityMethodResponse = CheckNameAvailabilityResult & {
|
|
605
|
-
/**
|
|
606
|
-
* The underlying HTTP response.
|
|
607
|
-
*/
|
|
608
|
-
_response: msRest.HttpResponse & {
|
|
609
|
-
/**
|
|
610
|
-
* The response body as text (string format)
|
|
611
|
-
*/
|
|
612
|
-
bodyAsText: string;
|
|
613
|
-
/**
|
|
614
|
-
* The response body as parsed JSON or XML
|
|
615
|
-
*/
|
|
616
|
-
parsedBody: CheckNameAvailabilityResult;
|
|
617
|
-
};
|
|
618
|
-
};
|
|
619
|
-
/**
|
|
620
|
-
* Contains response data for the list operation.
|
|
621
|
-
*/
|
|
622
|
-
export declare type NamespacesListResponse = RelayNamespaceListResult & {
|
|
623
|
-
/**
|
|
624
|
-
* The underlying HTTP response.
|
|
625
|
-
*/
|
|
626
|
-
_response: msRest.HttpResponse & {
|
|
627
|
-
/**
|
|
628
|
-
* The response body as text (string format)
|
|
629
|
-
*/
|
|
630
|
-
bodyAsText: string;
|
|
631
|
-
/**
|
|
632
|
-
* The response body as parsed JSON or XML
|
|
633
|
-
*/
|
|
634
|
-
parsedBody: RelayNamespaceListResult;
|
|
635
|
-
};
|
|
636
|
-
};
|
|
637
|
-
/**
|
|
638
|
-
* Contains response data for the listByResourceGroup operation.
|
|
639
|
-
*/
|
|
640
|
-
export declare type NamespacesListByResourceGroupResponse = RelayNamespaceListResult & {
|
|
641
|
-
/**
|
|
642
|
-
* The underlying HTTP response.
|
|
643
|
-
*/
|
|
644
|
-
_response: msRest.HttpResponse & {
|
|
645
|
-
/**
|
|
646
|
-
* The response body as text (string format)
|
|
647
|
-
*/
|
|
648
|
-
bodyAsText: string;
|
|
649
|
-
/**
|
|
650
|
-
* The response body as parsed JSON or XML
|
|
651
|
-
*/
|
|
652
|
-
parsedBody: RelayNamespaceListResult;
|
|
653
|
-
};
|
|
654
|
-
};
|
|
655
|
-
/**
|
|
656
|
-
* Contains response data for the createOrUpdate operation.
|
|
657
|
-
*/
|
|
658
|
-
export declare type NamespacesCreateOrUpdateResponse = RelayNamespace & {
|
|
659
|
-
/**
|
|
660
|
-
* The underlying HTTP response.
|
|
661
|
-
*/
|
|
662
|
-
_response: msRest.HttpResponse & {
|
|
663
|
-
/**
|
|
664
|
-
* The response body as text (string format)
|
|
665
|
-
*/
|
|
666
|
-
bodyAsText: string;
|
|
667
|
-
/**
|
|
668
|
-
* The response body as parsed JSON or XML
|
|
669
|
-
*/
|
|
670
|
-
parsedBody: RelayNamespace;
|
|
671
|
-
};
|
|
672
|
-
};
|
|
673
|
-
/**
|
|
674
|
-
* Contains response data for the get operation.
|
|
675
|
-
*/
|
|
676
|
-
export declare type NamespacesGetResponse = RelayNamespace & {
|
|
677
|
-
/**
|
|
678
|
-
* The underlying HTTP response.
|
|
679
|
-
*/
|
|
680
|
-
_response: msRest.HttpResponse & {
|
|
681
|
-
/**
|
|
682
|
-
* The response body as text (string format)
|
|
683
|
-
*/
|
|
684
|
-
bodyAsText: string;
|
|
685
|
-
/**
|
|
686
|
-
* The response body as parsed JSON or XML
|
|
687
|
-
*/
|
|
688
|
-
parsedBody: RelayNamespace;
|
|
689
|
-
};
|
|
690
|
-
};
|
|
691
|
-
/**
|
|
692
|
-
* Contains response data for the update operation.
|
|
693
|
-
*/
|
|
694
|
-
export declare type NamespacesUpdateResponse = RelayNamespace & {
|
|
695
|
-
/**
|
|
696
|
-
* The underlying HTTP response.
|
|
697
|
-
*/
|
|
698
|
-
_response: msRest.HttpResponse & {
|
|
699
|
-
/**
|
|
700
|
-
* The response body as text (string format)
|
|
701
|
-
*/
|
|
702
|
-
bodyAsText: string;
|
|
703
|
-
/**
|
|
704
|
-
* The response body as parsed JSON or XML
|
|
705
|
-
*/
|
|
706
|
-
parsedBody: RelayNamespace;
|
|
707
|
-
};
|
|
708
|
-
};
|
|
709
|
-
/**
|
|
710
|
-
* Contains response data for the listAuthorizationRules operation.
|
|
711
|
-
*/
|
|
712
|
-
export declare type NamespacesListAuthorizationRulesResponse = AuthorizationRuleListResult & {
|
|
713
|
-
/**
|
|
714
|
-
* The underlying HTTP response.
|
|
715
|
-
*/
|
|
716
|
-
_response: msRest.HttpResponse & {
|
|
717
|
-
/**
|
|
718
|
-
* The response body as text (string format)
|
|
719
|
-
*/
|
|
720
|
-
bodyAsText: string;
|
|
721
|
-
/**
|
|
722
|
-
* The response body as parsed JSON or XML
|
|
723
|
-
*/
|
|
724
|
-
parsedBody: AuthorizationRuleListResult;
|
|
725
|
-
};
|
|
726
|
-
};
|
|
727
|
-
/**
|
|
728
|
-
* Contains response data for the createOrUpdateAuthorizationRule operation.
|
|
729
|
-
*/
|
|
730
|
-
export declare type NamespacesCreateOrUpdateAuthorizationRuleResponse = AuthorizationRule & {
|
|
731
|
-
/**
|
|
732
|
-
* The underlying HTTP response.
|
|
733
|
-
*/
|
|
734
|
-
_response: msRest.HttpResponse & {
|
|
735
|
-
/**
|
|
736
|
-
* The response body as text (string format)
|
|
737
|
-
*/
|
|
738
|
-
bodyAsText: string;
|
|
739
|
-
/**
|
|
740
|
-
* The response body as parsed JSON or XML
|
|
741
|
-
*/
|
|
742
|
-
parsedBody: AuthorizationRule;
|
|
743
|
-
};
|
|
744
|
-
};
|
|
745
|
-
/**
|
|
746
|
-
* Contains response data for the getAuthorizationRule operation.
|
|
747
|
-
*/
|
|
748
|
-
export declare type NamespacesGetAuthorizationRuleResponse = AuthorizationRule & {
|
|
749
|
-
/**
|
|
750
|
-
* The underlying HTTP response.
|
|
751
|
-
*/
|
|
752
|
-
_response: msRest.HttpResponse & {
|
|
753
|
-
/**
|
|
754
|
-
* The response body as text (string format)
|
|
755
|
-
*/
|
|
756
|
-
bodyAsText: string;
|
|
757
|
-
/**
|
|
758
|
-
* The response body as parsed JSON or XML
|
|
759
|
-
*/
|
|
760
|
-
parsedBody: AuthorizationRule;
|
|
761
|
-
};
|
|
762
|
-
};
|
|
763
|
-
/**
|
|
764
|
-
* Contains response data for the listKeys operation.
|
|
765
|
-
*/
|
|
766
|
-
export declare type NamespacesListKeysResponse = AccessKeys & {
|
|
767
|
-
/**
|
|
768
|
-
* The underlying HTTP response.
|
|
769
|
-
*/
|
|
770
|
-
_response: msRest.HttpResponse & {
|
|
771
|
-
/**
|
|
772
|
-
* The response body as text (string format)
|
|
773
|
-
*/
|
|
774
|
-
bodyAsText: string;
|
|
775
|
-
/**
|
|
776
|
-
* The response body as parsed JSON or XML
|
|
777
|
-
*/
|
|
778
|
-
parsedBody: AccessKeys;
|
|
779
|
-
};
|
|
780
|
-
};
|
|
781
|
-
/**
|
|
782
|
-
* Contains response data for the regenerateKeys operation.
|
|
783
|
-
*/
|
|
784
|
-
export declare type NamespacesRegenerateKeysResponse = AccessKeys & {
|
|
785
|
-
/**
|
|
786
|
-
* The underlying HTTP response.
|
|
787
|
-
*/
|
|
788
|
-
_response: msRest.HttpResponse & {
|
|
789
|
-
/**
|
|
790
|
-
* The response body as text (string format)
|
|
791
|
-
*/
|
|
792
|
-
bodyAsText: string;
|
|
793
|
-
/**
|
|
794
|
-
* The response body as parsed JSON or XML
|
|
795
|
-
*/
|
|
796
|
-
parsedBody: AccessKeys;
|
|
797
|
-
};
|
|
798
|
-
};
|
|
799
|
-
/**
|
|
800
|
-
* Contains response data for the beginCreateOrUpdate operation.
|
|
801
|
-
*/
|
|
802
|
-
export declare type NamespacesBeginCreateOrUpdateResponse = RelayNamespace & {
|
|
803
|
-
/**
|
|
804
|
-
* The underlying HTTP response.
|
|
805
|
-
*/
|
|
806
|
-
_response: msRest.HttpResponse & {
|
|
807
|
-
/**
|
|
808
|
-
* The response body as text (string format)
|
|
809
|
-
*/
|
|
810
|
-
bodyAsText: string;
|
|
811
|
-
/**
|
|
812
|
-
* The response body as parsed JSON or XML
|
|
813
|
-
*/
|
|
814
|
-
parsedBody: RelayNamespace;
|
|
815
|
-
};
|
|
816
|
-
};
|
|
817
|
-
/**
|
|
818
|
-
* Contains response data for the listNext operation.
|
|
819
|
-
*/
|
|
820
|
-
export declare type NamespacesListNextResponse = RelayNamespaceListResult & {
|
|
821
|
-
/**
|
|
822
|
-
* The underlying HTTP response.
|
|
823
|
-
*/
|
|
824
|
-
_response: msRest.HttpResponse & {
|
|
825
|
-
/**
|
|
826
|
-
* The response body as text (string format)
|
|
827
|
-
*/
|
|
828
|
-
bodyAsText: string;
|
|
829
|
-
/**
|
|
830
|
-
* The response body as parsed JSON or XML
|
|
831
|
-
*/
|
|
832
|
-
parsedBody: RelayNamespaceListResult;
|
|
833
|
-
};
|
|
834
|
-
};
|
|
835
|
-
/**
|
|
836
|
-
* Contains response data for the listByResourceGroupNext operation.
|
|
837
|
-
*/
|
|
838
|
-
export declare type NamespacesListByResourceGroupNextResponse = RelayNamespaceListResult & {
|
|
839
|
-
/**
|
|
840
|
-
* The underlying HTTP response.
|
|
841
|
-
*/
|
|
842
|
-
_response: msRest.HttpResponse & {
|
|
843
|
-
/**
|
|
844
|
-
* The response body as text (string format)
|
|
845
|
-
*/
|
|
846
|
-
bodyAsText: string;
|
|
847
|
-
/**
|
|
848
|
-
* The response body as parsed JSON or XML
|
|
849
|
-
*/
|
|
850
|
-
parsedBody: RelayNamespaceListResult;
|
|
851
|
-
};
|
|
852
|
-
};
|
|
853
|
-
/**
|
|
854
|
-
* Contains response data for the listAuthorizationRulesNext operation.
|
|
855
|
-
*/
|
|
856
|
-
export declare type NamespacesListAuthorizationRulesNextResponse = AuthorizationRuleListResult & {
|
|
857
|
-
/**
|
|
858
|
-
* The underlying HTTP response.
|
|
859
|
-
*/
|
|
860
|
-
_response: msRest.HttpResponse & {
|
|
861
|
-
/**
|
|
862
|
-
* The response body as text (string format)
|
|
863
|
-
*/
|
|
864
|
-
bodyAsText: string;
|
|
865
|
-
/**
|
|
866
|
-
* The response body as parsed JSON or XML
|
|
867
|
-
*/
|
|
868
|
-
parsedBody: AuthorizationRuleListResult;
|
|
869
|
-
};
|
|
870
|
-
};
|
|
871
|
-
/**
|
|
872
|
-
* Contains response data for the listByNamespace operation.
|
|
873
|
-
*/
|
|
874
|
-
export declare type HybridConnectionsListByNamespaceResponse = HybridConnectionListResult & {
|
|
875
|
-
/**
|
|
876
|
-
* The underlying HTTP response.
|
|
877
|
-
*/
|
|
878
|
-
_response: msRest.HttpResponse & {
|
|
879
|
-
/**
|
|
880
|
-
* The response body as text (string format)
|
|
881
|
-
*/
|
|
882
|
-
bodyAsText: string;
|
|
883
|
-
/**
|
|
884
|
-
* The response body as parsed JSON or XML
|
|
885
|
-
*/
|
|
886
|
-
parsedBody: HybridConnectionListResult;
|
|
887
|
-
};
|
|
888
|
-
};
|
|
889
|
-
/**
|
|
890
|
-
* Contains response data for the createOrUpdate operation.
|
|
891
|
-
*/
|
|
892
|
-
export declare type HybridConnectionsCreateOrUpdateResponse = HybridConnection & {
|
|
893
|
-
/**
|
|
894
|
-
* The underlying HTTP response.
|
|
895
|
-
*/
|
|
896
|
-
_response: msRest.HttpResponse & {
|
|
897
|
-
/**
|
|
898
|
-
* The response body as text (string format)
|
|
899
|
-
*/
|
|
900
|
-
bodyAsText: string;
|
|
901
|
-
/**
|
|
902
|
-
* The response body as parsed JSON or XML
|
|
903
|
-
*/
|
|
904
|
-
parsedBody: HybridConnection;
|
|
905
|
-
};
|
|
906
|
-
};
|
|
907
|
-
/**
|
|
908
|
-
* Contains response data for the get operation.
|
|
909
|
-
*/
|
|
910
|
-
export declare type HybridConnectionsGetResponse = HybridConnection & {
|
|
911
|
-
/**
|
|
912
|
-
* The underlying HTTP response.
|
|
913
|
-
*/
|
|
914
|
-
_response: msRest.HttpResponse & {
|
|
915
|
-
/**
|
|
916
|
-
* The response body as text (string format)
|
|
917
|
-
*/
|
|
918
|
-
bodyAsText: string;
|
|
919
|
-
/**
|
|
920
|
-
* The response body as parsed JSON or XML
|
|
921
|
-
*/
|
|
922
|
-
parsedBody: HybridConnection;
|
|
923
|
-
};
|
|
924
|
-
};
|
|
925
|
-
/**
|
|
926
|
-
* Contains response data for the listAuthorizationRules operation.
|
|
927
|
-
*/
|
|
928
|
-
export declare type HybridConnectionsListAuthorizationRulesResponse = AuthorizationRuleListResult & {
|
|
929
|
-
/**
|
|
930
|
-
* The underlying HTTP response.
|
|
931
|
-
*/
|
|
932
|
-
_response: msRest.HttpResponse & {
|
|
933
|
-
/**
|
|
934
|
-
* The response body as text (string format)
|
|
935
|
-
*/
|
|
936
|
-
bodyAsText: string;
|
|
937
|
-
/**
|
|
938
|
-
* The response body as parsed JSON or XML
|
|
939
|
-
*/
|
|
940
|
-
parsedBody: AuthorizationRuleListResult;
|
|
941
|
-
};
|
|
942
|
-
};
|
|
943
|
-
/**
|
|
944
|
-
* Contains response data for the createOrUpdateAuthorizationRule operation.
|
|
945
|
-
*/
|
|
946
|
-
export declare type HybridConnectionsCreateOrUpdateAuthorizationRuleResponse = AuthorizationRule & {
|
|
947
|
-
/**
|
|
948
|
-
* The underlying HTTP response.
|
|
949
|
-
*/
|
|
950
|
-
_response: msRest.HttpResponse & {
|
|
951
|
-
/**
|
|
952
|
-
* The response body as text (string format)
|
|
953
|
-
*/
|
|
954
|
-
bodyAsText: string;
|
|
955
|
-
/**
|
|
956
|
-
* The response body as parsed JSON or XML
|
|
957
|
-
*/
|
|
958
|
-
parsedBody: AuthorizationRule;
|
|
959
|
-
};
|
|
960
|
-
};
|
|
961
|
-
/**
|
|
962
|
-
* Contains response data for the getAuthorizationRule operation.
|
|
963
|
-
*/
|
|
964
|
-
export declare type HybridConnectionsGetAuthorizationRuleResponse = AuthorizationRule & {
|
|
965
|
-
/**
|
|
966
|
-
* The underlying HTTP response.
|
|
967
|
-
*/
|
|
968
|
-
_response: msRest.HttpResponse & {
|
|
969
|
-
/**
|
|
970
|
-
* The response body as text (string format)
|
|
971
|
-
*/
|
|
972
|
-
bodyAsText: string;
|
|
973
|
-
/**
|
|
974
|
-
* The response body as parsed JSON or XML
|
|
975
|
-
*/
|
|
976
|
-
parsedBody: AuthorizationRule;
|
|
977
|
-
};
|
|
978
|
-
};
|
|
979
|
-
/**
|
|
980
|
-
* Contains response data for the listKeys operation.
|
|
981
|
-
*/
|
|
982
|
-
export declare type HybridConnectionsListKeysResponse = AccessKeys & {
|
|
983
|
-
/**
|
|
984
|
-
* The underlying HTTP response.
|
|
985
|
-
*/
|
|
986
|
-
_response: msRest.HttpResponse & {
|
|
987
|
-
/**
|
|
988
|
-
* The response body as text (string format)
|
|
989
|
-
*/
|
|
990
|
-
bodyAsText: string;
|
|
991
|
-
/**
|
|
992
|
-
* The response body as parsed JSON or XML
|
|
993
|
-
*/
|
|
994
|
-
parsedBody: AccessKeys;
|
|
995
|
-
};
|
|
996
|
-
};
|
|
997
|
-
/**
|
|
998
|
-
* Contains response data for the regenerateKeys operation.
|
|
999
|
-
*/
|
|
1000
|
-
export declare type HybridConnectionsRegenerateKeysResponse = AccessKeys & {
|
|
1001
|
-
/**
|
|
1002
|
-
* The underlying HTTP response.
|
|
1003
|
-
*/
|
|
1004
|
-
_response: msRest.HttpResponse & {
|
|
1005
|
-
/**
|
|
1006
|
-
* The response body as text (string format)
|
|
1007
|
-
*/
|
|
1008
|
-
bodyAsText: string;
|
|
1009
|
-
/**
|
|
1010
|
-
* The response body as parsed JSON or XML
|
|
1011
|
-
*/
|
|
1012
|
-
parsedBody: AccessKeys;
|
|
1013
|
-
};
|
|
1014
|
-
};
|
|
1015
|
-
/**
|
|
1016
|
-
* Contains response data for the listByNamespaceNext operation.
|
|
1017
|
-
*/
|
|
1018
|
-
export declare type HybridConnectionsListByNamespaceNextResponse = HybridConnectionListResult & {
|
|
1019
|
-
/**
|
|
1020
|
-
* The underlying HTTP response.
|
|
1021
|
-
*/
|
|
1022
|
-
_response: msRest.HttpResponse & {
|
|
1023
|
-
/**
|
|
1024
|
-
* The response body as text (string format)
|
|
1025
|
-
*/
|
|
1026
|
-
bodyAsText: string;
|
|
1027
|
-
/**
|
|
1028
|
-
* The response body as parsed JSON or XML
|
|
1029
|
-
*/
|
|
1030
|
-
parsedBody: HybridConnectionListResult;
|
|
1031
|
-
};
|
|
1032
|
-
};
|
|
1033
|
-
/**
|
|
1034
|
-
* Contains response data for the listAuthorizationRulesNext operation.
|
|
1035
|
-
*/
|
|
1036
|
-
export declare type HybridConnectionsListAuthorizationRulesNextResponse = AuthorizationRuleListResult & {
|
|
1037
|
-
/**
|
|
1038
|
-
* The underlying HTTP response.
|
|
1039
|
-
*/
|
|
1040
|
-
_response: msRest.HttpResponse & {
|
|
1041
|
-
/**
|
|
1042
|
-
* The response body as text (string format)
|
|
1043
|
-
*/
|
|
1044
|
-
bodyAsText: string;
|
|
1045
|
-
/**
|
|
1046
|
-
* The response body as parsed JSON or XML
|
|
1047
|
-
*/
|
|
1048
|
-
parsedBody: AuthorizationRuleListResult;
|
|
1049
|
-
};
|
|
1050
|
-
};
|
|
1051
|
-
/**
|
|
1052
|
-
* Contains response data for the listByNamespace operation.
|
|
1053
|
-
*/
|
|
1054
|
-
export declare type WCFRelaysListByNamespaceResponse = WcfRelaysListResult & {
|
|
1055
|
-
/**
|
|
1056
|
-
* The underlying HTTP response.
|
|
1057
|
-
*/
|
|
1058
|
-
_response: msRest.HttpResponse & {
|
|
1059
|
-
/**
|
|
1060
|
-
* The response body as text (string format)
|
|
1061
|
-
*/
|
|
1062
|
-
bodyAsText: string;
|
|
1063
|
-
/**
|
|
1064
|
-
* The response body as parsed JSON or XML
|
|
1065
|
-
*/
|
|
1066
|
-
parsedBody: WcfRelaysListResult;
|
|
1067
|
-
};
|
|
1068
|
-
};
|
|
1069
|
-
/**
|
|
1070
|
-
* Contains response data for the createOrUpdate operation.
|
|
1071
|
-
*/
|
|
1072
|
-
export declare type WCFRelaysCreateOrUpdateResponse = WcfRelay & {
|
|
1073
|
-
/**
|
|
1074
|
-
* The underlying HTTP response.
|
|
1075
|
-
*/
|
|
1076
|
-
_response: msRest.HttpResponse & {
|
|
1077
|
-
/**
|
|
1078
|
-
* The response body as text (string format)
|
|
1079
|
-
*/
|
|
1080
|
-
bodyAsText: string;
|
|
1081
|
-
/**
|
|
1082
|
-
* The response body as parsed JSON or XML
|
|
1083
|
-
*/
|
|
1084
|
-
parsedBody: WcfRelay;
|
|
1085
|
-
};
|
|
1086
|
-
};
|
|
1087
|
-
/**
|
|
1088
|
-
* Contains response data for the get operation.
|
|
1089
|
-
*/
|
|
1090
|
-
export declare type WCFRelaysGetResponse = WcfRelay & {
|
|
1091
|
-
/**
|
|
1092
|
-
* The underlying HTTP response.
|
|
1093
|
-
*/
|
|
1094
|
-
_response: msRest.HttpResponse & {
|
|
1095
|
-
/**
|
|
1096
|
-
* The response body as text (string format)
|
|
1097
|
-
*/
|
|
1098
|
-
bodyAsText: string;
|
|
1099
|
-
/**
|
|
1100
|
-
* The response body as parsed JSON or XML
|
|
1101
|
-
*/
|
|
1102
|
-
parsedBody: WcfRelay;
|
|
1103
|
-
};
|
|
1104
|
-
};
|
|
1105
|
-
/**
|
|
1106
|
-
* Contains response data for the listAuthorizationRules operation.
|
|
1107
|
-
*/
|
|
1108
|
-
export declare type WCFRelaysListAuthorizationRulesResponse = AuthorizationRuleListResult & {
|
|
1109
|
-
/**
|
|
1110
|
-
* The underlying HTTP response.
|
|
1111
|
-
*/
|
|
1112
|
-
_response: msRest.HttpResponse & {
|
|
1113
|
-
/**
|
|
1114
|
-
* The response body as text (string format)
|
|
1115
|
-
*/
|
|
1116
|
-
bodyAsText: string;
|
|
1117
|
-
/**
|
|
1118
|
-
* The response body as parsed JSON or XML
|
|
1119
|
-
*/
|
|
1120
|
-
parsedBody: AuthorizationRuleListResult;
|
|
1121
|
-
};
|
|
1122
|
-
};
|
|
1123
|
-
/**
|
|
1124
|
-
* Contains response data for the createOrUpdateAuthorizationRule operation.
|
|
1125
|
-
*/
|
|
1126
|
-
export declare type WCFRelaysCreateOrUpdateAuthorizationRuleResponse = AuthorizationRule & {
|
|
1127
|
-
/**
|
|
1128
|
-
* The underlying HTTP response.
|
|
1129
|
-
*/
|
|
1130
|
-
_response: msRest.HttpResponse & {
|
|
1131
|
-
/**
|
|
1132
|
-
* The response body as text (string format)
|
|
1133
|
-
*/
|
|
1134
|
-
bodyAsText: string;
|
|
1135
|
-
/**
|
|
1136
|
-
* The response body as parsed JSON or XML
|
|
1137
|
-
*/
|
|
1138
|
-
parsedBody: AuthorizationRule;
|
|
1139
|
-
};
|
|
1140
|
-
};
|
|
1141
|
-
/**
|
|
1142
|
-
* Contains response data for the getAuthorizationRule operation.
|
|
1143
|
-
*/
|
|
1144
|
-
export declare type WCFRelaysGetAuthorizationRuleResponse = AuthorizationRule & {
|
|
1145
|
-
/**
|
|
1146
|
-
* The underlying HTTP response.
|
|
1147
|
-
*/
|
|
1148
|
-
_response: msRest.HttpResponse & {
|
|
1149
|
-
/**
|
|
1150
|
-
* The response body as text (string format)
|
|
1151
|
-
*/
|
|
1152
|
-
bodyAsText: string;
|
|
1153
|
-
/**
|
|
1154
|
-
* The response body as parsed JSON or XML
|
|
1155
|
-
*/
|
|
1156
|
-
parsedBody: AuthorizationRule;
|
|
1157
|
-
};
|
|
1158
|
-
};
|
|
1159
|
-
/**
|
|
1160
|
-
* Contains response data for the listKeys operation.
|
|
1161
|
-
*/
|
|
1162
|
-
export declare type WCFRelaysListKeysResponse = AccessKeys & {
|
|
1163
|
-
/**
|
|
1164
|
-
* The underlying HTTP response.
|
|
1165
|
-
*/
|
|
1166
|
-
_response: msRest.HttpResponse & {
|
|
1167
|
-
/**
|
|
1168
|
-
* The response body as text (string format)
|
|
1169
|
-
*/
|
|
1170
|
-
bodyAsText: string;
|
|
1171
|
-
/**
|
|
1172
|
-
* The response body as parsed JSON or XML
|
|
1173
|
-
*/
|
|
1174
|
-
parsedBody: AccessKeys;
|
|
1175
|
-
};
|
|
1176
|
-
};
|
|
1177
|
-
/**
|
|
1178
|
-
* Contains response data for the regenerateKeys operation.
|
|
1179
|
-
*/
|
|
1180
|
-
export declare type WCFRelaysRegenerateKeysResponse = AccessKeys & {
|
|
1181
|
-
/**
|
|
1182
|
-
* The underlying HTTP response.
|
|
1183
|
-
*/
|
|
1184
|
-
_response: msRest.HttpResponse & {
|
|
1185
|
-
/**
|
|
1186
|
-
* The response body as text (string format)
|
|
1187
|
-
*/
|
|
1188
|
-
bodyAsText: string;
|
|
1189
|
-
/**
|
|
1190
|
-
* The response body as parsed JSON or XML
|
|
1191
|
-
*/
|
|
1192
|
-
parsedBody: AccessKeys;
|
|
1193
|
-
};
|
|
1194
|
-
};
|
|
1195
|
-
/**
|
|
1196
|
-
* Contains response data for the listByNamespaceNext operation.
|
|
1197
|
-
*/
|
|
1198
|
-
export declare type WCFRelaysListByNamespaceNextResponse = WcfRelaysListResult & {
|
|
1199
|
-
/**
|
|
1200
|
-
* The underlying HTTP response.
|
|
1201
|
-
*/
|
|
1202
|
-
_response: msRest.HttpResponse & {
|
|
1203
|
-
/**
|
|
1204
|
-
* The response body as text (string format)
|
|
1205
|
-
*/
|
|
1206
|
-
bodyAsText: string;
|
|
1207
|
-
/**
|
|
1208
|
-
* The response body as parsed JSON or XML
|
|
1209
|
-
*/
|
|
1210
|
-
parsedBody: WcfRelaysListResult;
|
|
1211
|
-
};
|
|
1212
|
-
};
|
|
1213
|
-
/**
|
|
1214
|
-
* Contains response data for the listAuthorizationRulesNext operation.
|
|
1215
|
-
*/
|
|
1216
|
-
export declare type WCFRelaysListAuthorizationRulesNextResponse = AuthorizationRuleListResult & {
|
|
1217
|
-
/**
|
|
1218
|
-
* The underlying HTTP response.
|
|
1219
|
-
*/
|
|
1220
|
-
_response: msRest.HttpResponse & {
|
|
1221
|
-
/**
|
|
1222
|
-
* The response body as text (string format)
|
|
1223
|
-
*/
|
|
1224
|
-
bodyAsText: string;
|
|
1225
|
-
/**
|
|
1226
|
-
* The response body as parsed JSON or XML
|
|
1227
|
-
*/
|
|
1228
|
-
parsedBody: AuthorizationRuleListResult;
|
|
1229
|
-
};
|
|
1230
|
-
};
|
|
1231
|
-
//# sourceMappingURL=index.d.ts.map
|