@azure/arm-storagesync 9.0.2-alpha.20221213.1 → 9.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.
Files changed (66) hide show
  1. package/CHANGELOG.md +19 -10
  2. package/README.md +7 -7
  3. package/dist/index.js +225 -59
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/dist/index.min.js.map +1 -1
  7. package/dist-esm/samples-dev/serverEndpointsCreateSample.js +1 -1
  8. package/dist-esm/samples-dev/serverEndpointsCreateSample.js.map +1 -1
  9. package/dist-esm/src/index.d.ts +1 -0
  10. package/dist-esm/src/index.d.ts.map +1 -1
  11. package/dist-esm/src/index.js +1 -0
  12. package/dist-esm/src/index.js.map +1 -1
  13. package/dist-esm/src/microsoftStorageSync.d.ts +2 -0
  14. package/dist-esm/src/microsoftStorageSync.d.ts.map +1 -1
  15. package/dist-esm/src/microsoftStorageSync.js +49 -18
  16. package/dist-esm/src/microsoftStorageSync.js.map +1 -1
  17. package/dist-esm/src/models/index.d.ts +89 -27
  18. package/dist-esm/src/models/index.d.ts.map +1 -1
  19. package/dist-esm/src/models/index.js +61 -0
  20. package/dist-esm/src/models/index.js.map +1 -1
  21. package/dist-esm/src/operations/cloudEndpoints.d.ts.map +1 -1
  22. package/dist-esm/src/operations/cloudEndpoints.js +8 -4
  23. package/dist-esm/src/operations/cloudEndpoints.js.map +1 -1
  24. package/dist-esm/src/operations/operations.d.ts.map +1 -1
  25. package/dist-esm/src/operations/operations.js +19 -8
  26. package/dist-esm/src/operations/operations.js.map +1 -1
  27. package/dist-esm/src/operations/privateEndpointConnections.d.ts.map +1 -1
  28. package/dist-esm/src/operations/privateEndpointConnections.js +8 -4
  29. package/dist-esm/src/operations/privateEndpointConnections.js.map +1 -1
  30. package/dist-esm/src/operations/registeredServers.d.ts.map +1 -1
  31. package/dist-esm/src/operations/registeredServers.js +8 -4
  32. package/dist-esm/src/operations/registeredServers.js.map +1 -1
  33. package/dist-esm/src/operations/serverEndpoints.d.ts.map +1 -1
  34. package/dist-esm/src/operations/serverEndpoints.js +8 -4
  35. package/dist-esm/src/operations/serverEndpoints.js.map +1 -1
  36. package/dist-esm/src/operations/storageSyncServices.d.ts.map +1 -1
  37. package/dist-esm/src/operations/storageSyncServices.js +16 -8
  38. package/dist-esm/src/operations/storageSyncServices.js.map +1 -1
  39. package/dist-esm/src/operations/syncGroups.d.ts.map +1 -1
  40. package/dist-esm/src/operations/syncGroups.js +8 -4
  41. package/dist-esm/src/operations/syncGroups.js.map +1 -1
  42. package/dist-esm/src/operations/workflows.d.ts.map +1 -1
  43. package/dist-esm/src/operations/workflows.js +8 -4
  44. package/dist-esm/src/operations/workflows.js.map +1 -1
  45. package/dist-esm/src/pagingHelper.d.ts +13 -0
  46. package/dist-esm/src/pagingHelper.d.ts.map +1 -0
  47. package/dist-esm/src/pagingHelper.js +32 -0
  48. package/dist-esm/src/pagingHelper.js.map +1 -0
  49. package/dist-esm/test/sampleTest.js +11 -13
  50. package/dist-esm/test/sampleTest.js.map +1 -1
  51. package/package.json +13 -9
  52. package/review/arm-storagesync.api.md +89 -146
  53. package/src/index.ts +1 -0
  54. package/src/microsoftStorageSync.ts +60 -20
  55. package/src/models/index.ts +88 -27
  56. package/src/operations/cloudEndpoints.ts +12 -6
  57. package/src/operations/operations.ts +21 -9
  58. package/src/operations/privateEndpointConnections.ts +13 -7
  59. package/src/operations/registeredServers.ts +11 -5
  60. package/src/operations/serverEndpoints.ts +12 -6
  61. package/src/operations/storageSyncServices.ts +26 -12
  62. package/src/operations/syncGroups.ts +11 -5
  63. package/src/operations/workflows.ts +11 -5
  64. package/src/pagingHelper.ts +39 -0
  65. package/types/arm-storagesync.d.ts +100 -27
  66. package/types/tsdoc-metadata.json +1 -1
