@azure/arm-confluent 2.0.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 -70
- 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 -31
- package/review/arm-confluent.api.md +352 -0
- package/rollup.config.js +181 -30
- package/src/confluentManagementClient.ts +73 -32
- package/src/{models/validationsMappers.ts → index.ts} +4 -10
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +297 -572
- 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 +107 -132
- package/src/operations/organization.ts +414 -300
- package/src/operations/organizationOperations.ts +87 -75
- package/src/operations/validations.ts +39 -79
- 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 -1426
- 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 -21
- package/esm/confluentManagementClient.d.ts.map +0 -1
- package/esm/confluentManagementClient.js +0 -35
- package/esm/confluentManagementClient.js.map +0 -1
- package/esm/confluentManagementClientContext.d.ts +0 -16
- package/esm/confluentManagementClientContext.d.ts.map +0 -1
- package/esm/confluentManagementClientContext.js +0 -56
- 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 -95
- 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 -59
- package/esm/operations/validations.js.map +0 -1
- package/src/confluentManagementClientContext.ts +0 -68
- package/src/models/marketplaceAgreementsMappers.ts +0 -19
- package/src/models/organizationMappers.ts +0 -20
|
@@ -5,83 +5,59 @@
|
|
|
5
5
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
6
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
7
|
*/
|
|
8
|
-
|
|
9
|
-
export var CloudError = CloudErrorMapper;
|
|
10
|
-
export var BaseResource = BaseResourceMapper;
|
|
11
|
-
export var SystemData = {
|
|
12
|
-
serializedName: "systemData",
|
|
8
|
+
export const ConfluentAgreementResourceListResponse = {
|
|
13
9
|
type: {
|
|
14
10
|
name: "Composite",
|
|
15
|
-
className: "
|
|
11
|
+
className: "ConfluentAgreementResourceListResponse",
|
|
16
12
|
modelProperties: {
|
|
17
|
-
|
|
18
|
-
serializedName: "
|
|
19
|
-
type: {
|
|
20
|
-
name: "String"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
createdByType: {
|
|
24
|
-
serializedName: "createdByType",
|
|
25
|
-
type: {
|
|
26
|
-
name: "String"
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
createdAt: {
|
|
30
|
-
serializedName: "createdAt",
|
|
31
|
-
type: {
|
|
32
|
-
name: "DateTime"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
lastModifiedBy: {
|
|
36
|
-
serializedName: "lastModifiedBy",
|
|
13
|
+
value: {
|
|
14
|
+
serializedName: "value",
|
|
37
15
|
type: {
|
|
38
|
-
name: "
|
|
16
|
+
name: "Sequence",
|
|
17
|
+
element: {
|
|
18
|
+
type: {
|
|
19
|
+
name: "Composite",
|
|
20
|
+
className: "ConfluentAgreementResource"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
39
23
|
}
|
|
40
24
|
},
|
|
41
|
-
|
|
42
|
-
serializedName: "
|
|
25
|
+
nextLink: {
|
|
26
|
+
serializedName: "nextLink",
|
|
43
27
|
type: {
|
|
44
28
|
name: "String"
|
|
45
29
|
}
|
|
46
|
-
},
|
|
47
|
-
lastModifiedAt: {
|
|
48
|
-
serializedName: "lastModifiedAt",
|
|
49
|
-
type: {
|
|
50
|
-
name: "DateTime"
|
|
51
|
-
}
|
|
52
30
|
}
|
|
53
31
|
}
|
|
54
32
|
}
|
|
55
33
|
};
|
|
56
|
-
export
|
|
57
|
-
serializedName: "ConfluentAgreementResource",
|
|
34
|
+
export const ConfluentAgreementResource = {
|
|
58
35
|
type: {
|
|
59
36
|
name: "Composite",
|
|
60
37
|
className: "ConfluentAgreementResource",
|
|
61
38
|
modelProperties: {
|
|
62
39
|
id: {
|
|
63
|
-
readOnly: true,
|
|
64
40
|
serializedName: "id",
|
|
41
|
+
readOnly: true,
|
|
65
42
|
type: {
|
|
66
43
|
name: "String"
|
|
67
44
|
}
|
|
68
45
|
},
|
|
69
46
|
name: {
|
|
70
|
-
readOnly: true,
|
|
71
47
|
serializedName: "name",
|
|
48
|
+
readOnly: true,
|
|
72
49
|
type: {
|
|
73
50
|
name: "String"
|
|
74
51
|
}
|
|
75
52
|
},
|
|
76
53
|
type: {
|
|
77
|
-
readOnly: true,
|
|
78
54
|
serializedName: "type",
|
|
55
|
+
readOnly: true,
|
|
79
56
|
type: {
|
|
80
57
|
name: "String"
|
|
81
58
|
}
|
|
82
59
|
},
|
|
83
60
|
systemData: {
|
|
84
|
-
readOnly: true,
|
|
85
61
|
serializedName: "systemData",
|
|
86
62
|
type: {
|
|
87
63
|
name: "Composite",
|
|
@@ -139,97 +115,94 @@ export var ConfluentAgreementResource = {
|
|
|
139
115
|
}
|
|
140
116
|
}
|
|
141
117
|
};
|
|
142
|
-
export
|
|
143
|
-
serializedName: "OperationDisplay",
|
|
118
|
+
export const SystemData = {
|
|
144
119
|
type: {
|
|
145
120
|
name: "Composite",
|
|
146
|
-
className: "
|
|
121
|
+
className: "SystemData",
|
|
147
122
|
modelProperties: {
|
|
148
|
-
|
|
149
|
-
serializedName: "
|
|
123
|
+
createdBy: {
|
|
124
|
+
serializedName: "createdBy",
|
|
150
125
|
type: {
|
|
151
126
|
name: "String"
|
|
152
127
|
}
|
|
153
128
|
},
|
|
154
|
-
|
|
155
|
-
serializedName: "
|
|
129
|
+
createdByType: {
|
|
130
|
+
serializedName: "createdByType",
|
|
156
131
|
type: {
|
|
157
132
|
name: "String"
|
|
158
133
|
}
|
|
159
134
|
},
|
|
160
|
-
|
|
161
|
-
serializedName: "
|
|
135
|
+
createdAt: {
|
|
136
|
+
serializedName: "createdAt",
|
|
137
|
+
type: {
|
|
138
|
+
name: "DateTime"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
lastModifiedBy: {
|
|
142
|
+
serializedName: "lastModifiedBy",
|
|
162
143
|
type: {
|
|
163
144
|
name: "String"
|
|
164
145
|
}
|
|
165
146
|
},
|
|
166
|
-
|
|
167
|
-
serializedName: "
|
|
147
|
+
lastModifiedByType: {
|
|
148
|
+
serializedName: "lastModifiedByType",
|
|
168
149
|
type: {
|
|
169
150
|
name: "String"
|
|
170
151
|
}
|
|
152
|
+
},
|
|
153
|
+
lastModifiedAt: {
|
|
154
|
+
serializedName: "lastModifiedAt",
|
|
155
|
+
type: {
|
|
156
|
+
name: "DateTime"
|
|
157
|
+
}
|
|
171
158
|
}
|
|
172
159
|
}
|
|
173
160
|
}
|
|
174
161
|
};
|
|
175
|
-
export
|
|
176
|
-
serializedName: "OperationResult",
|
|
162
|
+
export const ResourceProviderDefaultErrorResponse = {
|
|
177
163
|
type: {
|
|
178
164
|
name: "Composite",
|
|
179
|
-
className: "
|
|
165
|
+
className: "ResourceProviderDefaultErrorResponse",
|
|
180
166
|
modelProperties: {
|
|
181
|
-
|
|
182
|
-
serializedName: "
|
|
183
|
-
type: {
|
|
184
|
-
name: "String"
|
|
185
|
-
}
|
|
186
|
-
},
|
|
187
|
-
display: {
|
|
188
|
-
serializedName: "display",
|
|
167
|
+
error: {
|
|
168
|
+
serializedName: "error",
|
|
189
169
|
type: {
|
|
190
170
|
name: "Composite",
|
|
191
|
-
className: "
|
|
192
|
-
}
|
|
193
|
-
},
|
|
194
|
-
isDataAction: {
|
|
195
|
-
serializedName: "isDataAction",
|
|
196
|
-
type: {
|
|
197
|
-
name: "Boolean"
|
|
171
|
+
className: "ErrorResponseBody"
|
|
198
172
|
}
|
|
199
173
|
}
|
|
200
174
|
}
|
|
201
175
|
}
|
|
202
176
|
};
|
|
203
|
-
export
|
|
204
|
-
serializedName: "ErrorResponseBody",
|
|
177
|
+
export const ErrorResponseBody = {
|
|
205
178
|
type: {
|
|
206
179
|
name: "Composite",
|
|
207
180
|
className: "ErrorResponseBody",
|
|
208
181
|
modelProperties: {
|
|
209
182
|
code: {
|
|
210
|
-
readOnly: true,
|
|
211
183
|
serializedName: "code",
|
|
184
|
+
readOnly: true,
|
|
212
185
|
type: {
|
|
213
186
|
name: "String"
|
|
214
187
|
}
|
|
215
188
|
},
|
|
216
189
|
message: {
|
|
217
|
-
readOnly: true,
|
|
218
190
|
serializedName: "message",
|
|
191
|
+
readOnly: true,
|
|
219
192
|
type: {
|
|
220
193
|
name: "String"
|
|
221
194
|
}
|
|
222
195
|
},
|
|
223
196
|
target: {
|
|
224
|
-
readOnly: true,
|
|
225
197
|
serializedName: "target",
|
|
198
|
+
readOnly: true,
|
|
226
199
|
type: {
|
|
227
200
|
name: "String"
|
|
228
201
|
}
|
|
229
202
|
},
|
|
230
203
|
details: {
|
|
231
|
-
readOnly: true,
|
|
232
204
|
serializedName: "details",
|
|
205
|
+
readOnly: true,
|
|
233
206
|
type: {
|
|
234
207
|
name: "Sequence",
|
|
235
208
|
element: {
|
|
@@ -243,81 +216,84 @@ export var ErrorResponseBody = {
|
|
|
243
216
|
}
|
|
244
217
|
}
|
|
245
218
|
};
|
|
246
|
-
export
|
|
247
|
-
serializedName: "ResourceProviderDefaultErrorResponse",
|
|
219
|
+
export const OperationListResult = {
|
|
248
220
|
type: {
|
|
249
221
|
name: "Composite",
|
|
250
|
-
className: "
|
|
222
|
+
className: "OperationListResult",
|
|
251
223
|
modelProperties: {
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
serializedName: "error",
|
|
224
|
+
value: {
|
|
225
|
+
serializedName: "value",
|
|
255
226
|
type: {
|
|
256
|
-
name: "
|
|
257
|
-
|
|
227
|
+
name: "Sequence",
|
|
228
|
+
element: {
|
|
229
|
+
type: {
|
|
230
|
+
name: "Composite",
|
|
231
|
+
className: "OperationResult"
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
nextLink: {
|
|
237
|
+
serializedName: "nextLink",
|
|
238
|
+
type: {
|
|
239
|
+
name: "String"
|
|
258
240
|
}
|
|
259
241
|
}
|
|
260
242
|
}
|
|
261
243
|
}
|
|
262
244
|
};
|
|
263
|
-
export
|
|
264
|
-
serializedName: "OfferDetail",
|
|
245
|
+
export const OperationResult = {
|
|
265
246
|
type: {
|
|
266
247
|
name: "Composite",
|
|
267
|
-
className: "
|
|
248
|
+
className: "OperationResult",
|
|
268
249
|
modelProperties: {
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
serializedName: "publisherId",
|
|
272
|
-
constraints: {
|
|
273
|
-
MaxLength: 50
|
|
274
|
-
},
|
|
250
|
+
name: {
|
|
251
|
+
serializedName: "name",
|
|
275
252
|
type: {
|
|
276
253
|
name: "String"
|
|
277
254
|
}
|
|
278
255
|
},
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
serializedName: "id",
|
|
282
|
-
constraints: {
|
|
283
|
-
MaxLength: 50
|
|
284
|
-
},
|
|
256
|
+
display: {
|
|
257
|
+
serializedName: "display",
|
|
285
258
|
type: {
|
|
286
|
-
name: "
|
|
259
|
+
name: "Composite",
|
|
260
|
+
className: "OperationDisplay"
|
|
287
261
|
}
|
|
288
262
|
},
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
263
|
+
isDataAction: {
|
|
264
|
+
serializedName: "isDataAction",
|
|
265
|
+
type: {
|
|
266
|
+
name: "Boolean"
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
};
|
|
272
|
+
export const OperationDisplay = {
|
|
273
|
+
type: {
|
|
274
|
+
name: "Composite",
|
|
275
|
+
className: "OperationDisplay",
|
|
276
|
+
modelProperties: {
|
|
277
|
+
provider: {
|
|
278
|
+
serializedName: "provider",
|
|
295
279
|
type: {
|
|
296
280
|
name: "String"
|
|
297
281
|
}
|
|
298
282
|
},
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
serializedName: "planName",
|
|
302
|
-
constraints: {
|
|
303
|
-
MaxLength: 50
|
|
304
|
-
},
|
|
283
|
+
resource: {
|
|
284
|
+
serializedName: "resource",
|
|
305
285
|
type: {
|
|
306
286
|
name: "String"
|
|
307
287
|
}
|
|
308
288
|
},
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
serializedName: "termUnit",
|
|
312
|
-
constraints: {
|
|
313
|
-
MaxLength: 25
|
|
314
|
-
},
|
|
289
|
+
operation: {
|
|
290
|
+
serializedName: "operation",
|
|
315
291
|
type: {
|
|
316
292
|
name: "String"
|
|
317
293
|
}
|
|
318
294
|
},
|
|
319
|
-
|
|
320
|
-
serializedName: "
|
|
295
|
+
description: {
|
|
296
|
+
serializedName: "description",
|
|
321
297
|
type: {
|
|
322
298
|
name: "String"
|
|
323
299
|
}
|
|
@@ -325,36 +301,25 @@ export var OfferDetail = {
|
|
|
325
301
|
}
|
|
326
302
|
}
|
|
327
303
|
};
|
|
328
|
-
export
|
|
329
|
-
serializedName: "UserDetail",
|
|
304
|
+
export const OrganizationResourceListResult = {
|
|
330
305
|
type: {
|
|
331
306
|
name: "Composite",
|
|
332
|
-
className: "
|
|
307
|
+
className: "OrganizationResourceListResult",
|
|
333
308
|
modelProperties: {
|
|
334
|
-
|
|
335
|
-
serializedName: "
|
|
336
|
-
constraints: {
|
|
337
|
-
MaxLength: 50
|
|
338
|
-
},
|
|
339
|
-
type: {
|
|
340
|
-
name: "String"
|
|
341
|
-
}
|
|
342
|
-
},
|
|
343
|
-
lastName: {
|
|
344
|
-
serializedName: "lastName",
|
|
345
|
-
constraints: {
|
|
346
|
-
MaxLength: 50
|
|
347
|
-
},
|
|
309
|
+
value: {
|
|
310
|
+
serializedName: "value",
|
|
348
311
|
type: {
|
|
349
|
-
name: "
|
|
312
|
+
name: "Sequence",
|
|
313
|
+
element: {
|
|
314
|
+
type: {
|
|
315
|
+
name: "Composite",
|
|
316
|
+
className: "OrganizationResource"
|
|
317
|
+
}
|
|
318
|
+
}
|
|
350
319
|
}
|
|
351
320
|
},
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
serializedName: "emailAddress",
|
|
355
|
-
constraints: {
|
|
356
|
-
Pattern: /^\S+@\S+\.\S+$/
|
|
357
|
-
},
|
|
321
|
+
nextLink: {
|
|
322
|
+
serializedName: "nextLink",
|
|
358
323
|
type: {
|
|
359
324
|
name: "String"
|
|
360
325
|
}
|
|
@@ -362,71 +327,81 @@ export var UserDetail = {
|
|
|
362
327
|
}
|
|
363
328
|
}
|
|
364
329
|
};
|
|
365
|
-
export
|
|
366
|
-
serializedName: "OrganizationResource",
|
|
330
|
+
export const OrganizationResource = {
|
|
367
331
|
type: {
|
|
368
332
|
name: "Composite",
|
|
369
333
|
className: "OrganizationResource",
|
|
370
334
|
modelProperties: {
|
|
371
335
|
id: {
|
|
372
|
-
readOnly: true,
|
|
373
336
|
serializedName: "id",
|
|
337
|
+
readOnly: true,
|
|
374
338
|
type: {
|
|
375
339
|
name: "String"
|
|
376
340
|
}
|
|
377
341
|
},
|
|
378
342
|
name: {
|
|
379
|
-
readOnly: true,
|
|
380
343
|
serializedName: "name",
|
|
344
|
+
readOnly: true,
|
|
381
345
|
type: {
|
|
382
346
|
name: "String"
|
|
383
347
|
}
|
|
384
348
|
},
|
|
385
349
|
type: {
|
|
386
|
-
readOnly: true,
|
|
387
350
|
serializedName: "type",
|
|
351
|
+
readOnly: true,
|
|
388
352
|
type: {
|
|
389
353
|
name: "String"
|
|
390
354
|
}
|
|
391
355
|
},
|
|
392
356
|
systemData: {
|
|
393
|
-
readOnly: true,
|
|
394
357
|
serializedName: "systemData",
|
|
395
358
|
type: {
|
|
396
359
|
name: "Composite",
|
|
397
360
|
className: "SystemData"
|
|
398
361
|
}
|
|
399
362
|
},
|
|
363
|
+
tags: {
|
|
364
|
+
serializedName: "tags",
|
|
365
|
+
type: {
|
|
366
|
+
name: "Dictionary",
|
|
367
|
+
value: { type: { name: "String" } }
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
location: {
|
|
371
|
+
serializedName: "location",
|
|
372
|
+
type: {
|
|
373
|
+
name: "String"
|
|
374
|
+
}
|
|
375
|
+
},
|
|
400
376
|
createdTime: {
|
|
401
|
-
readOnly: true,
|
|
402
377
|
serializedName: "properties.createdTime",
|
|
378
|
+
readOnly: true,
|
|
403
379
|
type: {
|
|
404
380
|
name: "DateTime"
|
|
405
381
|
}
|
|
406
382
|
},
|
|
407
383
|
provisioningState: {
|
|
408
|
-
readOnly: true,
|
|
409
384
|
serializedName: "properties.provisioningState",
|
|
385
|
+
readOnly: true,
|
|
410
386
|
type: {
|
|
411
387
|
name: "String"
|
|
412
388
|
}
|
|
413
389
|
},
|
|
414
390
|
organizationId: {
|
|
415
|
-
readOnly: true,
|
|
416
391
|
serializedName: "properties.organizationId",
|
|
392
|
+
readOnly: true,
|
|
417
393
|
type: {
|
|
418
394
|
name: "String"
|
|
419
395
|
}
|
|
420
396
|
},
|
|
421
397
|
ssoUrl: {
|
|
422
|
-
readOnly: true,
|
|
423
398
|
serializedName: "properties.ssoUrl",
|
|
399
|
+
readOnly: true,
|
|
424
400
|
type: {
|
|
425
401
|
name: "String"
|
|
426
402
|
}
|
|
427
403
|
},
|
|
428
404
|
offerDetail: {
|
|
429
|
-
required: true,
|
|
430
405
|
serializedName: "properties.offerDetail",
|
|
431
406
|
type: {
|
|
432
407
|
name: "Composite",
|
|
@@ -434,73 +409,73 @@ export var OrganizationResource = {
|
|
|
434
409
|
}
|
|
435
410
|
},
|
|
436
411
|
userDetail: {
|
|
437
|
-
required: true,
|
|
438
412
|
serializedName: "properties.userDetail",
|
|
439
413
|
type: {
|
|
440
414
|
name: "Composite",
|
|
441
415
|
className: "UserDetail"
|
|
442
416
|
}
|
|
443
|
-
},
|
|
444
|
-
tags: {
|
|
445
|
-
serializedName: "tags",
|
|
446
|
-
type: {
|
|
447
|
-
name: "Dictionary",
|
|
448
|
-
value: {
|
|
449
|
-
type: {
|
|
450
|
-
name: "String"
|
|
451
|
-
}
|
|
452
|
-
}
|
|
453
|
-
}
|
|
454
|
-
},
|
|
455
|
-
location: {
|
|
456
|
-
serializedName: "location",
|
|
457
|
-
type: {
|
|
458
|
-
name: "String"
|
|
459
|
-
}
|
|
460
417
|
}
|
|
461
418
|
}
|
|
462
419
|
}
|
|
463
420
|
};
|
|
464
|
-
export
|
|
465
|
-
serializedName: "OrganizationResourceUpdate",
|
|
421
|
+
export const OfferDetail = {
|
|
466
422
|
type: {
|
|
467
423
|
name: "Composite",
|
|
468
|
-
className: "
|
|
424
|
+
className: "OfferDetail",
|
|
469
425
|
modelProperties: {
|
|
470
|
-
|
|
471
|
-
|
|
426
|
+
publisherId: {
|
|
427
|
+
constraints: {
|
|
428
|
+
MaxLength: 50
|
|
429
|
+
},
|
|
430
|
+
serializedName: "publisherId",
|
|
431
|
+
required: true,
|
|
472
432
|
type: {
|
|
473
|
-
name: "
|
|
474
|
-
value: {
|
|
475
|
-
type: {
|
|
476
|
-
name: "String"
|
|
477
|
-
}
|
|
478
|
-
}
|
|
433
|
+
name: "String"
|
|
479
434
|
}
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
name: "Composite",
|
|
488
|
-
className: "ConfluentAgreementResourceListResponse",
|
|
489
|
-
modelProperties: {
|
|
490
|
-
value: {
|
|
491
|
-
serializedName: "",
|
|
435
|
+
},
|
|
436
|
+
id: {
|
|
437
|
+
constraints: {
|
|
438
|
+
MaxLength: 50
|
|
439
|
+
},
|
|
440
|
+
serializedName: "id",
|
|
441
|
+
required: true,
|
|
492
442
|
type: {
|
|
493
|
-
name: "
|
|
494
|
-
element: {
|
|
495
|
-
type: {
|
|
496
|
-
name: "Composite",
|
|
497
|
-
className: "ConfluentAgreementResource"
|
|
498
|
-
}
|
|
499
|
-
}
|
|
443
|
+
name: "String"
|
|
500
444
|
}
|
|
501
445
|
},
|
|
502
|
-
|
|
503
|
-
|
|
446
|
+
planId: {
|
|
447
|
+
constraints: {
|
|
448
|
+
MaxLength: 50
|
|
449
|
+
},
|
|
450
|
+
serializedName: "planId",
|
|
451
|
+
required: true,
|
|
452
|
+
type: {
|
|
453
|
+
name: "String"
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
planName: {
|
|
457
|
+
constraints: {
|
|
458
|
+
MaxLength: 50
|
|
459
|
+
},
|
|
460
|
+
serializedName: "planName",
|
|
461
|
+
required: true,
|
|
462
|
+
type: {
|
|
463
|
+
name: "String"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
termUnit: {
|
|
467
|
+
constraints: {
|
|
468
|
+
MaxLength: 25
|
|
469
|
+
},
|
|
470
|
+
serializedName: "termUnit",
|
|
471
|
+
required: true,
|
|
472
|
+
type: {
|
|
473
|
+
name: "String"
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
status: {
|
|
477
|
+
serializedName: "status",
|
|
478
|
+
readOnly: true,
|
|
504
479
|
type: {
|
|
505
480
|
name: "String"
|
|
506
481
|
}
|
|
@@ -508,26 +483,35 @@ export var ConfluentAgreementResourceListResponse = {
|
|
|
508
483
|
}
|
|
509
484
|
}
|
|
510
485
|
};
|
|
511
|
-
export
|
|
512
|
-
serializedName: "OperationListResult",
|
|
486
|
+
export const UserDetail = {
|
|
513
487
|
type: {
|
|
514
488
|
name: "Composite",
|
|
515
|
-
className: "
|
|
489
|
+
className: "UserDetail",
|
|
516
490
|
modelProperties: {
|
|
517
|
-
|
|
518
|
-
|
|
491
|
+
firstName: {
|
|
492
|
+
constraints: {
|
|
493
|
+
MaxLength: 50
|
|
494
|
+
},
|
|
495
|
+
serializedName: "firstName",
|
|
519
496
|
type: {
|
|
520
|
-
name: "
|
|
521
|
-
element: {
|
|
522
|
-
type: {
|
|
523
|
-
name: "Composite",
|
|
524
|
-
className: "OperationResult"
|
|
525
|
-
}
|
|
526
|
-
}
|
|
497
|
+
name: "String"
|
|
527
498
|
}
|
|
528
499
|
},
|
|
529
|
-
|
|
530
|
-
|
|
500
|
+
lastName: {
|
|
501
|
+
constraints: {
|
|
502
|
+
MaxLength: 50
|
|
503
|
+
},
|
|
504
|
+
serializedName: "lastName",
|
|
505
|
+
type: {
|
|
506
|
+
name: "String"
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
emailAddress: {
|
|
510
|
+
constraints: {
|
|
511
|
+
Pattern: new RegExp("^\\S+@\\S+\\.\\S+$")
|
|
512
|
+
},
|
|
513
|
+
serializedName: "emailAddress",
|
|
514
|
+
required: true,
|
|
531
515
|
type: {
|
|
532
516
|
name: "String"
|
|
533
517
|
}
|
|
@@ -535,28 +519,16 @@ export var OperationListResult = {
|
|
|
535
519
|
}
|
|
536
520
|
}
|
|
537
521
|
};
|
|
538
|
-
export
|
|
539
|
-
serializedName: "OrganizationResourceListResult",
|
|
522
|
+
export const OrganizationResourceUpdate = {
|
|
540
523
|
type: {
|
|
541
524
|
name: "Composite",
|
|
542
|
-
className: "
|
|
525
|
+
className: "OrganizationResourceUpdate",
|
|
543
526
|
modelProperties: {
|
|
544
|
-
|
|
545
|
-
serializedName: "",
|
|
546
|
-
type: {
|
|
547
|
-
name: "Sequence",
|
|
548
|
-
element: {
|
|
549
|
-
type: {
|
|
550
|
-
name: "Composite",
|
|
551
|
-
className: "OrganizationResource"
|
|
552
|
-
}
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
|
-
},
|
|
556
|
-
nextLink: {
|
|
557
|
-
serializedName: "nextLink",
|
|
527
|
+
tags: {
|
|
528
|
+
serializedName: "tags",
|
|
558
529
|
type: {
|
|
559
|
-
name: "
|
|
530
|
+
name: "Dictionary",
|
|
531
|
+
value: { type: { name: "String" } }
|
|
560
532
|
}
|
|
561
533
|
}
|
|
562
534
|
}
|