@azure/arm-confidentialledger 1.0.1-alpha.20220601.1 → 1.1.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 +8 -11
- package/dist/index.js +21 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/src/confidentialLedgerClient.js +2 -2
- package/dist-esm/src/confidentialLedgerClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +21 -2
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +19 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/package.json +5 -6
- package/review/arm-confidentialledger.api.md +2 -21
- package/src/confidentialLedgerClient.ts +2 -2
- package/src/models/index.ts +23 -6
- package/types/arm-confidentialledger.d.ts +21 -2
package/src/models/index.ts
CHANGED
@@ -225,16 +225,16 @@ export interface ConfidentialLedgerList {
|
|
225
225
|
}
|
226
226
|
|
227
227
|
/** Confidential Ledger. Contains the properties of Confidential Ledger Resource. */
|
228
|
-
export
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
properties?: LedgerProperties;
|
233
|
-
};
|
228
|
+
export interface ConfidentialLedger extends Resource, ResourceLocation, Tags {
|
229
|
+
/** Properties of Confidential Ledger Resource. */
|
230
|
+
properties?: LedgerProperties;
|
231
|
+
}
|
234
232
|
|
235
233
|
/** Known values of {@link CheckNameAvailabilityReason} that the service accepts. */
|
236
234
|
export enum KnownCheckNameAvailabilityReason {
|
235
|
+
/** Invalid */
|
237
236
|
Invalid = "Invalid",
|
237
|
+
/** AlreadyExists */
|
238
238
|
AlreadyExists = "AlreadyExists"
|
239
239
|
}
|
240
240
|
|
@@ -250,8 +250,11 @@ export type CheckNameAvailabilityReason = string;
|
|
250
250
|
|
251
251
|
/** Known values of {@link LedgerType} that the service accepts. */
|
252
252
|
export enum KnownLedgerType {
|
253
|
+
/** Unknown */
|
253
254
|
Unknown = "Unknown",
|
255
|
+
/** Public */
|
254
256
|
Public = "Public",
|
257
|
+
/** Private */
|
255
258
|
Private = "Private"
|
256
259
|
}
|
257
260
|
|
@@ -268,12 +271,19 @@ export type LedgerType = string;
|
|
268
271
|
|
269
272
|
/** Known values of {@link ProvisioningState} that the service accepts. */
|
270
273
|
export enum KnownProvisioningState {
|
274
|
+
/** Unknown */
|
271
275
|
Unknown = "Unknown",
|
276
|
+
/** Succeeded */
|
272
277
|
Succeeded = "Succeeded",
|
278
|
+
/** Failed */
|
273
279
|
Failed = "Failed",
|
280
|
+
/** Canceled */
|
274
281
|
Canceled = "Canceled",
|
282
|
+
/** Creating */
|
275
283
|
Creating = "Creating",
|
284
|
+
/** Deleting */
|
276
285
|
Deleting = "Deleting",
|
286
|
+
/** Updating */
|
277
287
|
Updating = "Updating"
|
278
288
|
}
|
279
289
|
|
@@ -294,8 +304,11 @@ export type ProvisioningState = string;
|
|
294
304
|
|
295
305
|
/** Known values of {@link LedgerRoleName} that the service accepts. */
|
296
306
|
export enum KnownLedgerRoleName {
|
307
|
+
/** Reader */
|
297
308
|
Reader = "Reader",
|
309
|
+
/** Contributor */
|
298
310
|
Contributor = "Contributor",
|
311
|
+
/** Administrator */
|
299
312
|
Administrator = "Administrator"
|
300
313
|
}
|
301
314
|
|
@@ -312,9 +325,13 @@ export type LedgerRoleName = string;
|
|
312
325
|
|
313
326
|
/** Known values of {@link CreatedByType} that the service accepts. */
|
314
327
|
export enum KnownCreatedByType {
|
328
|
+
/** User */
|
315
329
|
User = "User",
|
330
|
+
/** Application */
|
316
331
|
Application = "Application",
|
332
|
+
/** ManagedIdentity */
|
317
333
|
ManagedIdentity = "ManagedIdentity",
|
334
|
+
/** Key */
|
318
335
|
Key = "Key"
|
319
336
|
}
|
320
337
|
|
@@ -58,10 +58,10 @@ export declare interface CheckNameAvailabilityResponse {
|
|
58
58
|
}
|
59
59
|
|
60
60
|
/** Confidential Ledger. Contains the properties of Confidential Ledger Resource. */
|
61
|
-
export declare
|
61
|
+
export declare interface ConfidentialLedger extends Resource, ResourceLocation, Tags {
|
62
62
|
/** Properties of Confidential Ledger Resource. */
|
63
63
|
properties?: LedgerProperties;
|
64
|
-
}
|
64
|
+
}
|
65
65
|
|
66
66
|
export declare class ConfidentialLedgerClient extends coreClient.ServiceClient {
|
67
67
|
$host: string;
|
@@ -168,40 +168,59 @@ export declare interface ErrorResponse {
|
|
168
168
|
|
169
169
|
/** Known values of {@link CheckNameAvailabilityReason} that the service accepts. */
|
170
170
|
export declare enum KnownCheckNameAvailabilityReason {
|
171
|
+
/** Invalid */
|
171
172
|
Invalid = "Invalid",
|
173
|
+
/** AlreadyExists */
|
172
174
|
AlreadyExists = "AlreadyExists"
|
173
175
|
}
|
174
176
|
|
175
177
|
/** Known values of {@link CreatedByType} that the service accepts. */
|
176
178
|
export declare enum KnownCreatedByType {
|
179
|
+
/** User */
|
177
180
|
User = "User",
|
181
|
+
/** Application */
|
178
182
|
Application = "Application",
|
183
|
+
/** ManagedIdentity */
|
179
184
|
ManagedIdentity = "ManagedIdentity",
|
185
|
+
/** Key */
|
180
186
|
Key = "Key"
|
181
187
|
}
|
182
188
|
|
183
189
|
/** Known values of {@link LedgerRoleName} that the service accepts. */
|
184
190
|
export declare enum KnownLedgerRoleName {
|
191
|
+
/** Reader */
|
185
192
|
Reader = "Reader",
|
193
|
+
/** Contributor */
|
186
194
|
Contributor = "Contributor",
|
195
|
+
/** Administrator */
|
187
196
|
Administrator = "Administrator"
|
188
197
|
}
|
189
198
|
|
190
199
|
/** Known values of {@link LedgerType} that the service accepts. */
|
191
200
|
export declare enum KnownLedgerType {
|
201
|
+
/** Unknown */
|
192
202
|
Unknown = "Unknown",
|
203
|
+
/** Public */
|
193
204
|
Public = "Public",
|
205
|
+
/** Private */
|
194
206
|
Private = "Private"
|
195
207
|
}
|
196
208
|
|
197
209
|
/** Known values of {@link ProvisioningState} that the service accepts. */
|
198
210
|
export declare enum KnownProvisioningState {
|
211
|
+
/** Unknown */
|
199
212
|
Unknown = "Unknown",
|
213
|
+
/** Succeeded */
|
200
214
|
Succeeded = "Succeeded",
|
215
|
+
/** Failed */
|
201
216
|
Failed = "Failed",
|
217
|
+
/** Canceled */
|
202
218
|
Canceled = "Canceled",
|
219
|
+
/** Creating */
|
203
220
|
Creating = "Creating",
|
221
|
+
/** Deleting */
|
204
222
|
Deleting = "Deleting",
|
223
|
+
/** Updating */
|
205
224
|
Updating = "Updating"
|
206
225
|
}
|
207
226
|
|