@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,493 @@
|
|
|
1
|
+
import * as coreClient from "@azure/core-client";
|
|
2
|
+
/** Result of the request to list Relay operations. It contains a list of operations and a URL link to get the next set of results. */
|
|
3
|
+
export interface OperationListResult {
|
|
4
|
+
/**
|
|
5
|
+
* List of Relay operations supported by resource provider.
|
|
6
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
7
|
+
*/
|
|
8
|
+
readonly value?: Operation[];
|
|
9
|
+
/**
|
|
10
|
+
* URL to get the next set of operation list results if there are any.
|
|
11
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
12
|
+
*/
|
|
13
|
+
readonly nextLink?: string;
|
|
14
|
+
}
|
|
15
|
+
/** A Relay REST API operation. */
|
|
16
|
+
export interface Operation {
|
|
17
|
+
/**
|
|
18
|
+
* Operation name: {provider}/{resource}/{operation}
|
|
19
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
20
|
+
*/
|
|
21
|
+
readonly name?: string;
|
|
22
|
+
/** The object that represents the operation. */
|
|
23
|
+
display?: OperationDisplay;
|
|
24
|
+
}
|
|
25
|
+
/** The object that represents the operation. */
|
|
26
|
+
export interface OperationDisplay {
|
|
27
|
+
/**
|
|
28
|
+
* Service provider: Relay.
|
|
29
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
30
|
+
*/
|
|
31
|
+
readonly provider?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Resource on which the operation is performed: Invoice, etc.
|
|
34
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
35
|
+
*/
|
|
36
|
+
readonly resource?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Operation type: Read, write, delete, etc.
|
|
39
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
40
|
+
*/
|
|
41
|
+
readonly operation?: string;
|
|
42
|
+
}
|
|
43
|
+
/** Error reponse indicates Relay service is not able to process the incoming request. The reason is provided in the error message. */
|
|
44
|
+
export interface ErrorResponse {
|
|
45
|
+
/** Error code. */
|
|
46
|
+
code?: string;
|
|
47
|
+
/** Error message indicating why the operation failed. */
|
|
48
|
+
message?: string;
|
|
49
|
+
}
|
|
50
|
+
/** Description of the check name availability request properties. */
|
|
51
|
+
export interface CheckNameAvailability {
|
|
52
|
+
/** The namespace name to check for availability. The namespace name can contain only letters, numbers, and hyphens. The namespace must start with a letter, and it must end with a letter or number. */
|
|
53
|
+
name: string;
|
|
54
|
+
}
|
|
55
|
+
/** Description of the check name availability request properties. */
|
|
56
|
+
export interface CheckNameAvailabilityResult {
|
|
57
|
+
/**
|
|
58
|
+
* The detailed info regarding the reason associated with the namespace.
|
|
59
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
60
|
+
*/
|
|
61
|
+
readonly message?: string;
|
|
62
|
+
/** Value indicating namespace is available. Returns true if the namespace is available; otherwise, false. */
|
|
63
|
+
nameAvailable?: boolean;
|
|
64
|
+
/** The reason for unavailability of a namespace. */
|
|
65
|
+
reason?: UnavailableReason;
|
|
66
|
+
}
|
|
67
|
+
/** The response from the list namespace operation. */
|
|
68
|
+
export interface RelayNamespaceListResult {
|
|
69
|
+
/** Result of the list namespace operation. */
|
|
70
|
+
value?: RelayNamespace[];
|
|
71
|
+
/** Link to the next set of results. Not empty if value contains incomplete list of namespaces. */
|
|
72
|
+
nextLink?: string;
|
|
73
|
+
}
|
|
74
|
+
/** SKU of the namespace. */
|
|
75
|
+
export interface Sku {
|
|
76
|
+
/** Name of this SKU. */
|
|
77
|
+
name: "Standard";
|
|
78
|
+
/** The tier of this SKU. */
|
|
79
|
+
tier?: "Standard";
|
|
80
|
+
}
|
|
81
|
+
/** The resource definition. */
|
|
82
|
+
export interface Resource {
|
|
83
|
+
/**
|
|
84
|
+
* Resource ID.
|
|
85
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
86
|
+
*/
|
|
87
|
+
readonly id?: string;
|
|
88
|
+
/**
|
|
89
|
+
* Resource name.
|
|
90
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
91
|
+
*/
|
|
92
|
+
readonly name?: string;
|
|
93
|
+
/**
|
|
94
|
+
* Resource type.
|
|
95
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
96
|
+
*/
|
|
97
|
+
readonly type?: string;
|
|
98
|
+
}
|
|
99
|
+
/** The response from the list namespace operation. */
|
|
100
|
+
export interface AuthorizationRuleListResult {
|
|
101
|
+
/** Result of the list authorization rules operation. */
|
|
102
|
+
value?: AuthorizationRule[];
|
|
103
|
+
/** Link to the next set of results. Not empty if value contains incomplete list of authorization rules. */
|
|
104
|
+
nextLink?: string;
|
|
105
|
+
}
|
|
106
|
+
/** Namespace/Relay Connection String */
|
|
107
|
+
export interface AccessKeys {
|
|
108
|
+
/** Primary connection string of the created namespace authorization rule. */
|
|
109
|
+
primaryConnectionString?: string;
|
|
110
|
+
/** Secondary connection string of the created namespace authorization rule. */
|
|
111
|
+
secondaryConnectionString?: string;
|
|
112
|
+
/** A base64-encoded 256-bit primary key for signing and validating the SAS token. */
|
|
113
|
+
primaryKey?: string;
|
|
114
|
+
/** A base64-encoded 256-bit secondary key for signing and validating the SAS token. */
|
|
115
|
+
secondaryKey?: string;
|
|
116
|
+
/** A string that describes the authorization rule. */
|
|
117
|
+
keyName?: string;
|
|
118
|
+
}
|
|
119
|
+
/** Parameters supplied to the regenerate authorization rule operation, specifies which key neeeds to be reset. */
|
|
120
|
+
export interface RegenerateAccessKeyParameters {
|
|
121
|
+
/** The access key to regenerate. */
|
|
122
|
+
keyType: KeyType;
|
|
123
|
+
/** Optional. If the key value is provided, this is set to key type, or autogenerated key value set for key type. */
|
|
124
|
+
key?: string;
|
|
125
|
+
}
|
|
126
|
+
/** The response of the list hybrid connection operation. */
|
|
127
|
+
export interface HybridConnectionListResult {
|
|
128
|
+
/** Result of the list hybrid connections. */
|
|
129
|
+
value?: HybridConnection[];
|
|
130
|
+
/** Link to the next set of results. Not empty if value contains incomplete list hybrid connection operation. */
|
|
131
|
+
nextLink?: string;
|
|
132
|
+
}
|
|
133
|
+
/** The response of the list WCF relay operation. */
|
|
134
|
+
export interface WcfRelaysListResult {
|
|
135
|
+
/** Result of the list WCF relay operation. */
|
|
136
|
+
value?: WcfRelay[];
|
|
137
|
+
/** Link to the next set of results. Not empty if value contains incomplete list of WCF relays. */
|
|
138
|
+
nextLink?: string;
|
|
139
|
+
}
|
|
140
|
+
/** Definition of resource. */
|
|
141
|
+
export declare type TrackedResource = Resource & {
|
|
142
|
+
/** Resource location. */
|
|
143
|
+
location: string;
|
|
144
|
+
/** Resource tags. */
|
|
145
|
+
tags?: {
|
|
146
|
+
[propertyName: string]: string;
|
|
147
|
+
};
|
|
148
|
+
};
|
|
149
|
+
/** Definition of resource. */
|
|
150
|
+
export declare type ResourceNamespacePatch = Resource & {
|
|
151
|
+
/** Resource tags. */
|
|
152
|
+
tags?: {
|
|
153
|
+
[propertyName: string]: string;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
/** Description of a namespace authorization rule. */
|
|
157
|
+
export declare type AuthorizationRule = Resource & {
|
|
158
|
+
/** The rights associated with the rule. */
|
|
159
|
+
rights: AccessRights[];
|
|
160
|
+
};
|
|
161
|
+
/** Description of hybrid connection resource. */
|
|
162
|
+
export declare type HybridConnection = Resource & {
|
|
163
|
+
/**
|
|
164
|
+
* The time the hybrid connection was created.
|
|
165
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
166
|
+
*/
|
|
167
|
+
readonly createdAt?: Date;
|
|
168
|
+
/**
|
|
169
|
+
* The time the namespace was updated.
|
|
170
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
171
|
+
*/
|
|
172
|
+
readonly updatedAt?: Date;
|
|
173
|
+
/**
|
|
174
|
+
* The number of listeners for this hybrid connection. Note that min : 1 and max:25 are supported.
|
|
175
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
176
|
+
*/
|
|
177
|
+
readonly listenerCount?: number;
|
|
178
|
+
/** Returns true if client authorization is needed for this hybrid connection; otherwise, false. */
|
|
179
|
+
requiresClientAuthorization?: boolean;
|
|
180
|
+
/** The usermetadata is a placeholder to store user-defined string data for the hybrid connection endpoint. For example, it can be used to store descriptive data, such as a list of teams and their contact information. Also, user-defined configuration settings can be stored. */
|
|
181
|
+
userMetadata?: string;
|
|
182
|
+
};
|
|
183
|
+
/** Description of the WCF relay resource. */
|
|
184
|
+
export declare type WcfRelay = Resource & {
|
|
185
|
+
/**
|
|
186
|
+
* Returns true if the relay is dynamic; otherwise, false.
|
|
187
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
188
|
+
*/
|
|
189
|
+
readonly isDynamic?: boolean;
|
|
190
|
+
/**
|
|
191
|
+
* The time the WCF relay was created.
|
|
192
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
193
|
+
*/
|
|
194
|
+
readonly createdAt?: Date;
|
|
195
|
+
/**
|
|
196
|
+
* The time the namespace was updated.
|
|
197
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
198
|
+
*/
|
|
199
|
+
readonly updatedAt?: Date;
|
|
200
|
+
/**
|
|
201
|
+
* The number of listeners for this relay. Note that min :1 and max:25 are supported.
|
|
202
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
203
|
+
*/
|
|
204
|
+
readonly listenerCount?: number;
|
|
205
|
+
/** WCF relay type. */
|
|
206
|
+
relayType?: Relaytype;
|
|
207
|
+
/** Returns true if client authorization is needed for this relay; otherwise, false. */
|
|
208
|
+
requiresClientAuthorization?: boolean;
|
|
209
|
+
/** Returns true if transport security is needed for this relay; otherwise, false. */
|
|
210
|
+
requiresTransportSecurity?: boolean;
|
|
211
|
+
/** The usermetadata is a placeholder to store user-defined string data for the WCF Relay endpoint. For example, it can be used to store descriptive data, such as list of teams and their contact information. Also, user-defined configuration settings can be stored. */
|
|
212
|
+
userMetadata?: string;
|
|
213
|
+
};
|
|
214
|
+
/** Description of a namespace resource. */
|
|
215
|
+
export declare type RelayNamespace = TrackedResource & {
|
|
216
|
+
/** SKU of the namespace. */
|
|
217
|
+
sku?: Sku;
|
|
218
|
+
/** NOTE: This property will not be serialized. It can only be populated by the server. */
|
|
219
|
+
readonly provisioningState?: ProvisioningStateEnum;
|
|
220
|
+
/**
|
|
221
|
+
* The time the namespace was created.
|
|
222
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
223
|
+
*/
|
|
224
|
+
readonly createdAt?: Date;
|
|
225
|
+
/**
|
|
226
|
+
* The time the namespace was updated.
|
|
227
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
228
|
+
*/
|
|
229
|
+
readonly updatedAt?: Date;
|
|
230
|
+
/**
|
|
231
|
+
* Endpoint you can use to perform Service Bus operations.
|
|
232
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
233
|
+
*/
|
|
234
|
+
readonly serviceBusEndpoint?: string;
|
|
235
|
+
/**
|
|
236
|
+
* Identifier for Azure Insights metrics.
|
|
237
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
238
|
+
*/
|
|
239
|
+
readonly metricId?: string;
|
|
240
|
+
};
|
|
241
|
+
/** Description of a namespace resource. */
|
|
242
|
+
export declare type RelayUpdateParameters = ResourceNamespacePatch & {
|
|
243
|
+
/** SKU of the namespace. */
|
|
244
|
+
sku?: Sku;
|
|
245
|
+
/** NOTE: This property will not be serialized. It can only be populated by the server. */
|
|
246
|
+
readonly provisioningState?: ProvisioningStateEnum;
|
|
247
|
+
/**
|
|
248
|
+
* The time the namespace was created.
|
|
249
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
250
|
+
*/
|
|
251
|
+
readonly createdAt?: Date;
|
|
252
|
+
/**
|
|
253
|
+
* The time the namespace was updated.
|
|
254
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
255
|
+
*/
|
|
256
|
+
readonly updatedAt?: Date;
|
|
257
|
+
/**
|
|
258
|
+
* Endpoint you can use to perform Service Bus operations.
|
|
259
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
260
|
+
*/
|
|
261
|
+
readonly serviceBusEndpoint?: string;
|
|
262
|
+
/**
|
|
263
|
+
* Identifier for Azure Insights metrics.
|
|
264
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
265
|
+
*/
|
|
266
|
+
readonly metricId?: string;
|
|
267
|
+
};
|
|
268
|
+
/** Defines values for UnavailableReason. */
|
|
269
|
+
export declare type UnavailableReason = "None" | "InvalidName" | "SubscriptionIsDisabled" | "NameInUse" | "NameInLockdown" | "TooManyNamespaceInCurrentSubscription";
|
|
270
|
+
/** Defines values for ProvisioningStateEnum. */
|
|
271
|
+
export declare type ProvisioningStateEnum = "Created" | "Succeeded" | "Deleted" | "Failed" | "Updating" | "Unknown";
|
|
272
|
+
/** Defines values for AccessRights. */
|
|
273
|
+
export declare type AccessRights = "Manage" | "Send" | "Listen";
|
|
274
|
+
/** Defines values for KeyType. */
|
|
275
|
+
export declare type KeyType = "PrimaryKey" | "SecondaryKey";
|
|
276
|
+
/** Defines values for Relaytype. */
|
|
277
|
+
export declare type Relaytype = "NetTcp" | "Http";
|
|
278
|
+
/** Optional parameters. */
|
|
279
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
280
|
+
}
|
|
281
|
+
/** Contains response data for the list operation. */
|
|
282
|
+
export declare type OperationsListResponse = OperationListResult;
|
|
283
|
+
/** Optional parameters. */
|
|
284
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
285
|
+
}
|
|
286
|
+
/** Contains response data for the listNext operation. */
|
|
287
|
+
export declare type OperationsListNextResponse = OperationListResult;
|
|
288
|
+
/** Optional parameters. */
|
|
289
|
+
export interface NamespacesCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
|
|
290
|
+
}
|
|
291
|
+
/** Contains response data for the checkNameAvailability operation. */
|
|
292
|
+
export declare type NamespacesCheckNameAvailabilityResponse = CheckNameAvailabilityResult;
|
|
293
|
+
/** Optional parameters. */
|
|
294
|
+
export interface NamespacesListOptionalParams extends coreClient.OperationOptions {
|
|
295
|
+
}
|
|
296
|
+
/** Contains response data for the list operation. */
|
|
297
|
+
export declare type NamespacesListResponse = RelayNamespaceListResult;
|
|
298
|
+
/** Optional parameters. */
|
|
299
|
+
export interface NamespacesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
300
|
+
}
|
|
301
|
+
/** Contains response data for the listByResourceGroup operation. */
|
|
302
|
+
export declare type NamespacesListByResourceGroupResponse = RelayNamespaceListResult;
|
|
303
|
+
/** Optional parameters. */
|
|
304
|
+
export interface NamespacesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
305
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
306
|
+
updateIntervalInMs?: number;
|
|
307
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
308
|
+
resumeFrom?: string;
|
|
309
|
+
}
|
|
310
|
+
/** Contains response data for the createOrUpdate operation. */
|
|
311
|
+
export declare type NamespacesCreateOrUpdateResponse = RelayNamespace;
|
|
312
|
+
/** Optional parameters. */
|
|
313
|
+
export interface NamespacesDeleteOptionalParams extends coreClient.OperationOptions {
|
|
314
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
315
|
+
updateIntervalInMs?: number;
|
|
316
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
317
|
+
resumeFrom?: string;
|
|
318
|
+
}
|
|
319
|
+
/** Optional parameters. */
|
|
320
|
+
export interface NamespacesGetOptionalParams extends coreClient.OperationOptions {
|
|
321
|
+
}
|
|
322
|
+
/** Contains response data for the get operation. */
|
|
323
|
+
export declare type NamespacesGetResponse = RelayNamespace;
|
|
324
|
+
/** Optional parameters. */
|
|
325
|
+
export interface NamespacesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
326
|
+
}
|
|
327
|
+
/** Contains response data for the update operation. */
|
|
328
|
+
export declare type NamespacesUpdateResponse = RelayNamespace;
|
|
329
|
+
/** Optional parameters. */
|
|
330
|
+
export interface NamespacesListAuthorizationRulesOptionalParams extends coreClient.OperationOptions {
|
|
331
|
+
}
|
|
332
|
+
/** Contains response data for the listAuthorizationRules operation. */
|
|
333
|
+
export declare type NamespacesListAuthorizationRulesResponse = AuthorizationRuleListResult;
|
|
334
|
+
/** Optional parameters. */
|
|
335
|
+
export interface NamespacesCreateOrUpdateAuthorizationRuleOptionalParams extends coreClient.OperationOptions {
|
|
336
|
+
}
|
|
337
|
+
/** Contains response data for the createOrUpdateAuthorizationRule operation. */
|
|
338
|
+
export declare type NamespacesCreateOrUpdateAuthorizationRuleResponse = AuthorizationRule;
|
|
339
|
+
/** Optional parameters. */
|
|
340
|
+
export interface NamespacesDeleteAuthorizationRuleOptionalParams extends coreClient.OperationOptions {
|
|
341
|
+
}
|
|
342
|
+
/** Optional parameters. */
|
|
343
|
+
export interface NamespacesGetAuthorizationRuleOptionalParams extends coreClient.OperationOptions {
|
|
344
|
+
}
|
|
345
|
+
/** Contains response data for the getAuthorizationRule operation. */
|
|
346
|
+
export declare type NamespacesGetAuthorizationRuleResponse = AuthorizationRule;
|
|
347
|
+
/** Optional parameters. */
|
|
348
|
+
export interface NamespacesListKeysOptionalParams extends coreClient.OperationOptions {
|
|
349
|
+
}
|
|
350
|
+
/** Contains response data for the listKeys operation. */
|
|
351
|
+
export declare type NamespacesListKeysResponse = AccessKeys;
|
|
352
|
+
/** Optional parameters. */
|
|
353
|
+
export interface NamespacesRegenerateKeysOptionalParams extends coreClient.OperationOptions {
|
|
354
|
+
}
|
|
355
|
+
/** Contains response data for the regenerateKeys operation. */
|
|
356
|
+
export declare type NamespacesRegenerateKeysResponse = AccessKeys;
|
|
357
|
+
/** Optional parameters. */
|
|
358
|
+
export interface NamespacesListNextOptionalParams extends coreClient.OperationOptions {
|
|
359
|
+
}
|
|
360
|
+
/** Contains response data for the listNext operation. */
|
|
361
|
+
export declare type NamespacesListNextResponse = RelayNamespaceListResult;
|
|
362
|
+
/** Optional parameters. */
|
|
363
|
+
export interface NamespacesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
364
|
+
}
|
|
365
|
+
/** Contains response data for the listByResourceGroupNext operation. */
|
|
366
|
+
export declare type NamespacesListByResourceGroupNextResponse = RelayNamespaceListResult;
|
|
367
|
+
/** Optional parameters. */
|
|
368
|
+
export interface NamespacesListAuthorizationRulesNextOptionalParams extends coreClient.OperationOptions {
|
|
369
|
+
}
|
|
370
|
+
/** Contains response data for the listAuthorizationRulesNext operation. */
|
|
371
|
+
export declare type NamespacesListAuthorizationRulesNextResponse = AuthorizationRuleListResult;
|
|
372
|
+
/** Optional parameters. */
|
|
373
|
+
export interface HybridConnectionsListByNamespaceOptionalParams extends coreClient.OperationOptions {
|
|
374
|
+
}
|
|
375
|
+
/** Contains response data for the listByNamespace operation. */
|
|
376
|
+
export declare type HybridConnectionsListByNamespaceResponse = HybridConnectionListResult;
|
|
377
|
+
/** Optional parameters. */
|
|
378
|
+
export interface HybridConnectionsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
379
|
+
}
|
|
380
|
+
/** Contains response data for the createOrUpdate operation. */
|
|
381
|
+
export declare type HybridConnectionsCreateOrUpdateResponse = HybridConnection;
|
|
382
|
+
/** Optional parameters. */
|
|
383
|
+
export interface HybridConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
384
|
+
}
|
|
385
|
+
/** Optional parameters. */
|
|
386
|
+
export interface HybridConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
387
|
+
}
|
|
388
|
+
/** Contains response data for the get operation. */
|
|
389
|
+
export declare type HybridConnectionsGetResponse = HybridConnection;
|
|
390
|
+
/** Optional parameters. */
|
|
391
|
+
export interface HybridConnectionsListAuthorizationRulesOptionalParams extends coreClient.OperationOptions {
|
|
392
|
+
}
|
|
393
|
+
/** Contains response data for the listAuthorizationRules operation. */
|
|
394
|
+
export declare type HybridConnectionsListAuthorizationRulesResponse = AuthorizationRuleListResult;
|
|
395
|
+
/** Optional parameters. */
|
|
396
|
+
export interface HybridConnectionsCreateOrUpdateAuthorizationRuleOptionalParams extends coreClient.OperationOptions {
|
|
397
|
+
}
|
|
398
|
+
/** Contains response data for the createOrUpdateAuthorizationRule operation. */
|
|
399
|
+
export declare type HybridConnectionsCreateOrUpdateAuthorizationRuleResponse = AuthorizationRule;
|
|
400
|
+
/** Optional parameters. */
|
|
401
|
+
export interface HybridConnectionsDeleteAuthorizationRuleOptionalParams extends coreClient.OperationOptions {
|
|
402
|
+
}
|
|
403
|
+
/** Optional parameters. */
|
|
404
|
+
export interface HybridConnectionsGetAuthorizationRuleOptionalParams extends coreClient.OperationOptions {
|
|
405
|
+
}
|
|
406
|
+
/** Contains response data for the getAuthorizationRule operation. */
|
|
407
|
+
export declare type HybridConnectionsGetAuthorizationRuleResponse = AuthorizationRule;
|
|
408
|
+
/** Optional parameters. */
|
|
409
|
+
export interface HybridConnectionsListKeysOptionalParams extends coreClient.OperationOptions {
|
|
410
|
+
}
|
|
411
|
+
/** Contains response data for the listKeys operation. */
|
|
412
|
+
export declare type HybridConnectionsListKeysResponse = AccessKeys;
|
|
413
|
+
/** Optional parameters. */
|
|
414
|
+
export interface HybridConnectionsRegenerateKeysOptionalParams extends coreClient.OperationOptions {
|
|
415
|
+
}
|
|
416
|
+
/** Contains response data for the regenerateKeys operation. */
|
|
417
|
+
export declare type HybridConnectionsRegenerateKeysResponse = AccessKeys;
|
|
418
|
+
/** Optional parameters. */
|
|
419
|
+
export interface HybridConnectionsListByNamespaceNextOptionalParams extends coreClient.OperationOptions {
|
|
420
|
+
}
|
|
421
|
+
/** Contains response data for the listByNamespaceNext operation. */
|
|
422
|
+
export declare type HybridConnectionsListByNamespaceNextResponse = HybridConnectionListResult;
|
|
423
|
+
/** Optional parameters. */
|
|
424
|
+
export interface HybridConnectionsListAuthorizationRulesNextOptionalParams extends coreClient.OperationOptions {
|
|
425
|
+
}
|
|
426
|
+
/** Contains response data for the listAuthorizationRulesNext operation. */
|
|
427
|
+
export declare type HybridConnectionsListAuthorizationRulesNextResponse = AuthorizationRuleListResult;
|
|
428
|
+
/** Optional parameters. */
|
|
429
|
+
export interface WCFRelaysListByNamespaceOptionalParams extends coreClient.OperationOptions {
|
|
430
|
+
}
|
|
431
|
+
/** Contains response data for the listByNamespace operation. */
|
|
432
|
+
export declare type WCFRelaysListByNamespaceResponse = WcfRelaysListResult;
|
|
433
|
+
/** Optional parameters. */
|
|
434
|
+
export interface WCFRelaysCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
435
|
+
}
|
|
436
|
+
/** Contains response data for the createOrUpdate operation. */
|
|
437
|
+
export declare type WCFRelaysCreateOrUpdateResponse = WcfRelay;
|
|
438
|
+
/** Optional parameters. */
|
|
439
|
+
export interface WCFRelaysDeleteOptionalParams extends coreClient.OperationOptions {
|
|
440
|
+
}
|
|
441
|
+
/** Optional parameters. */
|
|
442
|
+
export interface WCFRelaysGetOptionalParams extends coreClient.OperationOptions {
|
|
443
|
+
}
|
|
444
|
+
/** Contains response data for the get operation. */
|
|
445
|
+
export declare type WCFRelaysGetResponse = WcfRelay;
|
|
446
|
+
/** Optional parameters. */
|
|
447
|
+
export interface WCFRelaysListAuthorizationRulesOptionalParams extends coreClient.OperationOptions {
|
|
448
|
+
}
|
|
449
|
+
/** Contains response data for the listAuthorizationRules operation. */
|
|
450
|
+
export declare type WCFRelaysListAuthorizationRulesResponse = AuthorizationRuleListResult;
|
|
451
|
+
/** Optional parameters. */
|
|
452
|
+
export interface WCFRelaysCreateOrUpdateAuthorizationRuleOptionalParams extends coreClient.OperationOptions {
|
|
453
|
+
}
|
|
454
|
+
/** Contains response data for the createOrUpdateAuthorizationRule operation. */
|
|
455
|
+
export declare type WCFRelaysCreateOrUpdateAuthorizationRuleResponse = AuthorizationRule;
|
|
456
|
+
/** Optional parameters. */
|
|
457
|
+
export interface WCFRelaysDeleteAuthorizationRuleOptionalParams extends coreClient.OperationOptions {
|
|
458
|
+
}
|
|
459
|
+
/** Optional parameters. */
|
|
460
|
+
export interface WCFRelaysGetAuthorizationRuleOptionalParams extends coreClient.OperationOptions {
|
|
461
|
+
}
|
|
462
|
+
/** Contains response data for the getAuthorizationRule operation. */
|
|
463
|
+
export declare type WCFRelaysGetAuthorizationRuleResponse = AuthorizationRule;
|
|
464
|
+
/** Optional parameters. */
|
|
465
|
+
export interface WCFRelaysListKeysOptionalParams extends coreClient.OperationOptions {
|
|
466
|
+
}
|
|
467
|
+
/** Contains response data for the listKeys operation. */
|
|
468
|
+
export declare type WCFRelaysListKeysResponse = AccessKeys;
|
|
469
|
+
/** Optional parameters. */
|
|
470
|
+
export interface WCFRelaysRegenerateKeysOptionalParams extends coreClient.OperationOptions {
|
|
471
|
+
}
|
|
472
|
+
/** Contains response data for the regenerateKeys operation. */
|
|
473
|
+
export declare type WCFRelaysRegenerateKeysResponse = AccessKeys;
|
|
474
|
+
/** Optional parameters. */
|
|
475
|
+
export interface WCFRelaysListByNamespaceNextOptionalParams extends coreClient.OperationOptions {
|
|
476
|
+
}
|
|
477
|
+
/** Contains response data for the listByNamespaceNext operation. */
|
|
478
|
+
export declare type WCFRelaysListByNamespaceNextResponse = WcfRelaysListResult;
|
|
479
|
+
/** Optional parameters. */
|
|
480
|
+
export interface WCFRelaysListAuthorizationRulesNextOptionalParams extends coreClient.OperationOptions {
|
|
481
|
+
}
|
|
482
|
+
/** Contains response data for the listAuthorizationRulesNext operation. */
|
|
483
|
+
export declare type WCFRelaysListAuthorizationRulesNextResponse = AuthorizationRuleListResult;
|
|
484
|
+
/** Optional parameters. */
|
|
485
|
+
export interface RelayAPIOptionalParams extends coreClient.ServiceClientOptions {
|
|
486
|
+
/** server parameter */
|
|
487
|
+
$host?: string;
|
|
488
|
+
/** Api Version */
|
|
489
|
+
apiVersion?: string;
|
|
490
|
+
/** Overrides client endpoint. */
|
|
491
|
+
endpoint?: string;
|
|
492
|
+
}
|
|
493
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
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
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as coreClient from "@azure/core-client";
|
|
2
|
+
export declare const OperationListResult: coreClient.CompositeMapper;
|
|
3
|
+
export declare const Operation: coreClient.CompositeMapper;
|
|
4
|
+
export declare const OperationDisplay: coreClient.CompositeMapper;
|
|
5
|
+
export declare const ErrorResponse: coreClient.CompositeMapper;
|
|
6
|
+
export declare const CheckNameAvailability: coreClient.CompositeMapper;
|
|
7
|
+
export declare const CheckNameAvailabilityResult: coreClient.CompositeMapper;
|
|
8
|
+
export declare const RelayNamespaceListResult: coreClient.CompositeMapper;
|
|
9
|
+
export declare const Sku: coreClient.CompositeMapper;
|
|
10
|
+
export declare const Resource: coreClient.CompositeMapper;
|
|
11
|
+
export declare const AuthorizationRuleListResult: coreClient.CompositeMapper;
|
|
12
|
+
export declare const AccessKeys: coreClient.CompositeMapper;
|
|
13
|
+
export declare const RegenerateAccessKeyParameters: coreClient.CompositeMapper;
|
|
14
|
+
export declare const HybridConnectionListResult: coreClient.CompositeMapper;
|
|
15
|
+
export declare const WcfRelaysListResult: coreClient.CompositeMapper;
|
|
16
|
+
export declare const TrackedResource: coreClient.CompositeMapper;
|
|
17
|
+
export declare const ResourceNamespacePatch: coreClient.CompositeMapper;
|
|
18
|
+
export declare const AuthorizationRule: coreClient.CompositeMapper;
|
|
19
|
+
export declare const HybridConnection: coreClient.CompositeMapper;
|
|
20
|
+
export declare const WcfRelay: coreClient.CompositeMapper;
|
|
21
|
+
export declare const RelayNamespace: coreClient.CompositeMapper;
|
|
22
|
+
export declare const RelayUpdateParameters: coreClient.CompositeMapper;
|
|
23
|
+
//# sourceMappingURL=mappers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eA2B5C,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAqBlC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eA4BzC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAmBtC,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,eAc9C,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,eAkCpD,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,UAAU,CAAC,eAyBjD,CAAC;AAEF,eAAO,MAAM,GAAG,EAAE,UAAU,CAAC,eAuB5B,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA4BjC,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,eAyBpD,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAqCnC,CAAC;AAEF,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,eAqBtD,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,UAAU,CAAC,eAyBnD,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAyB5C,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eAsBxC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,UAAU,CAAC,eAe/C,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,eAwB1C,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eA6CzC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eAiEjC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eA0DvC,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,eA0D9C,CAAC"}
|