@azure/arm-confluent 2.2.0 → 3.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/{LICENSE.txt → LICENSE} +2 -2
- package/README.md +70 -78
- package/dist/index.js +1547 -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/confluentManagementClient.d.ts +21 -0
- package/dist-esm/src/confluentManagementClient.d.ts.map +1 -0
- package/dist-esm/src/confluentManagementClient.js +54 -0
- package/dist-esm/src/confluentManagementClient.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 +382 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +43 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +15 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +209 -237
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +14 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +110 -0
- package/dist-esm/src/models/parameters.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 +1 -2
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/marketplaceAgreements.d.ts +37 -0
- package/dist-esm/src/operations/marketplaceAgreements.d.ts.map +1 -0
- package/dist-esm/src/operations/marketplaceAgreements.js +149 -0
- package/dist-esm/src/operations/marketplaceAgreements.js.map +1 -0
- package/dist-esm/src/operations/organization.d.ts +96 -0
- package/dist-esm/src/operations/organization.d.ts.map +1 -0
- package/dist-esm/src/operations/organization.js +449 -0
- package/dist-esm/src/operations/organization.js.map +1 -0
- package/dist-esm/src/operations/organizationOperations.d.ts +32 -0
- package/dist-esm/src/operations/organizationOperations.d.ts.map +1 -0
- package/dist-esm/src/operations/organizationOperations.js +120 -0
- package/dist-esm/src/operations/organizationOperations.js.map +1 -0
- package/dist-esm/src/operations/validations.d.ts +21 -0
- package/dist-esm/src/operations/validations.d.ts.map +1 -0
- package/dist-esm/src/operations/validations.js +56 -0
- package/dist-esm/src/operations/validations.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/{esm/models/organizationOperationsMappers.js → dist-esm/src/operationsInterfaces/index.js} +5 -2
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/marketplaceAgreements.d.ts +16 -0
- package/dist-esm/src/operationsInterfaces/marketplaceAgreements.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/marketplaceAgreements.js +9 -0
- package/dist-esm/src/operationsInterfaces/marketplaceAgreements.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/organization.d.ts +60 -0
- package/dist-esm/src/operationsInterfaces/organization.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/organization.js +9 -0
- package/dist-esm/src/operationsInterfaces/organization.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/organizationOperations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/organizationOperations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/organizationOperations.js +9 -0
- package/dist-esm/src/operationsInterfaces/organizationOperations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/validations.d.ts +13 -0
- package/dist-esm/src/operationsInterfaces/validations.d.ts.map +1 -0
- package/{esm/models/index.js → dist-esm/src/operationsInterfaces/validations.js} +2 -1
- package/dist-esm/src/operationsInterfaces/validations.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +65 -32
- package/review/arm-confluent.api.md +352 -0
- package/rollup.config.js +181 -30
- package/src/confluentManagementClient.ts +76 -38
- package/src/{models/validationsMappers.ts → index.ts} +4 -10
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +297 -553
- package/src/models/mappers.ts +211 -240
- package/src/models/parameters.ts +81 -24
- package/src/operations/index.ts +1 -2
- package/src/operations/marketplaceAgreements.ts +108 -117
- package/src/operations/organization.ts +414 -300
- package/src/operations/organizationOperations.ts +87 -75
- package/src/operations/validations.ts +42 -62
- package/src/{models/organizationOperationsMappers.ts → operationsInterfaces/index.ts} +4 -7
- package/src/operationsInterfaces/marketplaceAgreements.ts +34 -0
- package/src/operationsInterfaces/organization.ts +114 -0
- package/src/operationsInterfaces/organizationOperations.ts +25 -0
- package/src/operationsInterfaces/validations.ts +30 -0
- package/tsconfig.json +3 -3
- package/types/arm-confluent.d.ts +543 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-confluent.js +0 -1460
- package/dist/arm-confluent.js.map +0 -1
- package/dist/arm-confluent.min.js +0 -1
- package/dist/arm-confluent.min.js.map +0 -1
- package/esm/confluentManagementClient.d.ts +0 -27
- package/esm/confluentManagementClient.d.ts.map +0 -1
- package/esm/confluentManagementClient.js +0 -40
- package/esm/confluentManagementClient.js.map +0 -1
- package/esm/confluentManagementClientContext.d.ts +0 -22
- package/esm/confluentManagementClientContext.d.ts.map +0 -1
- package/esm/confluentManagementClientContext.js +0 -60
- package/esm/confluentManagementClientContext.js.map +0 -1
- package/esm/models/index.d.ts +0 -640
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -17
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/marketplaceAgreementsMappers.d.ts +0 -2
- package/esm/models/marketplaceAgreementsMappers.d.ts.map +0 -1
- package/esm/models/marketplaceAgreementsMappers.js +0 -9
- package/esm/models/marketplaceAgreementsMappers.js.map +0 -1
- package/esm/models/organizationMappers.d.ts +0 -2
- package/esm/models/organizationMappers.d.ts.map +0 -1
- package/esm/models/organizationMappers.js +0 -9
- package/esm/models/organizationMappers.js.map +0 -1
- package/esm/models/organizationOperationsMappers.d.ts +0 -2
- package/esm/models/organizationOperationsMappers.d.ts.map +0 -1
- package/esm/models/organizationOperationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -72
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/validationsMappers.d.ts +0 -2
- package/esm/models/validationsMappers.d.ts.map +0 -1
- package/esm/models/validationsMappers.js +0 -9
- package/esm/models/validationsMappers.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/marketplaceAgreements.d.ts +0 -61
- package/esm/operations/marketplaceAgreements.d.ts.map +0 -1
- package/esm/operations/marketplaceAgreements.js +0 -116
- package/esm/operations/marketplaceAgreements.js.map +0 -1
- package/esm/operations/organization.d.ts +0 -157
- package/esm/operations/organization.d.ts.map +0 -1
- package/esm/operations/organization.js +0 -317
- package/esm/operations/organization.js.map +0 -1
- package/esm/operations/organizationOperations.d.ts +0 -46
- package/esm/operations/organizationOperations.d.ts.map +0 -1
- package/esm/operations/organizationOperations.js +0 -79
- package/esm/operations/organizationOperations.js.map +0 -1
- package/esm/operations/validations.d.ts +0 -37
- package/esm/operations/validations.d.ts.map +0 -1
- package/esm/operations/validations.js +0 -63
- package/esm/operations/validations.js.map +0 -1
- package/src/confluentManagementClientContext.ts +0 -67
- package/src/models/marketplaceAgreementsMappers.ts +0 -19
- package/src/models/organizationMappers.ts +0 -20
package/esm/models/index.d.ts
DELETED
|
@@ -1,640 +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
|
-
* Metadata pertaining to creation and last modification of the resource.
|
|
6
|
-
*/
|
|
7
|
-
export interface SystemData {
|
|
8
|
-
/**
|
|
9
|
-
* The identity that created the resource.
|
|
10
|
-
*/
|
|
11
|
-
createdBy?: string;
|
|
12
|
-
/**
|
|
13
|
-
* The type of identity that created the resource. Possible values include: 'User',
|
|
14
|
-
* 'Application', 'ManagedIdentity', 'Key'
|
|
15
|
-
*/
|
|
16
|
-
createdByType?: CreatedByType;
|
|
17
|
-
/**
|
|
18
|
-
* The timestamp of resource creation (UTC).
|
|
19
|
-
*/
|
|
20
|
-
createdAt?: Date;
|
|
21
|
-
/**
|
|
22
|
-
* The identity that last modified the resource.
|
|
23
|
-
*/
|
|
24
|
-
lastModifiedBy?: string;
|
|
25
|
-
/**
|
|
26
|
-
* The type of identity that last modified the resource. Possible values include: 'User',
|
|
27
|
-
* 'Application', 'ManagedIdentity', 'Key'
|
|
28
|
-
*/
|
|
29
|
-
lastModifiedByType?: CreatedByType;
|
|
30
|
-
/**
|
|
31
|
-
* The timestamp of resource last modification (UTC)
|
|
32
|
-
*/
|
|
33
|
-
lastModifiedAt?: Date;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* Agreement Terms definition
|
|
37
|
-
*/
|
|
38
|
-
export interface ConfluentAgreementResource extends BaseResource {
|
|
39
|
-
/**
|
|
40
|
-
* The ARM id of the resource.
|
|
41
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
42
|
-
*/
|
|
43
|
-
readonly id?: string;
|
|
44
|
-
/**
|
|
45
|
-
* The name of the agreement.
|
|
46
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
47
|
-
*/
|
|
48
|
-
readonly name?: string;
|
|
49
|
-
/**
|
|
50
|
-
* The type of the agreement.
|
|
51
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
52
|
-
*/
|
|
53
|
-
readonly type?: string;
|
|
54
|
-
/**
|
|
55
|
-
* Metadata pertaining to creation and last modification of the resource
|
|
56
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
57
|
-
*/
|
|
58
|
-
readonly systemData?: SystemData;
|
|
59
|
-
/**
|
|
60
|
-
* Publisher identifier string.
|
|
61
|
-
*/
|
|
62
|
-
publisher?: string;
|
|
63
|
-
/**
|
|
64
|
-
* Product identifier string.
|
|
65
|
-
*/
|
|
66
|
-
product?: string;
|
|
67
|
-
/**
|
|
68
|
-
* Plan identifier string.
|
|
69
|
-
*/
|
|
70
|
-
plan?: string;
|
|
71
|
-
/**
|
|
72
|
-
* Link to HTML with Microsoft and Publisher terms.
|
|
73
|
-
*/
|
|
74
|
-
licenseTextLink?: string;
|
|
75
|
-
/**
|
|
76
|
-
* Link to the privacy policy of the publisher.
|
|
77
|
-
*/
|
|
78
|
-
privacyPolicyLink?: string;
|
|
79
|
-
/**
|
|
80
|
-
* Date and time in UTC of when the terms were accepted. This is empty if Accepted is false.
|
|
81
|
-
*/
|
|
82
|
-
retrieveDatetime?: Date;
|
|
83
|
-
/**
|
|
84
|
-
* Terms signature.
|
|
85
|
-
*/
|
|
86
|
-
signature?: string;
|
|
87
|
-
/**
|
|
88
|
-
* If any version of the terms have been accepted, otherwise false.
|
|
89
|
-
*/
|
|
90
|
-
accepted?: boolean;
|
|
91
|
-
}
|
|
92
|
-
/**
|
|
93
|
-
* The object that represents the operation.
|
|
94
|
-
*/
|
|
95
|
-
export interface OperationDisplay {
|
|
96
|
-
/**
|
|
97
|
-
* Service provider: Microsoft.Confluent
|
|
98
|
-
*/
|
|
99
|
-
provider?: string;
|
|
100
|
-
/**
|
|
101
|
-
* Type on which the operation is performed, e.g., 'clusters'.
|
|
102
|
-
*/
|
|
103
|
-
resource?: string;
|
|
104
|
-
/**
|
|
105
|
-
* Operation type, e.g., read, write, delete, etc.
|
|
106
|
-
*/
|
|
107
|
-
operation?: string;
|
|
108
|
-
/**
|
|
109
|
-
* Description of the operation, e.g., 'Write confluent'.
|
|
110
|
-
*/
|
|
111
|
-
description?: string;
|
|
112
|
-
}
|
|
113
|
-
/**
|
|
114
|
-
* An Confluent REST API operation.
|
|
115
|
-
*/
|
|
116
|
-
export interface OperationResult {
|
|
117
|
-
/**
|
|
118
|
-
* Operation name: {provider}/{resource}/{operation}
|
|
119
|
-
*/
|
|
120
|
-
name?: string;
|
|
121
|
-
/**
|
|
122
|
-
* The object that represents the operation.
|
|
123
|
-
*/
|
|
124
|
-
display?: OperationDisplay;
|
|
125
|
-
/**
|
|
126
|
-
* Indicates whether the operation is a data action
|
|
127
|
-
*/
|
|
128
|
-
isDataAction?: boolean;
|
|
129
|
-
}
|
|
130
|
-
/**
|
|
131
|
-
* Response body of Error
|
|
132
|
-
* @summary ErrorResponseBody
|
|
133
|
-
*/
|
|
134
|
-
export interface ErrorResponseBody {
|
|
135
|
-
/**
|
|
136
|
-
* Error code
|
|
137
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
138
|
-
*/
|
|
139
|
-
readonly code?: string;
|
|
140
|
-
/**
|
|
141
|
-
* Error message
|
|
142
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
143
|
-
*/
|
|
144
|
-
readonly message?: string;
|
|
145
|
-
/**
|
|
146
|
-
* Error target
|
|
147
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
148
|
-
*/
|
|
149
|
-
readonly target?: string;
|
|
150
|
-
/**
|
|
151
|
-
* Error detail
|
|
152
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
153
|
-
*/
|
|
154
|
-
readonly details?: ErrorResponseBody[];
|
|
155
|
-
}
|
|
156
|
-
/**
|
|
157
|
-
* Default error response for resource provider
|
|
158
|
-
* @summary ResourceProviderDefaultErrorResponse
|
|
159
|
-
*/
|
|
160
|
-
export interface ResourceProviderDefaultErrorResponse {
|
|
161
|
-
/**
|
|
162
|
-
* Response body of Error
|
|
163
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
164
|
-
*/
|
|
165
|
-
readonly error?: ErrorResponseBody;
|
|
166
|
-
}
|
|
167
|
-
/**
|
|
168
|
-
* Confluent Offer detail
|
|
169
|
-
*/
|
|
170
|
-
export interface OfferDetail {
|
|
171
|
-
/**
|
|
172
|
-
* Publisher Id
|
|
173
|
-
*/
|
|
174
|
-
publisherId: string;
|
|
175
|
-
/**
|
|
176
|
-
* Offer Id
|
|
177
|
-
*/
|
|
178
|
-
id: string;
|
|
179
|
-
/**
|
|
180
|
-
* Offer Plan Id
|
|
181
|
-
*/
|
|
182
|
-
planId: string;
|
|
183
|
-
/**
|
|
184
|
-
* Offer Plan Name
|
|
185
|
-
*/
|
|
186
|
-
planName: string;
|
|
187
|
-
/**
|
|
188
|
-
* Offer Plan Term unit
|
|
189
|
-
*/
|
|
190
|
-
termUnit: string;
|
|
191
|
-
/**
|
|
192
|
-
* SaaS Offer Status. Possible values include: 'Started', 'PendingFulfillmentStart',
|
|
193
|
-
* 'InProgress', 'Subscribed', 'Suspended', 'Reinstated', 'Succeeded', 'Failed', 'Unsubscribed',
|
|
194
|
-
* 'Updating'
|
|
195
|
-
*/
|
|
196
|
-
status?: SaaSOfferStatus;
|
|
197
|
-
}
|
|
198
|
-
/**
|
|
199
|
-
* Subscriber detail
|
|
200
|
-
*/
|
|
201
|
-
export interface UserDetail {
|
|
202
|
-
/**
|
|
203
|
-
* First name
|
|
204
|
-
*/
|
|
205
|
-
firstName?: string;
|
|
206
|
-
/**
|
|
207
|
-
* Last name
|
|
208
|
-
*/
|
|
209
|
-
lastName?: string;
|
|
210
|
-
/**
|
|
211
|
-
* Email address
|
|
212
|
-
*/
|
|
213
|
-
emailAddress: string;
|
|
214
|
-
}
|
|
215
|
-
/**
|
|
216
|
-
* Organization resource.
|
|
217
|
-
*/
|
|
218
|
-
export interface OrganizationResource extends BaseResource {
|
|
219
|
-
/**
|
|
220
|
-
* The ARM id of the resource.
|
|
221
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
222
|
-
*/
|
|
223
|
-
readonly id?: string;
|
|
224
|
-
/**
|
|
225
|
-
* The name of the resource.
|
|
226
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
227
|
-
*/
|
|
228
|
-
readonly name?: string;
|
|
229
|
-
/**
|
|
230
|
-
* The type of the resource.
|
|
231
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
232
|
-
*/
|
|
233
|
-
readonly type?: string;
|
|
234
|
-
/**
|
|
235
|
-
* Metadata pertaining to creation and last modification of the resource
|
|
236
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
237
|
-
*/
|
|
238
|
-
readonly systemData?: SystemData;
|
|
239
|
-
/**
|
|
240
|
-
* The creation time of the resource.
|
|
241
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
242
|
-
*/
|
|
243
|
-
readonly createdTime?: Date;
|
|
244
|
-
/**
|
|
245
|
-
* Provision states for confluent RP. Possible values include: 'Accepted', 'Creating',
|
|
246
|
-
* 'Updating', 'Deleting', 'Succeeded', 'Failed', 'Canceled', 'Deleted', 'NotSpecified'
|
|
247
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
248
|
-
*/
|
|
249
|
-
readonly provisioningState?: ProvisionState;
|
|
250
|
-
/**
|
|
251
|
-
* Id of the Confluent organization.
|
|
252
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
253
|
-
*/
|
|
254
|
-
readonly organizationId?: string;
|
|
255
|
-
/**
|
|
256
|
-
* SSO url for the Confluent organization.
|
|
257
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
258
|
-
*/
|
|
259
|
-
readonly ssoUrl?: string;
|
|
260
|
-
/**
|
|
261
|
-
* Confluent offer detail
|
|
262
|
-
*/
|
|
263
|
-
offerDetail: OfferDetail;
|
|
264
|
-
/**
|
|
265
|
-
* Subscriber detail
|
|
266
|
-
*/
|
|
267
|
-
userDetail: UserDetail;
|
|
268
|
-
/**
|
|
269
|
-
* Organization resource tags
|
|
270
|
-
*/
|
|
271
|
-
tags?: {
|
|
272
|
-
[propertyName: string]: string;
|
|
273
|
-
};
|
|
274
|
-
/**
|
|
275
|
-
* Location of Organization resource
|
|
276
|
-
*/
|
|
277
|
-
location?: string;
|
|
278
|
-
}
|
|
279
|
-
/**
|
|
280
|
-
* Organization Resource update
|
|
281
|
-
*/
|
|
282
|
-
export interface OrganizationResourceUpdate {
|
|
283
|
-
/**
|
|
284
|
-
* ARM resource tags
|
|
285
|
-
*/
|
|
286
|
-
tags?: {
|
|
287
|
-
[propertyName: string]: string;
|
|
288
|
-
};
|
|
289
|
-
}
|
|
290
|
-
/**
|
|
291
|
-
* Optional Parameters.
|
|
292
|
-
*/
|
|
293
|
-
export interface MarketplaceAgreementsCreateOptionalParams extends msRest.RequestOptionsBase {
|
|
294
|
-
/**
|
|
295
|
-
* Confluent Marketplace Agreement resource
|
|
296
|
-
*/
|
|
297
|
-
body?: ConfluentAgreementResource;
|
|
298
|
-
}
|
|
299
|
-
/**
|
|
300
|
-
* Optional Parameters.
|
|
301
|
-
*/
|
|
302
|
-
export interface OrganizationCreateOptionalParams extends msRest.RequestOptionsBase {
|
|
303
|
-
/**
|
|
304
|
-
* Organization resource model
|
|
305
|
-
*/
|
|
306
|
-
body?: OrganizationResource;
|
|
307
|
-
}
|
|
308
|
-
/**
|
|
309
|
-
* Optional Parameters.
|
|
310
|
-
*/
|
|
311
|
-
export interface OrganizationUpdateOptionalParams extends msRest.RequestOptionsBase {
|
|
312
|
-
/**
|
|
313
|
-
* Updated Organization resource
|
|
314
|
-
*/
|
|
315
|
-
body?: OrganizationResourceUpdate;
|
|
316
|
-
}
|
|
317
|
-
/**
|
|
318
|
-
* Optional Parameters.
|
|
319
|
-
*/
|
|
320
|
-
export interface OrganizationBeginCreateOptionalParams extends msRest.RequestOptionsBase {
|
|
321
|
-
/**
|
|
322
|
-
* Organization resource model
|
|
323
|
-
*/
|
|
324
|
-
body?: OrganizationResource;
|
|
325
|
-
}
|
|
326
|
-
/**
|
|
327
|
-
* An interface representing ConfluentManagementClientOptions.
|
|
328
|
-
*/
|
|
329
|
-
export interface ConfluentManagementClientOptions extends AzureServiceClientOptions {
|
|
330
|
-
baseUri?: string;
|
|
331
|
-
}
|
|
332
|
-
/**
|
|
333
|
-
* @interface
|
|
334
|
-
* Response of a list operation.
|
|
335
|
-
* @extends Array<ConfluentAgreementResource>
|
|
336
|
-
*/
|
|
337
|
-
export interface ConfluentAgreementResourceListResponse extends Array<ConfluentAgreementResource> {
|
|
338
|
-
/**
|
|
339
|
-
* Link to the next set of results, if any.
|
|
340
|
-
*/
|
|
341
|
-
nextLink?: string;
|
|
342
|
-
}
|
|
343
|
-
/**
|
|
344
|
-
* @interface
|
|
345
|
-
* Result of GET request to list Confluent operations.
|
|
346
|
-
* @extends Array<OperationResult>
|
|
347
|
-
*/
|
|
348
|
-
export interface OperationListResult extends Array<OperationResult> {
|
|
349
|
-
/**
|
|
350
|
-
* URL to get the next set of operation list results if there are any.
|
|
351
|
-
*/
|
|
352
|
-
nextLink?: string;
|
|
353
|
-
}
|
|
354
|
-
/**
|
|
355
|
-
* @interface
|
|
356
|
-
* The response of a list operation.
|
|
357
|
-
* @extends Array<OrganizationResource>
|
|
358
|
-
*/
|
|
359
|
-
export interface OrganizationResourceListResult extends Array<OrganizationResource> {
|
|
360
|
-
/**
|
|
361
|
-
* Link to the next set of results, if any.
|
|
362
|
-
*/
|
|
363
|
-
nextLink?: string;
|
|
364
|
-
}
|
|
365
|
-
/**
|
|
366
|
-
* Defines values for CreatedByType.
|
|
367
|
-
* Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key'
|
|
368
|
-
* @readonly
|
|
369
|
-
* @enum {string}
|
|
370
|
-
*/
|
|
371
|
-
export declare type CreatedByType = 'User' | 'Application' | 'ManagedIdentity' | 'Key';
|
|
372
|
-
/**
|
|
373
|
-
* Defines values for ProvisionState.
|
|
374
|
-
* Possible values include: 'Accepted', 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed',
|
|
375
|
-
* 'Canceled', 'Deleted', 'NotSpecified'
|
|
376
|
-
* @readonly
|
|
377
|
-
* @enum {string}
|
|
378
|
-
*/
|
|
379
|
-
export declare type ProvisionState = 'Accepted' | 'Creating' | 'Updating' | 'Deleting' | 'Succeeded' | 'Failed' | 'Canceled' | 'Deleted' | 'NotSpecified';
|
|
380
|
-
/**
|
|
381
|
-
* Defines values for SaaSOfferStatus.
|
|
382
|
-
* Possible values include: 'Started', 'PendingFulfillmentStart', 'InProgress', 'Subscribed',
|
|
383
|
-
* 'Suspended', 'Reinstated', 'Succeeded', 'Failed', 'Unsubscribed', 'Updating'
|
|
384
|
-
* @readonly
|
|
385
|
-
* @enum {string}
|
|
386
|
-
*/
|
|
387
|
-
export declare type SaaSOfferStatus = 'Started' | 'PendingFulfillmentStart' | 'InProgress' | 'Subscribed' | 'Suspended' | 'Reinstated' | 'Succeeded' | 'Failed' | 'Unsubscribed' | 'Updating';
|
|
388
|
-
/**
|
|
389
|
-
* Contains response data for the list operation.
|
|
390
|
-
*/
|
|
391
|
-
export declare type MarketplaceAgreementsListResponse = ConfluentAgreementResourceListResponse & {
|
|
392
|
-
/**
|
|
393
|
-
* The underlying HTTP response.
|
|
394
|
-
*/
|
|
395
|
-
_response: msRest.HttpResponse & {
|
|
396
|
-
/**
|
|
397
|
-
* The response body as text (string format)
|
|
398
|
-
*/
|
|
399
|
-
bodyAsText: string;
|
|
400
|
-
/**
|
|
401
|
-
* The response body as parsed JSON or XML
|
|
402
|
-
*/
|
|
403
|
-
parsedBody: ConfluentAgreementResourceListResponse;
|
|
404
|
-
};
|
|
405
|
-
};
|
|
406
|
-
/**
|
|
407
|
-
* Contains response data for the create operation.
|
|
408
|
-
*/
|
|
409
|
-
export declare type MarketplaceAgreementsCreateResponse = ConfluentAgreementResource & {
|
|
410
|
-
/**
|
|
411
|
-
* The underlying HTTP response.
|
|
412
|
-
*/
|
|
413
|
-
_response: msRest.HttpResponse & {
|
|
414
|
-
/**
|
|
415
|
-
* The response body as text (string format)
|
|
416
|
-
*/
|
|
417
|
-
bodyAsText: string;
|
|
418
|
-
/**
|
|
419
|
-
* The response body as parsed JSON or XML
|
|
420
|
-
*/
|
|
421
|
-
parsedBody: ConfluentAgreementResource;
|
|
422
|
-
};
|
|
423
|
-
};
|
|
424
|
-
/**
|
|
425
|
-
* Contains response data for the listNext operation.
|
|
426
|
-
*/
|
|
427
|
-
export declare type MarketplaceAgreementsListNextResponse = ConfluentAgreementResourceListResponse & {
|
|
428
|
-
/**
|
|
429
|
-
* The underlying HTTP response.
|
|
430
|
-
*/
|
|
431
|
-
_response: msRest.HttpResponse & {
|
|
432
|
-
/**
|
|
433
|
-
* The response body as text (string format)
|
|
434
|
-
*/
|
|
435
|
-
bodyAsText: string;
|
|
436
|
-
/**
|
|
437
|
-
* The response body as parsed JSON or XML
|
|
438
|
-
*/
|
|
439
|
-
parsedBody: ConfluentAgreementResourceListResponse;
|
|
440
|
-
};
|
|
441
|
-
};
|
|
442
|
-
/**
|
|
443
|
-
* Contains response data for the list operation.
|
|
444
|
-
*/
|
|
445
|
-
export declare type OrganizationOperationsListResponse = OperationListResult & {
|
|
446
|
-
/**
|
|
447
|
-
* The underlying HTTP response.
|
|
448
|
-
*/
|
|
449
|
-
_response: msRest.HttpResponse & {
|
|
450
|
-
/**
|
|
451
|
-
* The response body as text (string format)
|
|
452
|
-
*/
|
|
453
|
-
bodyAsText: string;
|
|
454
|
-
/**
|
|
455
|
-
* The response body as parsed JSON or XML
|
|
456
|
-
*/
|
|
457
|
-
parsedBody: OperationListResult;
|
|
458
|
-
};
|
|
459
|
-
};
|
|
460
|
-
/**
|
|
461
|
-
* Contains response data for the listNext operation.
|
|
462
|
-
*/
|
|
463
|
-
export declare type OrganizationOperationsListNextResponse = OperationListResult & {
|
|
464
|
-
/**
|
|
465
|
-
* The underlying HTTP response.
|
|
466
|
-
*/
|
|
467
|
-
_response: msRest.HttpResponse & {
|
|
468
|
-
/**
|
|
469
|
-
* The response body as text (string format)
|
|
470
|
-
*/
|
|
471
|
-
bodyAsText: string;
|
|
472
|
-
/**
|
|
473
|
-
* The response body as parsed JSON or XML
|
|
474
|
-
*/
|
|
475
|
-
parsedBody: OperationListResult;
|
|
476
|
-
};
|
|
477
|
-
};
|
|
478
|
-
/**
|
|
479
|
-
* Contains response data for the listBySubscription operation.
|
|
480
|
-
*/
|
|
481
|
-
export declare type OrganizationListBySubscriptionResponse = OrganizationResourceListResult & {
|
|
482
|
-
/**
|
|
483
|
-
* The underlying HTTP response.
|
|
484
|
-
*/
|
|
485
|
-
_response: msRest.HttpResponse & {
|
|
486
|
-
/**
|
|
487
|
-
* The response body as text (string format)
|
|
488
|
-
*/
|
|
489
|
-
bodyAsText: string;
|
|
490
|
-
/**
|
|
491
|
-
* The response body as parsed JSON or XML
|
|
492
|
-
*/
|
|
493
|
-
parsedBody: OrganizationResourceListResult;
|
|
494
|
-
};
|
|
495
|
-
};
|
|
496
|
-
/**
|
|
497
|
-
* Contains response data for the listByResourceGroup operation.
|
|
498
|
-
*/
|
|
499
|
-
export declare type OrganizationListByResourceGroupResponse = OrganizationResourceListResult & {
|
|
500
|
-
/**
|
|
501
|
-
* The underlying HTTP response.
|
|
502
|
-
*/
|
|
503
|
-
_response: msRest.HttpResponse & {
|
|
504
|
-
/**
|
|
505
|
-
* The response body as text (string format)
|
|
506
|
-
*/
|
|
507
|
-
bodyAsText: string;
|
|
508
|
-
/**
|
|
509
|
-
* The response body as parsed JSON or XML
|
|
510
|
-
*/
|
|
511
|
-
parsedBody: OrganizationResourceListResult;
|
|
512
|
-
};
|
|
513
|
-
};
|
|
514
|
-
/**
|
|
515
|
-
* Contains response data for the get operation.
|
|
516
|
-
*/
|
|
517
|
-
export declare type OrganizationGetResponse = OrganizationResource & {
|
|
518
|
-
/**
|
|
519
|
-
* The underlying HTTP response.
|
|
520
|
-
*/
|
|
521
|
-
_response: msRest.HttpResponse & {
|
|
522
|
-
/**
|
|
523
|
-
* The response body as text (string format)
|
|
524
|
-
*/
|
|
525
|
-
bodyAsText: string;
|
|
526
|
-
/**
|
|
527
|
-
* The response body as parsed JSON or XML
|
|
528
|
-
*/
|
|
529
|
-
parsedBody: OrganizationResource;
|
|
530
|
-
};
|
|
531
|
-
};
|
|
532
|
-
/**
|
|
533
|
-
* Contains response data for the create operation.
|
|
534
|
-
*/
|
|
535
|
-
export declare type OrganizationCreateResponse = OrganizationResource & {
|
|
536
|
-
/**
|
|
537
|
-
* The underlying HTTP response.
|
|
538
|
-
*/
|
|
539
|
-
_response: msRest.HttpResponse & {
|
|
540
|
-
/**
|
|
541
|
-
* The response body as text (string format)
|
|
542
|
-
*/
|
|
543
|
-
bodyAsText: string;
|
|
544
|
-
/**
|
|
545
|
-
* The response body as parsed JSON or XML
|
|
546
|
-
*/
|
|
547
|
-
parsedBody: OrganizationResource;
|
|
548
|
-
};
|
|
549
|
-
};
|
|
550
|
-
/**
|
|
551
|
-
* Contains response data for the update operation.
|
|
552
|
-
*/
|
|
553
|
-
export declare type OrganizationUpdateResponse = OrganizationResource & {
|
|
554
|
-
/**
|
|
555
|
-
* The underlying HTTP response.
|
|
556
|
-
*/
|
|
557
|
-
_response: msRest.HttpResponse & {
|
|
558
|
-
/**
|
|
559
|
-
* The response body as text (string format)
|
|
560
|
-
*/
|
|
561
|
-
bodyAsText: string;
|
|
562
|
-
/**
|
|
563
|
-
* The response body as parsed JSON or XML
|
|
564
|
-
*/
|
|
565
|
-
parsedBody: OrganizationResource;
|
|
566
|
-
};
|
|
567
|
-
};
|
|
568
|
-
/**
|
|
569
|
-
* Contains response data for the beginCreate operation.
|
|
570
|
-
*/
|
|
571
|
-
export declare type OrganizationBeginCreateResponse = OrganizationResource & {
|
|
572
|
-
/**
|
|
573
|
-
* The underlying HTTP response.
|
|
574
|
-
*/
|
|
575
|
-
_response: msRest.HttpResponse & {
|
|
576
|
-
/**
|
|
577
|
-
* The response body as text (string format)
|
|
578
|
-
*/
|
|
579
|
-
bodyAsText: string;
|
|
580
|
-
/**
|
|
581
|
-
* The response body as parsed JSON or XML
|
|
582
|
-
*/
|
|
583
|
-
parsedBody: OrganizationResource;
|
|
584
|
-
};
|
|
585
|
-
};
|
|
586
|
-
/**
|
|
587
|
-
* Contains response data for the listBySubscriptionNext operation.
|
|
588
|
-
*/
|
|
589
|
-
export declare type OrganizationListBySubscriptionNextResponse = OrganizationResourceListResult & {
|
|
590
|
-
/**
|
|
591
|
-
* The underlying HTTP response.
|
|
592
|
-
*/
|
|
593
|
-
_response: msRest.HttpResponse & {
|
|
594
|
-
/**
|
|
595
|
-
* The response body as text (string format)
|
|
596
|
-
*/
|
|
597
|
-
bodyAsText: string;
|
|
598
|
-
/**
|
|
599
|
-
* The response body as parsed JSON or XML
|
|
600
|
-
*/
|
|
601
|
-
parsedBody: OrganizationResourceListResult;
|
|
602
|
-
};
|
|
603
|
-
};
|
|
604
|
-
/**
|
|
605
|
-
* Contains response data for the listByResourceGroupNext operation.
|
|
606
|
-
*/
|
|
607
|
-
export declare type OrganizationListByResourceGroupNextResponse = OrganizationResourceListResult & {
|
|
608
|
-
/**
|
|
609
|
-
* The underlying HTTP response.
|
|
610
|
-
*/
|
|
611
|
-
_response: msRest.HttpResponse & {
|
|
612
|
-
/**
|
|
613
|
-
* The response body as text (string format)
|
|
614
|
-
*/
|
|
615
|
-
bodyAsText: string;
|
|
616
|
-
/**
|
|
617
|
-
* The response body as parsed JSON or XML
|
|
618
|
-
*/
|
|
619
|
-
parsedBody: OrganizationResourceListResult;
|
|
620
|
-
};
|
|
621
|
-
};
|
|
622
|
-
/**
|
|
623
|
-
* Contains response data for the validateOrganization operation.
|
|
624
|
-
*/
|
|
625
|
-
export declare type ValidationsValidateOrganizationResponse = OrganizationResource & {
|
|
626
|
-
/**
|
|
627
|
-
* The underlying HTTP response.
|
|
628
|
-
*/
|
|
629
|
-
_response: msRest.HttpResponse & {
|
|
630
|
-
/**
|
|
631
|
-
* The response body as text (string format)
|
|
632
|
-
*/
|
|
633
|
-
bodyAsText: string;
|
|
634
|
-
/**
|
|
635
|
-
* The response body as parsed JSON or XML
|
|
636
|
-
*/
|
|
637
|
-
parsedBody: OrganizationResource;
|
|
638
|
-
};
|
|
639
|
-
};
|
|
640
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
|
package/esm/models/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
|
package/esm/models/mappers.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
export declare const CloudError: msRest.CompositeMapper;
|
|
3
|
-
export declare const BaseResource: msRest.CompositeMapper;
|
|
4
|
-
export declare const SystemData: msRest.CompositeMapper;
|
|
5
|
-
export declare const ConfluentAgreementResource: msRest.CompositeMapper;
|
|
6
|
-
export declare const OperationDisplay: msRest.CompositeMapper;
|
|
7
|
-
export declare const OperationResult: msRest.CompositeMapper;
|
|
8
|
-
export declare const ErrorResponseBody: msRest.CompositeMapper;
|
|
9
|
-
export declare const ResourceProviderDefaultErrorResponse: msRest.CompositeMapper;
|
|
10
|
-
export declare const OfferDetail: msRest.CompositeMapper;
|
|
11
|
-
export declare const UserDetail: msRest.CompositeMapper;
|
|
12
|
-
export declare const OrganizationResource: msRest.CompositeMapper;
|
|
13
|
-
export declare const OrganizationResourceUpdate: msRest.CompositeMapper;
|
|
14
|
-
export declare const ConfluentAgreementResourceListResponse: msRest.CompositeMapper;
|
|
15
|
-
export declare const OperationListResult: msRest.CompositeMapper;
|
|
16
|
-
export declare const OrganizationResourceListResult: msRest.CompositeMapper;
|
|
17
|
-
//# sourceMappingURL=mappers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,UAAU,wBAAmB,CAAC;AAC3C,eAAO,MAAM,YAAY,wBAAqB,CAAC;AAE/C,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,eA4C/B,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,MAAM,CAAC,eAqF/C,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,eAgCrC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,eA2BpC,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,eA0CtC,CAAC;AAEF,eAAO,MAAM,oCAAoC,EAAE,MAAM,CAAC,eAgBzD,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,eAgEhC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,eAoC/B,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,eAkGzC,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,MAAM,CAAC,eAmB/C,CAAC;AAEF,eAAO,MAAM,sCAAsC,EAAE,MAAM,CAAC,eA0B3D,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eA0BxC,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,MAAM,CAAC,eA0BnD,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"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"}
|