@azure/arm-healthcareapis 2.1.2-alpha.20221101.1 → 2.2.0-alpha.20221129.3
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +22 -10
- package/dist/index.js +316 -95
- 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/healthcareApisManagementClient.d.ts +2 -0
- package/dist-esm/src/healthcareApisManagementClient.d.ts.map +1 -1
- package/dist-esm/src/healthcareApisManagementClient.js +49 -18
- package/dist-esm/src/healthcareApisManagementClient.js.map +1 -1
- package/dist-esm/src/index.d.ts +1 -0
- package/dist-esm/src/index.d.ts.map +1 -1
- package/dist-esm/src/index.js +1 -0
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +82 -29
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +48 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +0 -1
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/operations/dicomServices.d.ts.map +1 -1
- package/dist-esm/src/operations/dicomServices.js +19 -7
- package/dist-esm/src/operations/dicomServices.js.map +1 -1
- package/dist-esm/src/operations/fhirDestinations.d.ts.map +1 -1
- package/dist-esm/src/operations/fhirDestinations.js +19 -7
- package/dist-esm/src/operations/fhirDestinations.js.map +1 -1
- package/dist-esm/src/operations/fhirServices.d.ts.map +1 -1
- package/dist-esm/src/operations/fhirServices.js +19 -7
- package/dist-esm/src/operations/fhirServices.js.map +1 -1
- package/dist-esm/src/operations/iotConnectors.d.ts.map +1 -1
- package/dist-esm/src/operations/iotConnectors.js +19 -7
- package/dist-esm/src/operations/iotConnectors.js.map +1 -1
- package/dist-esm/src/operations/operations.d.ts.map +1 -1
- package/dist-esm/src/operations/operations.js +19 -7
- package/dist-esm/src/operations/operations.js.map +1 -1
- package/dist-esm/src/operations/privateEndpointConnections.d.ts.map +1 -1
- package/dist-esm/src/operations/privateEndpointConnections.js +8 -4
- package/dist-esm/src/operations/privateEndpointConnections.js.map +1 -1
- package/dist-esm/src/operations/services.d.ts.map +1 -1
- package/dist-esm/src/operations/services.js +37 -14
- package/dist-esm/src/operations/services.js.map +1 -1
- package/dist-esm/src/operations/workspacePrivateEndpointConnections.d.ts.map +1 -1
- package/dist-esm/src/operations/workspacePrivateEndpointConnections.js +8 -4
- package/dist-esm/src/operations/workspacePrivateEndpointConnections.js.map +1 -1
- package/dist-esm/src/operations/workspacePrivateLinkResources.d.ts.map +1 -1
- package/dist-esm/src/operations/workspacePrivateLinkResources.js +8 -4
- package/dist-esm/src/operations/workspacePrivateLinkResources.js.map +1 -1
- package/dist-esm/src/operations/workspaces.d.ts.map +1 -1
- package/dist-esm/src/operations/workspaces.js +37 -14
- package/dist-esm/src/operations/workspaces.js.map +1 -1
- package/dist-esm/src/pagingHelper.d.ts +13 -0
- package/dist-esm/src/pagingHelper.d.ts.map +1 -0
- package/dist-esm/src/pagingHelper.js +32 -0
- package/dist-esm/src/pagingHelper.js.map +1 -0
- package/dist-esm/test/sampleTest.js +11 -13
- package/dist-esm/test/sampleTest.js.map +1 -1
- package/package.json +12 -8
- package/review/arm-healthcareapis.api.md +52 -92
- package/src/healthcareApisManagementClient.ts +60 -20
- package/src/index.ts +1 -0
- package/src/models/index.ts +158 -109
- package/src/models/mappers.ts +0 -1
- package/src/operations/dicomServices.ts +26 -12
- package/src/operations/fhirDestinations.ts +27 -13
- package/src/operations/fhirServices.ts +26 -12
- package/src/operations/iotConnectors.ts +26 -12
- package/src/operations/operations.ts +21 -8
- package/src/operations/privateEndpointConnections.ts +11 -5
- package/src/operations/services.ts +46 -17
- package/src/operations/workspacePrivateEndpointConnections.ts +11 -5
- package/src/operations/workspacePrivateLinkResources.ts +11 -5
- package/src/operations/workspaces.ts +45 -16
- package/src/pagingHelper.ts +39 -0
- package/types/arm-healthcareapis.d.ts +93 -29
- package/types/tsdoc-metadata.json +1 -1
@@ -34,7 +34,7 @@ export declare interface CheckNameAvailabilityParameters {
|
|
34
34
|
export declare type CreatedByType = string;
|
35
35
|
|
36
36
|
/** The description of Dicom Service */
|
37
|
-
export declare
|
37
|
+
export declare interface DicomService extends TaggedResource, ServiceManagedIdentity {
|
38
38
|
/**
|
39
39
|
* Metadata pertaining to creation and last modification of the resource.
|
40
40
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
@@ -59,7 +59,7 @@ export declare type DicomService = TaggedResource & ServiceManagedIdentity & {
|
|
59
59
|
readonly privateEndpointConnections?: PrivateEndpointConnection[];
|
60
60
|
/** Control permission for data plane traffic coming from public networks while private endpoint is enabled. */
|
61
61
|
publicNetworkAccess?: PublicNetworkAccess;
|
62
|
-
}
|
62
|
+
}
|
63
63
|
|
64
64
|
/** Authentication configuration information */
|
65
65
|
export declare interface DicomServiceAuthenticationConfiguration {
|
@@ -84,7 +84,8 @@ export declare interface DicomServiceCollection {
|
|
84
84
|
}
|
85
85
|
|
86
86
|
/** Dicom Service patch properties */
|
87
|
-
export declare
|
87
|
+
export declare interface DicomServicePatchResource extends ResourceTags, ServiceManagedIdentity {
|
88
|
+
}
|
88
89
|
|
89
90
|
/** Interface representing a DicomServices. */
|
90
91
|
export declare interface DicomServices {
|
@@ -277,7 +278,7 @@ export declare type FhirDestinationsListByIotConnectorResponse = IotFhirDestinat
|
|
277
278
|
export declare type FhirResourceVersionPolicy = string;
|
278
279
|
|
279
280
|
/** The description of Fhir Service */
|
280
|
-
export declare
|
281
|
+
export declare interface FhirService extends TaggedResource, ServiceManagedIdentity {
|
281
282
|
/** The kind of the service. */
|
282
283
|
kind?: FhirServiceKind;
|
283
284
|
/**
|
@@ -314,7 +315,7 @@ export declare type FhirService = TaggedResource & ServiceManagedIdentity & {
|
|
314
315
|
readonly eventState?: ServiceEventState;
|
315
316
|
/** Determines tracking of history for resources. */
|
316
317
|
resourceVersionPolicyConfiguration?: ResourceVersionPolicyConfiguration;
|
317
|
-
}
|
318
|
+
}
|
318
319
|
|
319
320
|
/** An access policy entry. */
|
320
321
|
export declare interface FhirServiceAccessPolicyEntry {
|
@@ -379,7 +380,8 @@ export declare interface FhirServiceExportConfiguration {
|
|
379
380
|
export declare type FhirServiceKind = string;
|
380
381
|
|
381
382
|
/** FhirService patch properties */
|
382
|
-
export declare
|
383
|
+
export declare interface FhirServicePatchResource extends ResourceTags, ServiceManagedIdentity {
|
384
|
+
}
|
383
385
|
|
384
386
|
/** Interface representing a FhirServices. */
|
385
387
|
export declare interface FhirServices {
|
@@ -503,6 +505,15 @@ export declare interface FhirServicesUpdateOptionalParams extends coreClient.Ope
|
|
503
505
|
/** Contains response data for the update operation. */
|
504
506
|
export declare type FhirServicesUpdateResponse = FhirService;
|
505
507
|
|
508
|
+
/**
|
509
|
+
* Given a result page from a pageable operation, returns a
|
510
|
+
* continuation token that can be used to begin paging from
|
511
|
+
* that point later.
|
512
|
+
* @param page A result object from calling .byPage() on a paged operation.
|
513
|
+
* @returns The continuation token that can be passed into byPage().
|
514
|
+
*/
|
515
|
+
export declare function getContinuationToken(page: unknown): string | undefined;
|
516
|
+
|
506
517
|
export declare class HealthcareApisManagementClient extends coreClient.ServiceClient {
|
507
518
|
$host: string;
|
508
519
|
apiVersion: string;
|
@@ -514,6 +525,8 @@ export declare class HealthcareApisManagementClient extends coreClient.ServiceCl
|
|
514
525
|
* @param options The parameter options
|
515
526
|
*/
|
516
527
|
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: HealthcareApisManagementClientOptionalParams);
|
528
|
+
/** A function that adds a policy that sets the api-version (or equivalent) to reflect the library version. */
|
529
|
+
private addCustomApiVersionPolicy;
|
517
530
|
services: Services;
|
518
531
|
privateEndpointConnections: PrivateEndpointConnections;
|
519
532
|
privateLinkResources: PrivateLinkResources;
|
@@ -540,7 +553,7 @@ export declare interface HealthcareApisManagementClientOptionalParams extends co
|
|
540
553
|
}
|
541
554
|
|
542
555
|
/** IoT Connector definition. */
|
543
|
-
export declare
|
556
|
+
export declare interface IotConnector extends TaggedResource, ServiceManagedIdentity {
|
544
557
|
/**
|
545
558
|
* Metadata pertaining to creation and last modification of the resource.
|
546
559
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
@@ -555,7 +568,7 @@ export declare type IotConnector = TaggedResource & ServiceManagedIdentity & {
|
|
555
568
|
ingestionEndpointConfiguration?: IotEventHubIngestionEndpointConfiguration;
|
556
569
|
/** Device Mappings. */
|
557
570
|
deviceMapping?: IotMappingProperties;
|
558
|
-
}
|
571
|
+
}
|
559
572
|
|
560
573
|
/** A collection of IoT Connectors. */
|
561
574
|
export declare interface IotConnectorCollection {
|
@@ -645,7 +658,8 @@ export declare interface IotConnectorFhirDestinationGetOptionalParams extends co
|
|
645
658
|
export declare type IotConnectorFhirDestinationGetResponse = IotFhirDestination;
|
646
659
|
|
647
660
|
/** Iot Connector patch properties */
|
648
|
-
export declare
|
661
|
+
export declare interface IotConnectorPatchResource extends ResourceTags, ServiceManagedIdentity {
|
662
|
+
}
|
649
663
|
|
650
664
|
/** Interface representing a IotConnectors. */
|
651
665
|
export declare interface IotConnectors {
|
@@ -789,7 +803,7 @@ export declare interface IotEventHubIngestionEndpointConfiguration {
|
|
789
803
|
}
|
790
804
|
|
791
805
|
/** IoT Connector FHIR destination definition. */
|
792
|
-
export declare
|
806
|
+
export declare interface IotFhirDestination extends LocationBasedResource {
|
793
807
|
/**
|
794
808
|
* Metadata pertaining to creation and last modification of the resource.
|
795
809
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
@@ -806,7 +820,7 @@ export declare type IotFhirDestination = LocationBasedResource & {
|
|
806
820
|
fhirServiceResourceId: string;
|
807
821
|
/** FHIR Mappings */
|
808
822
|
fhirMapping: IotMappingProperties;
|
809
|
-
}
|
823
|
+
}
|
810
824
|
|
811
825
|
/** A collection of IoT Connector FHIR destinations. */
|
812
826
|
export declare interface IotFhirDestinationCollection {
|
@@ -817,14 +831,14 @@ export declare interface IotFhirDestinationCollection {
|
|
817
831
|
}
|
818
832
|
|
819
833
|
/** IoT Connector destination properties for an Azure FHIR service. */
|
820
|
-
export declare
|
834
|
+
export declare interface IotFhirDestinationProperties extends IotDestinationProperties {
|
821
835
|
/** Determines how resource identity is resolved on the destination. */
|
822
836
|
resourceIdentityResolutionType: IotIdentityResolutionType;
|
823
837
|
/** Fully qualified resource id of the FHIR service to connect to. */
|
824
838
|
fhirServiceResourceId: string;
|
825
839
|
/** FHIR Mappings */
|
826
840
|
fhirMapping: IotMappingProperties;
|
827
|
-
}
|
841
|
+
}
|
828
842
|
|
829
843
|
/**
|
830
844
|
* Defines values for IotIdentityResolutionType. \
|
@@ -847,101 +861,149 @@ export declare type Kind = "fhir" | "fhir-Stu3" | "fhir-R4";
|
|
847
861
|
|
848
862
|
/** Known values of {@link ActionType} that the service accepts. */
|
849
863
|
export declare enum KnownActionType {
|
864
|
+
/** Internal */
|
850
865
|
Internal = "Internal"
|
851
866
|
}
|
852
867
|
|
853
868
|
/** Known values of {@link CreatedByType} that the service accepts. */
|
854
869
|
export declare enum KnownCreatedByType {
|
870
|
+
/** User */
|
855
871
|
User = "User",
|
872
|
+
/** Application */
|
856
873
|
Application = "Application",
|
874
|
+
/** ManagedIdentity */
|
857
875
|
ManagedIdentity = "ManagedIdentity",
|
876
|
+
/** Key */
|
858
877
|
Key = "Key"
|
859
878
|
}
|
860
879
|
|
861
880
|
/** Known values of {@link FhirResourceVersionPolicy} that the service accepts. */
|
862
881
|
export declare enum KnownFhirResourceVersionPolicy {
|
882
|
+
/** NoVersion */
|
863
883
|
NoVersion = "no-version",
|
884
|
+
/** Versioned */
|
864
885
|
Versioned = "versioned",
|
886
|
+
/** VersionedUpdate */
|
865
887
|
VersionedUpdate = "versioned-update"
|
866
888
|
}
|
867
889
|
|
868
890
|
/** Known values of {@link FhirServiceKind} that the service accepts. */
|
869
891
|
export declare enum KnownFhirServiceKind {
|
892
|
+
/** FhirStu3 */
|
870
893
|
FhirStu3 = "fhir-Stu3",
|
894
|
+
/** FhirR4 */
|
871
895
|
FhirR4 = "fhir-R4"
|
872
896
|
}
|
873
897
|
|
874
898
|
/** Known values of {@link IotIdentityResolutionType} that the service accepts. */
|
875
899
|
export declare enum KnownIotIdentityResolutionType {
|
900
|
+
/** Create */
|
876
901
|
Create = "Create",
|
902
|
+
/** Lookup */
|
877
903
|
Lookup = "Lookup"
|
878
904
|
}
|
879
905
|
|
880
906
|
/** Known values of {@link ManagedServiceIdentityType} that the service accepts. */
|
881
907
|
export declare enum KnownManagedServiceIdentityType {
|
908
|
+
/** SystemAssigned */
|
882
909
|
SystemAssigned = "SystemAssigned",
|
910
|
+
/** None */
|
883
911
|
None = "None"
|
884
912
|
}
|
885
913
|
|
886
914
|
/** Known values of {@link OperationResultStatus} that the service accepts. */
|
887
915
|
export declare enum KnownOperationResultStatus {
|
916
|
+
/** Canceled */
|
888
917
|
Canceled = "Canceled",
|
918
|
+
/** Succeeded */
|
889
919
|
Succeeded = "Succeeded",
|
920
|
+
/** Failed */
|
890
921
|
Failed = "Failed",
|
922
|
+
/** Requested */
|
891
923
|
Requested = "Requested",
|
924
|
+
/** Running */
|
892
925
|
Running = "Running"
|
893
926
|
}
|
894
927
|
|
895
928
|
/** Known values of {@link PrivateEndpointConnectionProvisioningState} that the service accepts. */
|
896
929
|
export declare enum KnownPrivateEndpointConnectionProvisioningState {
|
930
|
+
/** Succeeded */
|
897
931
|
Succeeded = "Succeeded",
|
932
|
+
/** Creating */
|
898
933
|
Creating = "Creating",
|
934
|
+
/** Deleting */
|
899
935
|
Deleting = "Deleting",
|
936
|
+
/** Failed */
|
900
937
|
Failed = "Failed"
|
901
938
|
}
|
902
939
|
|
903
940
|
/** Known values of {@link PrivateEndpointServiceConnectionStatus} that the service accepts. */
|
904
941
|
export declare enum KnownPrivateEndpointServiceConnectionStatus {
|
942
|
+
/** Pending */
|
905
943
|
Pending = "Pending",
|
944
|
+
/** Approved */
|
906
945
|
Approved = "Approved",
|
946
|
+
/** Rejected */
|
907
947
|
Rejected = "Rejected"
|
908
948
|
}
|
909
949
|
|
910
950
|
/** Known values of {@link ProvisioningState} that the service accepts. */
|
911
951
|
export declare enum KnownProvisioningState {
|
952
|
+
/** Deleting */
|
912
953
|
Deleting = "Deleting",
|
954
|
+
/** Succeeded */
|
913
955
|
Succeeded = "Succeeded",
|
956
|
+
/** Creating */
|
914
957
|
Creating = "Creating",
|
958
|
+
/** Accepted */
|
915
959
|
Accepted = "Accepted",
|
960
|
+
/** Verifying */
|
916
961
|
Verifying = "Verifying",
|
962
|
+
/** Updating */
|
917
963
|
Updating = "Updating",
|
964
|
+
/** Failed */
|
918
965
|
Failed = "Failed",
|
966
|
+
/** Canceled */
|
919
967
|
Canceled = "Canceled",
|
968
|
+
/** Deprovisioned */
|
920
969
|
Deprovisioned = "Deprovisioned",
|
970
|
+
/** Moving */
|
921
971
|
Moving = "Moving",
|
972
|
+
/** Suspended */
|
922
973
|
Suspended = "Suspended",
|
974
|
+
/** Warned */
|
923
975
|
Warned = "Warned",
|
976
|
+
/** SystemMaintenance */
|
924
977
|
SystemMaintenance = "SystemMaintenance"
|
925
978
|
}
|
926
979
|
|
927
980
|
/** Known values of {@link PublicNetworkAccess} that the service accepts. */
|
928
981
|
export declare enum KnownPublicNetworkAccess {
|
982
|
+
/** Enabled */
|
929
983
|
Enabled = "Enabled",
|
984
|
+
/** Disabled */
|
930
985
|
Disabled = "Disabled"
|
931
986
|
}
|
932
987
|
|
933
988
|
/** Known values of {@link ServiceEventState} that the service accepts. */
|
934
989
|
export declare enum KnownServiceEventState {
|
990
|
+
/** Disabled */
|
935
991
|
Disabled = "Disabled",
|
992
|
+
/** Enabled */
|
936
993
|
Enabled = "Enabled",
|
994
|
+
/** Updating */
|
937
995
|
Updating = "Updating"
|
938
996
|
}
|
939
997
|
|
940
998
|
/** Known values of {@link ServiceManagedIdentityType} that the service accepts. */
|
941
999
|
export declare enum KnownServiceManagedIdentityType {
|
1000
|
+
/** None */
|
942
1001
|
None = "None",
|
1002
|
+
/** SystemAssigned */
|
943
1003
|
SystemAssigned = "SystemAssigned",
|
1004
|
+
/** UserAssigned */
|
944
1005
|
UserAssigned = "UserAssigned",
|
1006
|
+
/** SystemAssignedUserAssigned */
|
945
1007
|
SystemAssignedUserAssigned = "SystemAssigned,UserAssigned"
|
946
1008
|
}
|
947
1009
|
|
@@ -960,10 +1022,10 @@ export declare interface ListOperations {
|
|
960
1022
|
}
|
961
1023
|
|
962
1024
|
/** The common properties for any location based resource, tracked or proxy. */
|
963
|
-
export declare
|
1025
|
+
export declare interface LocationBasedResource extends ResourceCore {
|
964
1026
|
/** The resource location. */
|
965
1027
|
location?: string;
|
966
|
-
}
|
1028
|
+
}
|
967
1029
|
|
968
1030
|
/** Specifications of the Log for Azure Monitoring */
|
969
1031
|
export declare interface LogSpecification {
|
@@ -1174,7 +1236,7 @@ export declare interface PrivateEndpoint {
|
|
1174
1236
|
}
|
1175
1237
|
|
1176
1238
|
/** The Private Endpoint Connection resource. */
|
1177
|
-
export declare
|
1239
|
+
export declare interface PrivateEndpointConnection extends Resource {
|
1178
1240
|
/** The resource of private end point. */
|
1179
1241
|
privateEndpoint?: PrivateEndpoint;
|
1180
1242
|
/** A collection of information about the state of the connection between service consumer and provider. */
|
@@ -1184,16 +1246,16 @@ export declare type PrivateEndpointConnection = Resource & {
|
|
1184
1246
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
1185
1247
|
*/
|
1186
1248
|
readonly provisioningState?: PrivateEndpointConnectionProvisioningState;
|
1187
|
-
}
|
1249
|
+
}
|
1188
1250
|
|
1189
1251
|
/** The Private Endpoint Connection resource. */
|
1190
|
-
export declare
|
1252
|
+
export declare interface PrivateEndpointConnectionDescription extends PrivateEndpointConnection {
|
1191
1253
|
/**
|
1192
1254
|
* Metadata pertaining to creation and last modification of the resource.
|
1193
1255
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
1194
1256
|
*/
|
1195
1257
|
readonly systemData?: SystemData;
|
1196
|
-
}
|
1258
|
+
}
|
1197
1259
|
|
1198
1260
|
/** List of private endpoint connection associated with the specified storage account */
|
1199
1261
|
export declare interface PrivateEndpointConnectionListResult {
|
@@ -1322,7 +1384,7 @@ export declare type PrivateEndpointConnectionsListByServiceResponse = PrivateEnd
|
|
1322
1384
|
export declare type PrivateEndpointServiceConnectionStatus = string;
|
1323
1385
|
|
1324
1386
|
/** A private link resource */
|
1325
|
-
export declare
|
1387
|
+
export declare interface PrivateLinkResource extends Resource {
|
1326
1388
|
/**
|
1327
1389
|
* The private link resource group id.
|
1328
1390
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
@@ -1335,16 +1397,16 @@ export declare type PrivateLinkResource = Resource & {
|
|
1335
1397
|
readonly requiredMembers?: string[];
|
1336
1398
|
/** The private link resource Private link DNS zone name. */
|
1337
1399
|
requiredZoneNames?: string[];
|
1338
|
-
}
|
1400
|
+
}
|
1339
1401
|
|
1340
1402
|
/** The Private Endpoint Connection resource. */
|
1341
|
-
export declare
|
1403
|
+
export declare interface PrivateLinkResourceDescription extends PrivateLinkResource {
|
1342
1404
|
/**
|
1343
1405
|
* Metadata pertaining to creation and last modification of the resource.
|
1344
1406
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
1345
1407
|
*/
|
1346
1408
|
readonly systemData?: SystemData;
|
1347
|
-
}
|
1409
|
+
}
|
1348
1410
|
|
1349
1411
|
/** A list of private link resources */
|
1350
1412
|
export declare interface PrivateLinkResourceListResultDescription {
|
@@ -1700,7 +1762,7 @@ export declare interface ServicesDeleteOptionalParams extends coreClient.Operati
|
|
1700
1762
|
}
|
1701
1763
|
|
1702
1764
|
/** The description of the service. */
|
1703
|
-
export declare
|
1765
|
+
export declare interface ServicesDescription extends ServicesResource {
|
1704
1766
|
/** The common properties of a service. */
|
1705
1767
|
properties?: ServicesProperties;
|
1706
1768
|
/**
|
@@ -1708,7 +1770,7 @@ export declare type ServicesDescription = ServicesResource & {
|
|
1708
1770
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
1709
1771
|
*/
|
1710
1772
|
readonly systemData?: SystemData;
|
1711
|
-
}
|
1773
|
+
}
|
1712
1774
|
|
1713
1775
|
/** A list of service description objects with a next link. */
|
1714
1776
|
export declare interface ServicesDescriptionListResult {
|
@@ -1887,7 +1949,8 @@ export declare interface SystemData {
|
|
1887
1949
|
}
|
1888
1950
|
|
1889
1951
|
/** The common properties of tracked resources in the service. */
|
1890
|
-
export declare
|
1952
|
+
export declare interface TaggedResource extends ResourceTags, LocationBasedResource {
|
1953
|
+
}
|
1891
1954
|
|
1892
1955
|
/** User assigned identity properties */
|
1893
1956
|
export declare interface UserAssignedIdentity {
|
@@ -1904,7 +1967,7 @@ export declare interface UserAssignedIdentity {
|
|
1904
1967
|
}
|
1905
1968
|
|
1906
1969
|
/** Workspace resource. */
|
1907
|
-
export declare
|
1970
|
+
export declare interface Workspace extends TaggedResource {
|
1908
1971
|
/** Workspaces resource specific properties. */
|
1909
1972
|
properties?: WorkspaceProperties;
|
1910
1973
|
/**
|
@@ -1912,7 +1975,7 @@ export declare type Workspace = TaggedResource & {
|
|
1912
1975
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
1913
1976
|
*/
|
1914
1977
|
readonly systemData?: SystemData;
|
1915
|
-
}
|
1978
|
+
}
|
1916
1979
|
|
1917
1980
|
/** Collection of workspace object with a next link */
|
1918
1981
|
export declare interface WorkspaceList {
|
@@ -1923,7 +1986,8 @@ export declare interface WorkspaceList {
|
|
1923
1986
|
}
|
1924
1987
|
|
1925
1988
|
/** Workspace patch properties */
|
1926
|
-
export declare
|
1989
|
+
export declare interface WorkspacePatchResource extends ResourceTags {
|
1990
|
+
}
|
1927
1991
|
|
1928
1992
|
/** Interface representing a WorkspacePrivateEndpointConnections. */
|
1929
1993
|
export declare interface WorkspacePrivateEndpointConnections {
|