@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
|
@@ -1,348 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
3
|
-
import * as Models from "../models";
|
|
4
|
-
import { RelayManagementClientContext } from "../relayManagementClientContext";
|
|
5
|
-
/** Class representing a Namespaces. */
|
|
6
|
-
export declare class Namespaces {
|
|
7
|
-
private readonly client;
|
|
8
|
-
/**
|
|
9
|
-
* Create a Namespaces.
|
|
10
|
-
* @param {RelayManagementClientContext} client Reference to the service client.
|
|
11
|
-
*/
|
|
12
|
-
constructor(client: RelayManagementClientContext);
|
|
13
|
-
/**
|
|
14
|
-
* Check the specified namespace name availability.
|
|
15
|
-
* @param parameters Parameters to check availability of the specified namespace name.
|
|
16
|
-
* @param [options] The optional parameters
|
|
17
|
-
* @returns Promise<Models.NamespacesCheckNameAvailabilityMethodResponse>
|
|
18
|
-
*/
|
|
19
|
-
checkNameAvailabilityMethod(parameters: Models.CheckNameAvailability, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesCheckNameAvailabilityMethodResponse>;
|
|
20
|
-
/**
|
|
21
|
-
* @param parameters Parameters to check availability of the specified namespace name.
|
|
22
|
-
* @param callback The callback
|
|
23
|
-
*/
|
|
24
|
-
checkNameAvailabilityMethod(parameters: Models.CheckNameAvailability, callback: msRest.ServiceCallback<Models.CheckNameAvailabilityResult>): void;
|
|
25
|
-
/**
|
|
26
|
-
* @param parameters Parameters to check availability of the specified namespace name.
|
|
27
|
-
* @param options The optional parameters
|
|
28
|
-
* @param callback The callback
|
|
29
|
-
*/
|
|
30
|
-
checkNameAvailabilityMethod(parameters: Models.CheckNameAvailability, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.CheckNameAvailabilityResult>): void;
|
|
31
|
-
/**
|
|
32
|
-
* Lists all the available namespaces within the subscription regardless of the resourceGroups.
|
|
33
|
-
* @param [options] The optional parameters
|
|
34
|
-
* @returns Promise<Models.NamespacesListResponse>
|
|
35
|
-
*/
|
|
36
|
-
list(options?: msRest.RequestOptionsBase): Promise<Models.NamespacesListResponse>;
|
|
37
|
-
/**
|
|
38
|
-
* @param callback The callback
|
|
39
|
-
*/
|
|
40
|
-
list(callback: msRest.ServiceCallback<Models.RelayNamespaceListResult>): void;
|
|
41
|
-
/**
|
|
42
|
-
* @param options The optional parameters
|
|
43
|
-
* @param callback The callback
|
|
44
|
-
*/
|
|
45
|
-
list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RelayNamespaceListResult>): void;
|
|
46
|
-
/**
|
|
47
|
-
* Lists all the available namespaces within the ResourceGroup.
|
|
48
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
49
|
-
* @param [options] The optional parameters
|
|
50
|
-
* @returns Promise<Models.NamespacesListByResourceGroupResponse>
|
|
51
|
-
*/
|
|
52
|
-
listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesListByResourceGroupResponse>;
|
|
53
|
-
/**
|
|
54
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
55
|
-
* @param callback The callback
|
|
56
|
-
*/
|
|
57
|
-
listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.RelayNamespaceListResult>): void;
|
|
58
|
-
/**
|
|
59
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
60
|
-
* @param options The optional parameters
|
|
61
|
-
* @param callback The callback
|
|
62
|
-
*/
|
|
63
|
-
listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RelayNamespaceListResult>): void;
|
|
64
|
-
/**
|
|
65
|
-
* Create Azure Relay namespace.
|
|
66
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
67
|
-
* @param namespaceName The namespace name
|
|
68
|
-
* @param parameters Parameters supplied to create a namespace resource.
|
|
69
|
-
* @param [options] The optional parameters
|
|
70
|
-
* @returns Promise<Models.NamespacesCreateOrUpdateResponse>
|
|
71
|
-
*/
|
|
72
|
-
createOrUpdate(resourceGroupName: string, namespaceName: string, parameters: Models.RelayNamespace, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesCreateOrUpdateResponse>;
|
|
73
|
-
/**
|
|
74
|
-
* Deletes an existing namespace. This operation also removes all associated resources under the
|
|
75
|
-
* namespace.
|
|
76
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
77
|
-
* @param namespaceName The namespace name
|
|
78
|
-
* @param [options] The optional parameters
|
|
79
|
-
* @returns Promise<msRest.RestResponse>
|
|
80
|
-
*/
|
|
81
|
-
deleteMethod(resourceGroupName: string, namespaceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
|
|
82
|
-
/**
|
|
83
|
-
* Returns the description for the specified namespace.
|
|
84
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
85
|
-
* @param namespaceName The namespace name
|
|
86
|
-
* @param [options] The optional parameters
|
|
87
|
-
* @returns Promise<Models.NamespacesGetResponse>
|
|
88
|
-
*/
|
|
89
|
-
get(resourceGroupName: string, namespaceName: string, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesGetResponse>;
|
|
90
|
-
/**
|
|
91
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
92
|
-
* @param namespaceName The namespace name
|
|
93
|
-
* @param callback The callback
|
|
94
|
-
*/
|
|
95
|
-
get(resourceGroupName: string, namespaceName: string, callback: msRest.ServiceCallback<Models.RelayNamespace>): void;
|
|
96
|
-
/**
|
|
97
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
98
|
-
* @param namespaceName The namespace name
|
|
99
|
-
* @param options The optional parameters
|
|
100
|
-
* @param callback The callback
|
|
101
|
-
*/
|
|
102
|
-
get(resourceGroupName: string, namespaceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RelayNamespace>): void;
|
|
103
|
-
/**
|
|
104
|
-
* Creates or updates a namespace. Once created, this namespace's resource manifest is immutable.
|
|
105
|
-
* This operation is idempotent.
|
|
106
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
107
|
-
* @param namespaceName The namespace name
|
|
108
|
-
* @param parameters Parameters for updating a namespace resource.
|
|
109
|
-
* @param [options] The optional parameters
|
|
110
|
-
* @returns Promise<Models.NamespacesUpdateResponse>
|
|
111
|
-
*/
|
|
112
|
-
update(resourceGroupName: string, namespaceName: string, parameters: Models.RelayUpdateParameters, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesUpdateResponse>;
|
|
113
|
-
/**
|
|
114
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
115
|
-
* @param namespaceName The namespace name
|
|
116
|
-
* @param parameters Parameters for updating a namespace resource.
|
|
117
|
-
* @param callback The callback
|
|
118
|
-
*/
|
|
119
|
-
update(resourceGroupName: string, namespaceName: string, parameters: Models.RelayUpdateParameters, callback: msRest.ServiceCallback<Models.RelayNamespace>): void;
|
|
120
|
-
/**
|
|
121
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
122
|
-
* @param namespaceName The namespace name
|
|
123
|
-
* @param parameters Parameters for updating a namespace resource.
|
|
124
|
-
* @param options The optional parameters
|
|
125
|
-
* @param callback The callback
|
|
126
|
-
*/
|
|
127
|
-
update(resourceGroupName: string, namespaceName: string, parameters: Models.RelayUpdateParameters, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RelayNamespace>): void;
|
|
128
|
-
/**
|
|
129
|
-
* Authorization rules for a namespace.
|
|
130
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
131
|
-
* @param namespaceName The namespace name
|
|
132
|
-
* @param [options] The optional parameters
|
|
133
|
-
* @returns Promise<Models.NamespacesListAuthorizationRulesResponse>
|
|
134
|
-
*/
|
|
135
|
-
listAuthorizationRules(resourceGroupName: string, namespaceName: string, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesListAuthorizationRulesResponse>;
|
|
136
|
-
/**
|
|
137
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
138
|
-
* @param namespaceName The namespace name
|
|
139
|
-
* @param callback The callback
|
|
140
|
-
*/
|
|
141
|
-
listAuthorizationRules(resourceGroupName: string, namespaceName: string, callback: msRest.ServiceCallback<Models.AuthorizationRuleListResult>): void;
|
|
142
|
-
/**
|
|
143
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
144
|
-
* @param namespaceName The namespace name
|
|
145
|
-
* @param options The optional parameters
|
|
146
|
-
* @param callback The callback
|
|
147
|
-
*/
|
|
148
|
-
listAuthorizationRules(resourceGroupName: string, namespaceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AuthorizationRuleListResult>): void;
|
|
149
|
-
/**
|
|
150
|
-
* Creates or updates an authorization rule for a namespace.
|
|
151
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
152
|
-
* @param namespaceName The namespace name
|
|
153
|
-
* @param authorizationRuleName The authorization rule name.
|
|
154
|
-
* @param parameters The authorization rule parameters.
|
|
155
|
-
* @param [options] The optional parameters
|
|
156
|
-
* @returns Promise<Models.NamespacesCreateOrUpdateAuthorizationRuleResponse>
|
|
157
|
-
*/
|
|
158
|
-
createOrUpdateAuthorizationRule(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, parameters: Models.AuthorizationRule, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesCreateOrUpdateAuthorizationRuleResponse>;
|
|
159
|
-
/**
|
|
160
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
161
|
-
* @param namespaceName The namespace name
|
|
162
|
-
* @param authorizationRuleName The authorization rule name.
|
|
163
|
-
* @param parameters The authorization rule parameters.
|
|
164
|
-
* @param callback The callback
|
|
165
|
-
*/
|
|
166
|
-
createOrUpdateAuthorizationRule(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, parameters: Models.AuthorizationRule, callback: msRest.ServiceCallback<Models.AuthorizationRule>): void;
|
|
167
|
-
/**
|
|
168
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
169
|
-
* @param namespaceName The namespace name
|
|
170
|
-
* @param authorizationRuleName The authorization rule name.
|
|
171
|
-
* @param parameters The authorization rule parameters.
|
|
172
|
-
* @param options The optional parameters
|
|
173
|
-
* @param callback The callback
|
|
174
|
-
*/
|
|
175
|
-
createOrUpdateAuthorizationRule(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, parameters: Models.AuthorizationRule, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AuthorizationRule>): void;
|
|
176
|
-
/**
|
|
177
|
-
* Deletes a namespace authorization rule.
|
|
178
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
179
|
-
* @param namespaceName The namespace name
|
|
180
|
-
* @param authorizationRuleName The authorization rule name.
|
|
181
|
-
* @param [options] The optional parameters
|
|
182
|
-
* @returns Promise<msRest.RestResponse>
|
|
183
|
-
*/
|
|
184
|
-
deleteAuthorizationRule(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
|
|
185
|
-
/**
|
|
186
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
187
|
-
* @param namespaceName The namespace name
|
|
188
|
-
* @param authorizationRuleName The authorization rule name.
|
|
189
|
-
* @param callback The callback
|
|
190
|
-
*/
|
|
191
|
-
deleteAuthorizationRule(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, callback: msRest.ServiceCallback<void>): void;
|
|
192
|
-
/**
|
|
193
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
194
|
-
* @param namespaceName The namespace name
|
|
195
|
-
* @param authorizationRuleName The authorization rule name.
|
|
196
|
-
* @param options The optional parameters
|
|
197
|
-
* @param callback The callback
|
|
198
|
-
*/
|
|
199
|
-
deleteAuthorizationRule(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<void>): void;
|
|
200
|
-
/**
|
|
201
|
-
* Authorization rule for a namespace by name.
|
|
202
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
203
|
-
* @param namespaceName The namespace name
|
|
204
|
-
* @param authorizationRuleName The authorization rule name.
|
|
205
|
-
* @param [options] The optional parameters
|
|
206
|
-
* @returns Promise<Models.NamespacesGetAuthorizationRuleResponse>
|
|
207
|
-
*/
|
|
208
|
-
getAuthorizationRule(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesGetAuthorizationRuleResponse>;
|
|
209
|
-
/**
|
|
210
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
211
|
-
* @param namespaceName The namespace name
|
|
212
|
-
* @param authorizationRuleName The authorization rule name.
|
|
213
|
-
* @param callback The callback
|
|
214
|
-
*/
|
|
215
|
-
getAuthorizationRule(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, callback: msRest.ServiceCallback<Models.AuthorizationRule>): void;
|
|
216
|
-
/**
|
|
217
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
218
|
-
* @param namespaceName The namespace name
|
|
219
|
-
* @param authorizationRuleName The authorization rule name.
|
|
220
|
-
* @param options The optional parameters
|
|
221
|
-
* @param callback The callback
|
|
222
|
-
*/
|
|
223
|
-
getAuthorizationRule(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AuthorizationRule>): void;
|
|
224
|
-
/**
|
|
225
|
-
* Primary and secondary connection strings to the namespace.
|
|
226
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
227
|
-
* @param namespaceName The namespace name
|
|
228
|
-
* @param authorizationRuleName The authorization rule name.
|
|
229
|
-
* @param [options] The optional parameters
|
|
230
|
-
* @returns Promise<Models.NamespacesListKeysResponse>
|
|
231
|
-
*/
|
|
232
|
-
listKeys(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesListKeysResponse>;
|
|
233
|
-
/**
|
|
234
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
235
|
-
* @param namespaceName The namespace name
|
|
236
|
-
* @param authorizationRuleName The authorization rule name.
|
|
237
|
-
* @param callback The callback
|
|
238
|
-
*/
|
|
239
|
-
listKeys(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, callback: msRest.ServiceCallback<Models.AccessKeys>): void;
|
|
240
|
-
/**
|
|
241
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
242
|
-
* @param namespaceName The namespace name
|
|
243
|
-
* @param authorizationRuleName The authorization rule name.
|
|
244
|
-
* @param options The optional parameters
|
|
245
|
-
* @param callback The callback
|
|
246
|
-
*/
|
|
247
|
-
listKeys(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AccessKeys>): void;
|
|
248
|
-
/**
|
|
249
|
-
* Regenerates the primary or secondary connection strings to the namespace.
|
|
250
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
251
|
-
* @param namespaceName The namespace name
|
|
252
|
-
* @param authorizationRuleName The authorization rule name.
|
|
253
|
-
* @param parameters Parameters supplied to regenerate authorization rule.
|
|
254
|
-
* @param [options] The optional parameters
|
|
255
|
-
* @returns Promise<Models.NamespacesRegenerateKeysResponse>
|
|
256
|
-
*/
|
|
257
|
-
regenerateKeys(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, parameters: Models.RegenerateAccessKeyParameters, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesRegenerateKeysResponse>;
|
|
258
|
-
/**
|
|
259
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
260
|
-
* @param namespaceName The namespace name
|
|
261
|
-
* @param authorizationRuleName The authorization rule name.
|
|
262
|
-
* @param parameters Parameters supplied to regenerate authorization rule.
|
|
263
|
-
* @param callback The callback
|
|
264
|
-
*/
|
|
265
|
-
regenerateKeys(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, parameters: Models.RegenerateAccessKeyParameters, callback: msRest.ServiceCallback<Models.AccessKeys>): void;
|
|
266
|
-
/**
|
|
267
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
268
|
-
* @param namespaceName The namespace name
|
|
269
|
-
* @param authorizationRuleName The authorization rule name.
|
|
270
|
-
* @param parameters Parameters supplied to regenerate authorization rule.
|
|
271
|
-
* @param options The optional parameters
|
|
272
|
-
* @param callback The callback
|
|
273
|
-
*/
|
|
274
|
-
regenerateKeys(resourceGroupName: string, namespaceName: string, authorizationRuleName: string, parameters: Models.RegenerateAccessKeyParameters, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AccessKeys>): void;
|
|
275
|
-
/**
|
|
276
|
-
* Create Azure Relay namespace.
|
|
277
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
278
|
-
* @param namespaceName The namespace name
|
|
279
|
-
* @param parameters Parameters supplied to create a namespace resource.
|
|
280
|
-
* @param [options] The optional parameters
|
|
281
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
282
|
-
*/
|
|
283
|
-
beginCreateOrUpdate(resourceGroupName: string, namespaceName: string, parameters: Models.RelayNamespace, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
|
284
|
-
/**
|
|
285
|
-
* Deletes an existing namespace. This operation also removes all associated resources under the
|
|
286
|
-
* namespace.
|
|
287
|
-
* @param resourceGroupName Name of the Resource group within the Azure subscription.
|
|
288
|
-
* @param namespaceName The namespace name
|
|
289
|
-
* @param [options] The optional parameters
|
|
290
|
-
* @returns Promise<msRestAzure.LROPoller>
|
|
291
|
-
*/
|
|
292
|
-
beginDeleteMethod(resourceGroupName: string, namespaceName: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
|
293
|
-
/**
|
|
294
|
-
* Lists all the available namespaces within the subscription regardless of the resourceGroups.
|
|
295
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
296
|
-
* @param [options] The optional parameters
|
|
297
|
-
* @returns Promise<Models.NamespacesListNextResponse>
|
|
298
|
-
*/
|
|
299
|
-
listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesListNextResponse>;
|
|
300
|
-
/**
|
|
301
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
302
|
-
* @param callback The callback
|
|
303
|
-
*/
|
|
304
|
-
listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.RelayNamespaceListResult>): void;
|
|
305
|
-
/**
|
|
306
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
307
|
-
* @param options The optional parameters
|
|
308
|
-
* @param callback The callback
|
|
309
|
-
*/
|
|
310
|
-
listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RelayNamespaceListResult>): void;
|
|
311
|
-
/**
|
|
312
|
-
* Lists all the available namespaces within the ResourceGroup.
|
|
313
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
314
|
-
* @param [options] The optional parameters
|
|
315
|
-
* @returns Promise<Models.NamespacesListByResourceGroupNextResponse>
|
|
316
|
-
*/
|
|
317
|
-
listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesListByResourceGroupNextResponse>;
|
|
318
|
-
/**
|
|
319
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
320
|
-
* @param callback The callback
|
|
321
|
-
*/
|
|
322
|
-
listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.RelayNamespaceListResult>): void;
|
|
323
|
-
/**
|
|
324
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
325
|
-
* @param options The optional parameters
|
|
326
|
-
* @param callback The callback
|
|
327
|
-
*/
|
|
328
|
-
listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.RelayNamespaceListResult>): void;
|
|
329
|
-
/**
|
|
330
|
-
* Authorization rules for a namespace.
|
|
331
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
332
|
-
* @param [options] The optional parameters
|
|
333
|
-
* @returns Promise<Models.NamespacesListAuthorizationRulesNextResponse>
|
|
334
|
-
*/
|
|
335
|
-
listAuthorizationRulesNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.NamespacesListAuthorizationRulesNextResponse>;
|
|
336
|
-
/**
|
|
337
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
338
|
-
* @param callback The callback
|
|
339
|
-
*/
|
|
340
|
-
listAuthorizationRulesNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.AuthorizationRuleListResult>): void;
|
|
341
|
-
/**
|
|
342
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
|
343
|
-
* @param options The optional parameters
|
|
344
|
-
* @param callback The callback
|
|
345
|
-
*/
|
|
346
|
-
listAuthorizationRulesNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.AuthorizationRuleListResult>): void;
|
|
347
|
-
}
|
|
348
|
-
//# sourceMappingURL=namespaces.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"namespaces.d.ts","sourceRoot":"","sources":["../../lib/operations/namespaces.ts"],"names":[],"mappings":"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"}
|