@@ -48,7 +48,7 @@ export declare interface CheckNameAvailabilityResult {
48
48
  }
49
49
 
50
50
  /** Cloud Endpoint object. */
51
- export declare type CloudEndpoint = ProxyResource & {
51
+ export declare interface CloudEndpoint extends ProxyResource {
52
52
  /** Storage Account Resource Id */
53
53
  storageAccountResourceId?: string;
54
54
  /** Azure file share name */
@@ -75,7 +75,7 @@ export declare type CloudEndpoint = ProxyResource & {
75
75
  * NOTE: This property will not be serialized. It can only be populated by the server.
76
76
  */
77
77
  readonly changeEnumerationStatus?: CloudEndpointChangeEnumerationStatus;
78
- };
78
+ }
79
79
 
80
80
  /** Array of CloudEndpoint */
81
81
  export declare interface CloudEndpointArray {
@@ -192,7 +192,7 @@ export declare interface CloudEndpointChangeEnumerationStatus {
192
192
  export declare type CloudEndpointChangeEnumerationTotalCountsState = string;
193
193
 
194
194
  /** The parameters used when creating a cloud endpoint. */
195
- export declare type CloudEndpointCreateParameters = ProxyResource & {
195
+ export declare interface CloudEndpointCreateParameters extends ProxyResource {
196
196
  /** Storage Account Resource Id */
197
197
  storageAccountResourceId?: string;
198
198
  /** Azure file share name */
@@ -201,7 +201,7 @@ export declare type CloudEndpointCreateParameters = ProxyResource & {
201
201
  storageAccountTenantId?: string;
202
202
  /** Friendly Name */
203
203
  friendlyName?: string;
204
- };
204
+ }
205
205
 
206
206
  /** Cloud endpoint change enumeration status object */
207
207
  export declare interface CloudEndpointLastChangeEnumerationStatus {
@@ -720,6 +720,15 @@ export declare interface FilesNotTieringError {
720
720
  readonly fileCount?: number;
721
721
  }
722
722
 
723
+ /**
724
+ * Given the last `.value` produced by the `byPage` iterator,
725
+ * returns a continuation token that can be used to begin paging from
726
+ * that point later.
727
+ * @param page An object from accessing `value` on the IteratorResult from a `byPage` iterator.
728
+ * @returns The continuation token that can be passed into byPage() during future calls.
729
+ */
730
+ export declare function getContinuationToken(page: unknown): string | undefined;
731
+
723
732
  /**
724
733
  * Defines values for IncomingTrafficPolicy. \
725
734
  * {@link KnownIncomingTrafficPolicy} can be used interchangeably with IncomingTrafficPolicy,
@@ -753,138 +762,199 @@ export declare type InitialUploadPolicy = string;
753
762
 
754
763
  /** Known values of {@link ChangeDetectionMode} that the service accepts. */
755
764
  export declare enum KnownChangeDetectionMode {
765
+ /** Default */
756
766
  Default = "Default",
767
+ /** Recursive */
757
768
  Recursive = "Recursive"
758
769
  }
759
770
 
760
771
  /** Known values of {@link CloudEndpointChangeEnumerationActivityState} that the service accepts. */
761
772
  export declare enum KnownCloudEndpointChangeEnumerationActivityState {
773
+ /** InitialEnumerationInProgress */
762
774
  InitialEnumerationInProgress = "InitialEnumerationInProgress",
775
+ /** EnumerationInProgress */
763
776
  EnumerationInProgress = "EnumerationInProgress"
764
777
  }
765
778
 
766
779
  /** Known values of {@link CloudEndpointChangeEnumerationTotalCountsState} that the service accepts. */
767
780
  export declare enum KnownCloudEndpointChangeEnumerationTotalCountsState {
781
+ /** Calculating */
768
782
  Calculating = "Calculating",
783
+ /** Final */
769
784
  Final = "Final"
770
785
  }
771
786
 
772
787
  /** Known values of {@link FeatureStatus} that the service accepts. */
773
788
  export declare enum KnownFeatureStatus {
789
+ /** On */
774
790
  On = "on",
791
+ /** Off */
775
792
  Off = "off"
776
793
  }
777
794
 
778
795
  /** Known values of {@link IncomingTrafficPolicy} that the service accepts. */
779
796
  export declare enum KnownIncomingTrafficPolicy {
797
+ /** AllowAllTraffic */
780
798
  AllowAllTraffic = "AllowAllTraffic",
799
+ /** AllowVirtualNetworksOnly */
781
800
  AllowVirtualNetworksOnly = "AllowVirtualNetworksOnly"
782
801
  }
783
802
 
784
803
  /** Known values of {@link InitialDownloadPolicy} that the service accepts. */
785
804
  export declare enum KnownInitialDownloadPolicy {
805
+ /** NamespaceOnly */
786
806
  NamespaceOnly = "NamespaceOnly",
807
+ /** NamespaceThenModifiedFiles */
787
808
  NamespaceThenModifiedFiles = "NamespaceThenModifiedFiles",
809
+ /** AvoidTieredFiles */
788
810
  AvoidTieredFiles = "AvoidTieredFiles"
789
811
  }
790
812
 
791
813
  /** Known values of {@link InitialUploadPolicy} that the service accepts. */
792
814
  export declare enum KnownInitialUploadPolicy {
815
+ /** ServerAuthoritative */
793
816
  ServerAuthoritative = "ServerAuthoritative",
817
+ /** Merge */
794
818
  Merge = "Merge"
795
819
  }
796
820
 
797
821
  /** Known values of {@link LocalCacheMode} that the service accepts. */
798
822
  export declare enum KnownLocalCacheMode {
823
+ /** DownloadNewAndModifiedFiles */
799
824
  DownloadNewAndModifiedFiles = "DownloadNewAndModifiedFiles",
825
+ /** UpdateLocallyCachedFiles */
800
826
  UpdateLocallyCachedFiles = "UpdateLocallyCachedFiles"
801
827
  }
802
828
 
803
829
  /** Known values of {@link OperationDirection} that the service accepts. */
804
830
  export declare enum KnownOperationDirection {
831
+ /** Do */
805
832
  Do = "do",
833
+ /** Undo */
806
834
  Undo = "undo",
835
+ /** Cancel */
807
836
  Cancel = "cancel"
808
837
  }
809
838
 
810
839
  /** Known values of {@link PrivateEndpointConnectionProvisioningState} that the service accepts. */
811
840
  export declare enum KnownPrivateEndpointConnectionProvisioningState {
841
+ /** Succeeded */
812
842
  Succeeded = "Succeeded",
843
+ /** Creating */
813
844
  Creating = "Creating",
845
+ /** Deleting */
814
846
  Deleting = "Deleting",
847
+ /** Failed */
815
848
  Failed = "Failed"
816
849
  }
817
850
 
818
851
  /** Known values of {@link PrivateEndpointServiceConnectionStatus} that the service accepts. */
819
852
  export declare enum KnownPrivateEndpointServiceConnectionStatus {
853
+ /** Pending */
820
854
  Pending = "Pending",
855
+ /** Approved */
821
856
  Approved = "Approved",
857
+ /** Rejected */
822
858
  Rejected = "Rejected"
823
859
  }
824
860
 
825
861
  /** Known values of {@link ProgressType} that the service accepts. */
826
862
  export declare enum KnownProgressType {
863
+ /** None */
827
864
  None = "none",
865
+ /** Initialize */
828
866
  Initialize = "initialize",
867
+ /** Download */
829
868
  Download = "download",
869
+ /** Upload */
830
870
  Upload = "upload",
871
+ /** Recall */
831
872
  Recall = "recall"
832
873
  }
833
874
 
834
875
  /** Known values of {@link Reason} that the service accepts. */
835
876
  export declare enum KnownReason {
877
+ /** Registered */
836
878
  Registered = "Registered",
879
+ /** Unregistered */
837
880
  Unregistered = "Unregistered",
881
+ /** Warned */
838
882
  Warned = "Warned",
883
+ /** Suspended */
839
884
  Suspended = "Suspended",
885
+ /** Deleted */
840
886
  Deleted = "Deleted"
841
887
  }
842
888
 
843
889
  /** Known values of {@link RegisteredServerAgentVersionStatus} that the service accepts. */
844
890
  export declare enum KnownRegisteredServerAgentVersionStatus {
891
+ /** Ok */
845
892
  Ok = "Ok",
893
+ /** NearExpiry */
846
894
  NearExpiry = "NearExpiry",
895
+ /** Expired */
847
896
  Expired = "Expired",
897
+ /** Blocked */
848
898
  Blocked = "Blocked"
849
899
  }
850
900
 
851
901
  /** Known values of {@link ServerEndpointHealthState} that the service accepts. */
852
902
  export declare enum KnownServerEndpointHealthState {
903
+ /** Unavailable */
853
904
  Unavailable = "Unavailable",
905
+ /** Healthy */
854
906
  Healthy = "Healthy",
907
+ /** Error */
855
908
  Error = "Error"
856
909
  }
857
910
 
858
911
  /** Known values of {@link ServerEndpointOfflineDataTransferState} that the service accepts. */
859
912
  export declare enum KnownServerEndpointOfflineDataTransferState {
913
+ /** InProgress */
860
914
  InProgress = "InProgress",
915
+ /** Stopping */
861
916
  Stopping = "Stopping",
917
+ /** NotRunning */
862
918
  NotRunning = "NotRunning",
919
+ /** Complete */
863
920
  Complete = "Complete"
864
921
  }
865
922
 
866
923
  /** Known values of {@link ServerEndpointSyncActivityState} that the service accepts. */
867
924
  export declare enum KnownServerEndpointSyncActivityState {
925
+ /** Upload */
868
926
  Upload = "Upload",
927
+ /** Download */
869
928
  Download = "Download",
929
+ /** UploadAndDownload */
870
930
  UploadAndDownload = "UploadAndDownload"
871
931
  }
872
932
 
873
933
  /** Known values of {@link ServerEndpointSyncMode} that the service accepts. */
874
934
  export declare enum KnownServerEndpointSyncMode {
935
+ /** Regular */
875
936
  Regular = "Regular",
937
+ /** NamespaceDownload */
876
938
  NamespaceDownload = "NamespaceDownload",
939
+ /** InitialUpload */
877
940
  InitialUpload = "InitialUpload",
941
+ /** SnapshotUpload */
878
942
  SnapshotUpload = "SnapshotUpload",
943
+ /** InitialFullDownload */
879
944
  InitialFullDownload = "InitialFullDownload"
880
945
  }
881
946
 
882
947
  /** Known values of {@link WorkflowStatus} that the service accepts. */
883
948
  export declare enum KnownWorkflowStatus {
949
+ /** Active */
884
950
  Active = "active",
951
+ /** Expired */
885
952
  Expired = "expired",
953
+ /** Succeeded */
886
954
  Succeeded = "succeeded",
955
+ /** Aborted */
887
956
  Aborted = "aborted",
957
+ /** Failed */
888
958
  Failed = "failed"
889
959
  }
890
960
 
@@ -955,6 +1025,8 @@ export declare class MicrosoftStorageSync extends coreClient.ServiceClient {
955
1025
  * @param options The parameter options
956
1026
  */
957
1027
  constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: MicrosoftStorageSyncOptionalParams);
1028
+ /** A function that adds a policy that sets the api-version (or equivalent) to reflect the library version. */
1029
+ private addCustomApiVersionPolicy;
958
1030
  /**
959
1031
  * Get Operation status
960
1032
  * @param locationName The desired region to obtain information from.
@@ -1247,7 +1319,7 @@ export declare interface PrivateEndpoint {
1247
1319
  }
1248
1320
 
1249
1321
  /** The Private Endpoint Connection resource. */
1250
- export declare type PrivateEndpointConnection = Resource & {
1322
+ export declare interface PrivateEndpointConnection extends Resource {
1251
1323
  /** The resource of private end point. */
1252
1324
  privateEndpoint?: PrivateEndpoint;
1253
1325
  /** A collection of information about the state of the connection between service consumer and provider. */
@@ -1257,7 +1329,7 @@ export declare type PrivateEndpointConnection = Resource & {
1257
1329
  * NOTE: This property will not be serialized. It can only be populated by the server.
1258
1330
  */
1259
1331
  readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
1260
- };
1332
+ }
1261
1333
 
1262
1334
  /** List of private endpoint connection associated with the specified storage account */
1263
1335
  export declare interface PrivateEndpointConnectionListResult {
@@ -1421,7 +1493,7 @@ export declare type PrivateEndpointConnectionsListByStorageSyncServiceResponse =
1421
1493
  export declare type PrivateEndpointServiceConnectionStatus = string;
1422
1494
 
1423
1495
  /** A private link resource */
1424
- export declare type PrivateLinkResource = Resource & {
1496
+ export declare interface PrivateLinkResource extends Resource {
1425
1497
  /**
1426
1498
  * The private link resource group id.
1427
1499
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -1434,7 +1506,7 @@ export declare type PrivateLinkResource = Resource & {
1434
1506
  readonly requiredMembers?: string[];
1435
1507
  /** The private link resource Private link DNS zone name. */
1436
1508
  requiredZoneNames?: string[];
1437
- };
1509
+ }
1438
1510
 
1439
1511
  /** A list of private link resources */
1440
1512
  export declare interface PrivateLinkResourceListResult {
@@ -1485,7 +1557,8 @@ export declare interface PrivateLinkServiceConnectionState {
1485
1557
  export declare type ProgressType = string;
1486
1558
 
1487
1559
  /** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
1488
- export declare type ProxyResource = Resource & {};
1560
+ export declare interface ProxyResource extends Resource {
1561
+ }
1489
1562
 
1490
1563
  /**
1491
1564
  * Defines values for Reason. \
@@ -1509,7 +1582,7 @@ export declare interface RecallActionParameters {
1509
1582
  }
1510
1583
 
1511
1584
  /** Registered Server resource. */
1512
- export declare type RegisteredServer = ProxyResource & {
1585
+ export declare interface RegisteredServer extends ProxyResource {
1513
1586
  /** Registered Server Certificate */
1514
1587
  serverCertificate?: string;
1515
1588
  /** Registered Server Agent Version */
@@ -1565,7 +1638,7 @@ export declare type RegisteredServer = ProxyResource & {
1565
1638
  * NOTE: This property will not be serialized. It can only be populated by the server.
1566
1639
  */
1567
1640
  readonly serverName?: string;
1568
- };
1641
+ }
1569
1642
 
1570
1643
  /**
1571
1644
  * Defines values for RegisteredServerAgentVersionStatus. \
@@ -1586,7 +1659,7 @@ export declare interface RegisteredServerArray {
1586
1659
  }
1587
1660
 
1588
1661
  /** The parameters used when creating a registered server. */
1589
- export declare type RegisteredServerCreateParameters = ProxyResource & {
1662
+ export declare interface RegisteredServerCreateParameters extends ProxyResource {
1590
1663
  /** Registered Server Certificate */
1591
1664
  serverCertificate?: string;
1592
1665
  /** Registered Server Agent Version */
@@ -1605,7 +1678,7 @@ export declare type RegisteredServerCreateParameters = ProxyResource & {
1605
1678
  serverId?: string;
1606
1679
  /** Friendly Name */
1607
1680
  friendlyName?: string;
1608
- };
1681
+ }
1609
1682
 
1610
1683
  /** Interface representing a RegisteredServers. */
1611
1684
  export declare interface RegisteredServers {
@@ -1801,7 +1874,7 @@ export declare interface RestoreFileSpec {
1801
1874
  }
1802
1875
 
1803
1876
  /** Server Endpoint object. */
1804
- export declare type ServerEndpoint = ProxyResource & {
1877
+ export declare interface ServerEndpoint extends ProxyResource {
1805
1878
  /** Server Local path. */
1806
1879
  serverLocalPath?: string;
1807
1880
  /** Cloud Tiering. */
@@ -1869,7 +1942,7 @@ export declare type ServerEndpoint = ProxyResource & {
1869
1942
  * NOTE: This property will not be serialized. It can only be populated by the server.
1870
1943
  */
1871
1944
  readonly serverName?: string;
1872
- };
1945
+ }
1873
1946
 
1874
1947
  /** Array of ServerEndpoint */
1875
1948
  export declare interface ServerEndpointArray {
@@ -1956,7 +2029,7 @@ export declare interface ServerEndpointCloudTieringStatus {
1956
2029
  }
1957
2030
 
1958
2031
  /** The parameters used when creating a server endpoint. */
1959
- export declare type ServerEndpointCreateParameters = ProxyResource & {
2032
+ export declare interface ServerEndpointCreateParameters extends ProxyResource {
1960
2033
  /** Server Local path. */
1961
2034
  serverLocalPath?: string;
1962
2035
  /** Cloud Tiering. */
@@ -1979,7 +2052,7 @@ export declare type ServerEndpointCreateParameters = ProxyResource & {
1979
2052
  localCacheMode?: LocalCacheMode;
1980
2053
  /** Policy for how the initial upload sync session is performed. */
1981
2054
  initialUploadPolicy?: InitialUploadPolicy;
1982
- };
2055
+ }
1983
2056
 
1984
2057
  /** Files not syncing error object */
1985
2058
  export declare interface ServerEndpointFilesNotSyncingError {
@@ -2510,7 +2583,7 @@ export declare interface StorageSyncInnerErrorDetails {
2510
2583
  }
2511
2584
 
2512
2585
  /** Storage Sync Service object. */
2513
- export declare type StorageSyncService = TrackedResource & {
2586
+ export declare interface StorageSyncService extends TrackedResource {
2514
2587
  /** Incoming Traffic Policy */
2515
2588
  incomingTrafficPolicy?: IncomingTrafficPolicy;
2516
2589
  /**
@@ -2543,7 +2616,7 @@ export declare type StorageSyncService = TrackedResource & {
2543
2616
  * NOTE: This property will not be serialized. It can only be populated by the server.
2544
2617
  */
2545
2618
  readonly privateEndpointConnections?: PrivateEndpointConnection[];
2546
- };
2619
+ }
2547
2620
 
2548
2621
  /** Array of StorageSyncServices */
2549
2622
  export declare interface StorageSyncServiceArray {
@@ -2777,7 +2850,7 @@ export declare interface SubscriptionState {
2777
2850
  }
2778
2851
 
2779
2852
  /** Sync Group object. */
2780
- export declare type SyncGroup = ProxyResource & {
2853
+ export declare interface SyncGroup extends ProxyResource {
2781
2854
  /**
2782
2855
  * Unique Id
2783
2856
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -2788,7 +2861,7 @@ export declare type SyncGroup = ProxyResource & {
2788
2861
  * NOTE: This property will not be serialized. It can only be populated by the server.
2789
2862
  */
2790
2863
  readonly syncGroupStatus?: string;
2791
- };
2864
+ }
2792
2865
 
2793
2866
  /** Array of SyncGroup */
2794
2867
  export declare interface SyncGroupArray {
@@ -2797,10 +2870,10 @@ export declare interface SyncGroupArray {
2797
2870
  }
2798
2871
 
2799
2872
  /** The parameters used when creating a sync group. */
2800
- export declare type SyncGroupCreateParameters = ProxyResource & {
2873
+ export declare interface SyncGroupCreateParameters extends ProxyResource {
2801
2874
  /** The parameters used to create the sync group */
2802
2875
  properties?: Record<string, unknown>;
2803
- };
2876
+ }
2804
2877
 
2805
2878
  /** Interface representing a SyncGroups. */
2806
2879
  export declare interface SyncGroups {
@@ -2899,14 +2972,14 @@ export declare interface SyncGroupsListByStorageSyncServiceOptionalParams extend
2899
2972
  export declare type SyncGroupsListByStorageSyncServiceResponse = SyncGroupsListByStorageSyncServiceHeaders & SyncGroupArray;
2900
2973
 
2901
2974
  /** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
2902
- export declare type TrackedResource = Resource & {
2975
+ export declare interface TrackedResource extends Resource {
2903
2976
  /** Resource tags. */
2904
2977
  tags?: {
2905
2978
  [propertyName: string]: string;
2906
2979
  };
2907
2980
  /** The geo-location where the resource lives */
2908
2981
  location: string;
2909
- };
2982
+ }
2910
2983
 
2911
2984
  /** The parameters used when calling trigger change detection action on cloud endpoint. */
2912
2985
  export declare interface TriggerChangeDetectionParameters {
@@ -2925,7 +2998,7 @@ export declare interface TriggerRolloverRequest {
2925
2998
  }
2926
2999
 
2927
3000
  /** Workflow resource. */
2928
- export declare type Workflow = ProxyResource & {
3001
+ export declare interface Workflow extends ProxyResource {
2929
3002
  /** last step name */
2930
3003
  lastStepName?: string;
2931
3004
  /** workflow status. */
@@ -2951,7 +3024,7 @@ export declare type Workflow = ProxyResource & {
2951
3024
  * NOTE: This property will not be serialized. It can only be populated by the server.
2952
3025
  */
2953
3026
  readonly lastStatusTimestamp?: Date;
2954
- };
3027
+ }
2955
3028
 
2956
3029
  /** Array of Workflow */
2957
3030
  export declare interface WorkflowArray {
@@ -5,7 +5,7 @@
5
5
  "toolPackages": [
6
6
  {
7
7
  "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.33.7"
8
+ "packageVersion": "7.33.6"
9
9
  }
10
10
  ]
11
11
  }