@azure/arm-confidentialledger 1.3.0-alpha.20230410.2 → 1.3.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.
@@ -54,9 +54,8 @@ export interface CheckNameAvailabilityResponse {
54
54
  }
55
55
 
56
56
  // @public
57
- export interface ConfidentialLedger extends TrackedResource, Tags {
57
+ export interface ConfidentialLedger extends TrackedResource {
58
58
  properties?: LedgerProperties;
59
- runningState?: RunningState;
60
59
  }
61
60
 
62
61
  // @public (undocumented)
@@ -254,6 +253,7 @@ export interface LedgerProperties {
254
253
  ledgerType?: LedgerType;
255
254
  readonly ledgerUri?: string;
256
255
  readonly provisioningState?: ProvisioningState;
256
+ runningState?: RunningState;
257
257
  }
258
258
 
259
259
  // @public
@@ -435,13 +435,6 @@ export interface SystemData {
435
435
  lastModifiedByType?: CreatedByType;
436
436
  }
437
437
 
438
- // @public
439
- export interface Tags {
440
- tags?: {
441
- [propertyName: string]: string;
442
- };
443
- }
444
-
445
438
  // @public
446
439
  export interface TrackedResource extends Resource {
447
440
  location: string;
@@ -133,6 +133,8 @@ export interface LedgerProperties {
133
133
  * NOTE: This property will not be serialized. It can only be populated by the server.
134
134
  */
135
135
  readonly ledgerInternalNamespace?: string;
136
+ /** Object representing RunningState for Ledger. */
137
+ runningState?: RunningState;
136
138
  /** Type of Confidential Ledger */
137
139
  ledgerType?: LedgerType;
138
140
  /**
@@ -204,12 +206,6 @@ export interface SystemData {
204
206
  lastModifiedAt?: Date;
205
207
  }
206
208
 
207
- /** Tags for Confidential Ledger Resource */
208
- export interface Tags {
209
- /** Additional tags for Confidential Ledger */
210
- tags?: { [propertyName: string]: string };
211
- }
212
-
213
209
  /** Object that includes an array of Confidential Ledgers and a possible link for next set. */
214
210
  export interface ConfidentialLedgerList {
215
211
  /** List of Confidential Ledgers */
@@ -289,9 +285,7 @@ export interface TrackedResource extends Resource {
289
285
  }
290
286
 
291
287
  /** Confidential Ledger. Contains the properties of Confidential Ledger Resource. */
292
- export interface ConfidentialLedger extends TrackedResource, Tags {
293
- /** Object representing RunningState for Ledger. */
294
- runningState?: RunningState;
288
+ export interface ConfidentialLedger extends TrackedResource {
295
289
  /** Properties of Confidential Ledger Resource. */
296
290
  properties?: LedgerProperties;
297
291
  }
@@ -275,6 +275,12 @@ export const LedgerProperties: coreClient.CompositeMapper = {
275
275
  name: "String"
276
276
  }
277
277
  },
278
+ runningState: {
279
+ serializedName: "runningState",
280
+ type: {
281
+ name: "String"
282
+ }
283
+ },
278
284
  ledgerType: {
279
285
  serializedName: "ledgerType",
280
286
  type: {
@@ -446,22 +452,6 @@ export const SystemData: coreClient.CompositeMapper = {
446
452
  }
447
453
  };
448
454
 
449
- export const Tags: coreClient.CompositeMapper = {
450
- type: {
451
- name: "Composite",
452
- className: "Tags",
453
- modelProperties: {
454
- tags: {
455
- serializedName: "tags",
456
- type: {
457
- name: "Dictionary",
458
- value: { type: { name: "String" } }
459
- }
460
- }
461
- }
462
- }
463
- };
464
-
465
455
  export const ConfidentialLedgerList: coreClient.CompositeMapper = {
466
456
  type: {
467
457
  name: "Composite",
@@ -673,13 +663,6 @@ export const ConfidentialLedger: coreClient.CompositeMapper = {
673
663
  className: "ConfidentialLedger",
674
664
  modelProperties: {
675
665
  ...TrackedResource.type.modelProperties,
676
- ...Tags.type.modelProperties,
677
- runningState: {
678
- serializedName: "runningState",
679
- type: {
680
- name: "String"
681
- }
682
- },
683
666
  properties: {
684
667
  serializedName: "properties",
685
668
  type: {
@@ -66,9 +66,7 @@ export declare interface CheckNameAvailabilityResponse {
66
66
  }
67
67
 
68
68
  /** Confidential Ledger. Contains the properties of Confidential Ledger Resource. */
69
- export declare interface ConfidentialLedger extends TrackedResource, Tags {
70
- /** Object representing RunningState for Ledger. */
71
- runningState?: RunningState;
69
+ export declare interface ConfidentialLedger extends TrackedResource {
72
70
  /** Properties of Confidential Ledger Resource. */
73
71
  properties?: LedgerProperties;
74
72
  }
@@ -431,6 +429,8 @@ export declare interface LedgerProperties {
431
429
  * NOTE: This property will not be serialized. It can only be populated by the server.
432
430
  */
433
431
  readonly ledgerInternalNamespace?: string;
432
+ /** Object representing RunningState for Ledger. */
433
+ runningState?: RunningState;
434
434
  /** Type of Confidential Ledger */
435
435
  ledgerType?: LedgerType;
436
436
  /**
@@ -792,14 +792,6 @@ export declare interface SystemData {
792
792
  lastModifiedAt?: Date;
793
793
  }
794
794
 
795
- /** Tags for Confidential Ledger Resource */
796
- export declare interface Tags {
797
- /** Additional tags for Confidential Ledger */
798
- tags?: {
799
- [propertyName: string]: string;
800
- };
801
- }
802
-
803
795
  /** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
804
796
  export declare interface TrackedResource extends Resource {
805
797
  /** Resource tags. */