aws-sdk 2.1619.0 → 2.1621.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.
@@ -12,11 +12,11 @@ declare class Grafana extends Service {
12
12
  constructor(options?: Grafana.Types.ClientConfiguration)
13
13
  config: Config & Grafana.Types.ClientConfiguration;
14
14
  /**
15
- * Assigns a Grafana Enterprise license to a workspace. Upgrading to Grafana Enterprise incurs additional fees. For more information, see Upgrade a workspace to Grafana Enterprise.
15
+ * Assigns a Grafana Enterprise license to a workspace. To upgrade, you must use ENTERPRISE for the licenseType, and pass in a valid Grafana Labs token for the grafanaToken. Upgrading to Grafana Enterprise incurs additional fees. For more information, see Upgrade a workspace to Grafana Enterprise.
16
16
  */
17
17
  associateLicense(params: Grafana.Types.AssociateLicenseRequest, callback?: (err: AWSError, data: Grafana.Types.AssociateLicenseResponse) => void): Request<Grafana.Types.AssociateLicenseResponse, AWSError>;
18
18
  /**
19
- * Assigns a Grafana Enterprise license to a workspace. Upgrading to Grafana Enterprise incurs additional fees. For more information, see Upgrade a workspace to Grafana Enterprise.
19
+ * Assigns a Grafana Enterprise license to a workspace. To upgrade, you must use ENTERPRISE for the licenseType, and pass in a valid Grafana Labs token for the grafanaToken. Upgrading to Grafana Enterprise incurs additional fees. For more information, see Upgrade a workspace to Grafana Enterprise.
20
20
  */
21
21
  associateLicense(callback?: (err: AWSError, data: Grafana.Types.AssociateLicenseResponse) => void): Request<Grafana.Types.AssociateLicenseResponse, AWSError>;
22
22
  /**
@@ -28,13 +28,29 @@ declare class Grafana extends Service {
28
28
  */
29
29
  createWorkspace(callback?: (err: AWSError, data: Grafana.Types.CreateWorkspaceResponse) => void): Request<Grafana.Types.CreateWorkspaceResponse, AWSError>;
30
30
  /**
31
- * Creates a Grafana API key for the workspace. This key can be used to authenticate requests sent to the workspace's HTTP API. See https://docs.aws.amazon.com/grafana/latest/userguide/Using-Grafana-APIs.html for available APIs and example requests.
31
+ * Creates a Grafana API key for the workspace. This key can be used to authenticate requests sent to the workspace's HTTP API. See https://docs.aws.amazon.com/grafana/latest/userguide/Using-Grafana-APIs.html for available APIs and example requests. In workspaces compatible with Grafana version 9 or above, use workspace service accounts instead of API keys. API keys will be removed in a future release.
32
32
  */
33
33
  createWorkspaceApiKey(params: Grafana.Types.CreateWorkspaceApiKeyRequest, callback?: (err: AWSError, data: Grafana.Types.CreateWorkspaceApiKeyResponse) => void): Request<Grafana.Types.CreateWorkspaceApiKeyResponse, AWSError>;
34
34
  /**
35
- * Creates a Grafana API key for the workspace. This key can be used to authenticate requests sent to the workspace's HTTP API. See https://docs.aws.amazon.com/grafana/latest/userguide/Using-Grafana-APIs.html for available APIs and example requests.
35
+ * Creates a Grafana API key for the workspace. This key can be used to authenticate requests sent to the workspace's HTTP API. See https://docs.aws.amazon.com/grafana/latest/userguide/Using-Grafana-APIs.html for available APIs and example requests. In workspaces compatible with Grafana version 9 or above, use workspace service accounts instead of API keys. API keys will be removed in a future release.
36
36
  */
37
37
  createWorkspaceApiKey(callback?: (err: AWSError, data: Grafana.Types.CreateWorkspaceApiKeyResponse) => void): Request<Grafana.Types.CreateWorkspaceApiKeyResponse, AWSError>;
38
+ /**
39
+ * Creates a service account for the workspace. A service account can be used to call Grafana HTTP APIs, and run automated workloads. After creating the service account with the correct GrafanaRole for your use case, use CreateWorkspaceServiceAccountToken to create a token that can be used to authenticate and authorize Grafana HTTP API calls. You can only create service accounts for workspaces that are compatible with Grafana version 9 and above. For more information about service accounts, see Service accounts in the Amazon Managed Grafana User Guide. For more information about the Grafana HTTP APIs, see Using Grafana HTTP APIs in the Amazon Managed Grafana User Guide.
40
+ */
41
+ createWorkspaceServiceAccount(params: Grafana.Types.CreateWorkspaceServiceAccountRequest, callback?: (err: AWSError, data: Grafana.Types.CreateWorkspaceServiceAccountResponse) => void): Request<Grafana.Types.CreateWorkspaceServiceAccountResponse, AWSError>;
42
+ /**
43
+ * Creates a service account for the workspace. A service account can be used to call Grafana HTTP APIs, and run automated workloads. After creating the service account with the correct GrafanaRole for your use case, use CreateWorkspaceServiceAccountToken to create a token that can be used to authenticate and authorize Grafana HTTP API calls. You can only create service accounts for workspaces that are compatible with Grafana version 9 and above. For more information about service accounts, see Service accounts in the Amazon Managed Grafana User Guide. For more information about the Grafana HTTP APIs, see Using Grafana HTTP APIs in the Amazon Managed Grafana User Guide.
44
+ */
45
+ createWorkspaceServiceAccount(callback?: (err: AWSError, data: Grafana.Types.CreateWorkspaceServiceAccountResponse) => void): Request<Grafana.Types.CreateWorkspaceServiceAccountResponse, AWSError>;
46
+ /**
47
+ * Creates a token that can be used to authenticate and authorize Grafana HTTP API operations for the given workspace service account. The service account acts as a user for the API operations, and defines the permissions that are used by the API. When you create the service account token, you will receive a key that is used when calling Grafana APIs. Do not lose this key, as it will not be retrievable again. If you do lose the key, you can delete the token and recreate it to receive a new key. This will disable the initial key. Service accounts are only available for workspaces that are compatible with Grafana version 9 and above.
48
+ */
49
+ createWorkspaceServiceAccountToken(params: Grafana.Types.CreateWorkspaceServiceAccountTokenRequest, callback?: (err: AWSError, data: Grafana.Types.CreateWorkspaceServiceAccountTokenResponse) => void): Request<Grafana.Types.CreateWorkspaceServiceAccountTokenResponse, AWSError>;
50
+ /**
51
+ * Creates a token that can be used to authenticate and authorize Grafana HTTP API operations for the given workspace service account. The service account acts as a user for the API operations, and defines the permissions that are used by the API. When you create the service account token, you will receive a key that is used when calling Grafana APIs. Do not lose this key, as it will not be retrievable again. If you do lose the key, you can delete the token and recreate it to receive a new key. This will disable the initial key. Service accounts are only available for workspaces that are compatible with Grafana version 9 and above.
52
+ */
53
+ createWorkspaceServiceAccountToken(callback?: (err: AWSError, data: Grafana.Types.CreateWorkspaceServiceAccountTokenResponse) => void): Request<Grafana.Types.CreateWorkspaceServiceAccountTokenResponse, AWSError>;
38
54
  /**
39
55
  * Deletes an Amazon Managed Grafana workspace.
40
56
  */
@@ -44,13 +60,29 @@ declare class Grafana extends Service {
44
60
  */
45
61
  deleteWorkspace(callback?: (err: AWSError, data: Grafana.Types.DeleteWorkspaceResponse) => void): Request<Grafana.Types.DeleteWorkspaceResponse, AWSError>;
46
62
  /**
47
- * Deletes a Grafana API key for the workspace.
63
+ * Deletes a Grafana API key for the workspace. In workspaces compatible with Grafana version 9 or above, use workspace service accounts instead of API keys. API keys will be removed in a future release.
48
64
  */
49
65
  deleteWorkspaceApiKey(params: Grafana.Types.DeleteWorkspaceApiKeyRequest, callback?: (err: AWSError, data: Grafana.Types.DeleteWorkspaceApiKeyResponse) => void): Request<Grafana.Types.DeleteWorkspaceApiKeyResponse, AWSError>;
50
66
  /**
51
- * Deletes a Grafana API key for the workspace.
67
+ * Deletes a Grafana API key for the workspace. In workspaces compatible with Grafana version 9 or above, use workspace service accounts instead of API keys. API keys will be removed in a future release.
52
68
  */
53
69
  deleteWorkspaceApiKey(callback?: (err: AWSError, data: Grafana.Types.DeleteWorkspaceApiKeyResponse) => void): Request<Grafana.Types.DeleteWorkspaceApiKeyResponse, AWSError>;
70
+ /**
71
+ * Deletes a workspace service account from the workspace. This will delete any tokens created for the service account, as well. If the tokens are currently in use, the will fail to authenticate / authorize after they are deleted. Service accounts are only available for workspaces that are compatible with Grafana version 9 and above.
72
+ */
73
+ deleteWorkspaceServiceAccount(params: Grafana.Types.DeleteWorkspaceServiceAccountRequest, callback?: (err: AWSError, data: Grafana.Types.DeleteWorkspaceServiceAccountResponse) => void): Request<Grafana.Types.DeleteWorkspaceServiceAccountResponse, AWSError>;
74
+ /**
75
+ * Deletes a workspace service account from the workspace. This will delete any tokens created for the service account, as well. If the tokens are currently in use, the will fail to authenticate / authorize after they are deleted. Service accounts are only available for workspaces that are compatible with Grafana version 9 and above.
76
+ */
77
+ deleteWorkspaceServiceAccount(callback?: (err: AWSError, data: Grafana.Types.DeleteWorkspaceServiceAccountResponse) => void): Request<Grafana.Types.DeleteWorkspaceServiceAccountResponse, AWSError>;
78
+ /**
79
+ * Deletes a token for the workspace service account. This will disable the key associated with the token. If any automation is currently using the key, it will no longer be authenticated or authorized to perform actions with the Grafana HTTP APIs. Service accounts are only available for workspaces that are compatible with Grafana version 9 and above.
80
+ */
81
+ deleteWorkspaceServiceAccountToken(params: Grafana.Types.DeleteWorkspaceServiceAccountTokenRequest, callback?: (err: AWSError, data: Grafana.Types.DeleteWorkspaceServiceAccountTokenResponse) => void): Request<Grafana.Types.DeleteWorkspaceServiceAccountTokenResponse, AWSError>;
82
+ /**
83
+ * Deletes a token for the workspace service account. This will disable the key associated with the token. If any automation is currently using the key, it will no longer be authenticated or authorized to perform actions with the Grafana HTTP APIs. Service accounts are only available for workspaces that are compatible with Grafana version 9 and above.
84
+ */
85
+ deleteWorkspaceServiceAccountToken(callback?: (err: AWSError, data: Grafana.Types.DeleteWorkspaceServiceAccountTokenResponse) => void): Request<Grafana.Types.DeleteWorkspaceServiceAccountTokenResponse, AWSError>;
54
86
  /**
55
87
  * Displays information about one Amazon Managed Grafana workspace.
56
88
  */
@@ -107,6 +139,22 @@ declare class Grafana extends Service {
107
139
  * Lists available versions of Grafana. These are available when calling CreateWorkspace. Optionally, include a workspace to list the versions to which it can be upgraded.
108
140
  */
109
141
  listVersions(callback?: (err: AWSError, data: Grafana.Types.ListVersionsResponse) => void): Request<Grafana.Types.ListVersionsResponse, AWSError>;
142
+ /**
143
+ * Returns a list of tokens for a workspace service account. This does not return the key for each token. You cannot access keys after they are created. To create a new key, delete the token and recreate it. Service accounts are only available for workspaces that are compatible with Grafana version 9 and above.
144
+ */
145
+ listWorkspaceServiceAccountTokens(params: Grafana.Types.ListWorkspaceServiceAccountTokensRequest, callback?: (err: AWSError, data: Grafana.Types.ListWorkspaceServiceAccountTokensResponse) => void): Request<Grafana.Types.ListWorkspaceServiceAccountTokensResponse, AWSError>;
146
+ /**
147
+ * Returns a list of tokens for a workspace service account. This does not return the key for each token. You cannot access keys after they are created. To create a new key, delete the token and recreate it. Service accounts are only available for workspaces that are compatible with Grafana version 9 and above.
148
+ */
149
+ listWorkspaceServiceAccountTokens(callback?: (err: AWSError, data: Grafana.Types.ListWorkspaceServiceAccountTokensResponse) => void): Request<Grafana.Types.ListWorkspaceServiceAccountTokensResponse, AWSError>;
150
+ /**
151
+ * Returns a list of service accounts for a workspace. Service accounts are only available for workspaces that are compatible with Grafana version 9 and above.
152
+ */
153
+ listWorkspaceServiceAccounts(params: Grafana.Types.ListWorkspaceServiceAccountsRequest, callback?: (err: AWSError, data: Grafana.Types.ListWorkspaceServiceAccountsResponse) => void): Request<Grafana.Types.ListWorkspaceServiceAccountsResponse, AWSError>;
154
+ /**
155
+ * Returns a list of service accounts for a workspace. Service accounts are only available for workspaces that are compatible with Grafana version 9 and above.
156
+ */
157
+ listWorkspaceServiceAccounts(callback?: (err: AWSError, data: Grafana.Types.ListWorkspaceServiceAccountsResponse) => void): Request<Grafana.Types.ListWorkspaceServiceAccountsResponse, AWSError>;
110
158
  /**
111
159
  * Returns a list of Amazon Managed Grafana workspaces in the account, with some information about each workspace. For more complete information about one workspace, use DescribeWorkspace.
112
160
  */
@@ -199,7 +247,7 @@ declare namespace Grafana {
199
247
  }
200
248
  export interface AssociateLicenseRequest {
201
249
  /**
202
- * A token from Grafana Labs that ties your Amazon Web Services account with a Grafana Labs account. For more information, see Register with Grafana Labs.
250
+ * A token from Grafana Labs that ties your Amazon Web Services account with a Grafana Labs account. For more information, see Link your account with Grafana Labs.
203
251
  */
204
252
  grafanaToken?: GrafanaToken;
205
253
  /**
@@ -257,7 +305,7 @@ declare namespace Grafana {
257
305
  */
258
306
  keyName: ApiKeyName;
259
307
  /**
260
- * Specifies the permission level of the key. Valid values: VIEWER|EDITOR|ADMIN
308
+ * Specifies the permission level of the key. Valid values: ADMIN|EDITOR|VIEWER
261
309
  */
262
310
  keyRole: String;
263
311
  /**
@@ -302,7 +350,7 @@ declare namespace Grafana {
302
350
  */
303
351
  configuration?: OverridableConfigurationJson;
304
352
  /**
305
- * Specifies the version of Grafana to support in the new workspace. If not specified, defaults to the latest version (for example, 9.4). To get a list of supported versions, use the ListVersions operation.
353
+ * Specifies the version of Grafana to support in the new workspace. If not specified, defaults to the latest version (for example, 10.4). To get a list of supported versions, use the ListVersions operation.
306
354
  */
307
355
  grafanaVersion?: GrafanaVersion;
308
356
  /**
@@ -360,6 +408,71 @@ declare namespace Grafana {
360
408
  */
361
409
  workspace: WorkspaceDescription;
362
410
  }
411
+ export interface CreateWorkspaceServiceAccountRequest {
412
+ /**
413
+ * The permission level to use for this service account. For more information about the roles and the permissions each has, see User roles in the Amazon Managed Grafana User Guide.
414
+ */
415
+ grafanaRole: Role;
416
+ /**
417
+ * A name for the service account. The name must be unique within the workspace, as it determines the ID associated with the service account.
418
+ */
419
+ name: ServiceAccountName;
420
+ /**
421
+ * The ID of the workspace within which to create the service account.
422
+ */
423
+ workspaceId: WorkspaceId;
424
+ }
425
+ export interface CreateWorkspaceServiceAccountResponse {
426
+ /**
427
+ * The permission level given to the service account.
428
+ */
429
+ grafanaRole: Role;
430
+ /**
431
+ * The ID of the service account.
432
+ */
433
+ id: String;
434
+ /**
435
+ * The name of the service account.
436
+ */
437
+ name: String;
438
+ /**
439
+ * The workspace with which the service account is associated.
440
+ */
441
+ workspaceId: WorkspaceId;
442
+ }
443
+ export interface CreateWorkspaceServiceAccountTokenRequest {
444
+ /**
445
+ * A name for the token to create.
446
+ */
447
+ name: ServiceAccountTokenName;
448
+ /**
449
+ * Sets how long the token will be valid, in seconds. You can set the time up to 30 days in the future.
450
+ */
451
+ secondsToLive: CreateWorkspaceServiceAccountTokenRequestSecondsToLiveInteger;
452
+ /**
453
+ * The ID of the service account for which to create a token.
454
+ */
455
+ serviceAccountId: String;
456
+ /**
457
+ * The ID of the workspace the service account resides within.
458
+ */
459
+ workspaceId: WorkspaceId;
460
+ }
461
+ export type CreateWorkspaceServiceAccountTokenRequestSecondsToLiveInteger = number;
462
+ export interface CreateWorkspaceServiceAccountTokenResponse {
463
+ /**
464
+ * The ID of the service account where the token was created.
465
+ */
466
+ serviceAccountId: String;
467
+ /**
468
+ * Information about the created token, including the key. Be sure to store the key securely.
469
+ */
470
+ serviceAccountToken: ServiceAccountTokenSummaryWithKey;
471
+ /**
472
+ * The ID of the workspace where the token was created.
473
+ */
474
+ workspaceId: WorkspaceId;
475
+ }
363
476
  export type DataSourceType = "AMAZON_OPENSEARCH_SERVICE"|"CLOUDWATCH"|"PROMETHEUS"|"XRAY"|"TIMESTREAM"|"SITEWISE"|"ATHENA"|"REDSHIFT"|"TWINMAKER"|string;
364
477
  export type DataSourceTypesList = DataSourceType[];
365
478
  export interface DeleteWorkspaceApiKeyRequest {
@@ -394,6 +507,54 @@ declare namespace Grafana {
394
507
  */
395
508
  workspace: WorkspaceDescription;
396
509
  }
510
+ export interface DeleteWorkspaceServiceAccountRequest {
511
+ /**
512
+ * The ID of the service account to delete.
513
+ */
514
+ serviceAccountId: String;
515
+ /**
516
+ * The ID of the workspace where the service account resides.
517
+ */
518
+ workspaceId: WorkspaceId;
519
+ }
520
+ export interface DeleteWorkspaceServiceAccountResponse {
521
+ /**
522
+ * The ID of the service account deleted.
523
+ */
524
+ serviceAccountId: String;
525
+ /**
526
+ * The ID of the workspace where the service account was deleted.
527
+ */
528
+ workspaceId: WorkspaceId;
529
+ }
530
+ export interface DeleteWorkspaceServiceAccountTokenRequest {
531
+ /**
532
+ * The ID of the service account from which to delete the token.
533
+ */
534
+ serviceAccountId: String;
535
+ /**
536
+ * The ID of the token to delete.
537
+ */
538
+ tokenId: String;
539
+ /**
540
+ * The ID of the workspace from which to delete the token.
541
+ */
542
+ workspaceId: WorkspaceId;
543
+ }
544
+ export interface DeleteWorkspaceServiceAccountTokenResponse {
545
+ /**
546
+ * The ID of the service account where the token was deleted.
547
+ */
548
+ serviceAccountId: String;
549
+ /**
550
+ * The ID of the token that was deleted.
551
+ */
552
+ tokenId: String;
553
+ /**
554
+ * The ID of the workspace where the token was deleted.
555
+ */
556
+ workspaceId: WorkspaceId;
557
+ }
397
558
  export interface DescribeWorkspaceAuthenticationRequest {
398
559
  /**
399
560
  * The ID of the workspace to return authentication information about.
@@ -542,6 +703,72 @@ declare namespace Grafana {
542
703
  */
543
704
  nextToken?: PaginationToken;
544
705
  }
706
+ export interface ListWorkspaceServiceAccountTokensRequest {
707
+ /**
708
+ * The maximum number of tokens to include in the results.
709
+ */
710
+ maxResults?: ListWorkspaceServiceAccountTokensRequestMaxResultsInteger;
711
+ /**
712
+ * The token for the next set of service accounts to return. (You receive this token from a previous ListWorkspaceServiceAccountTokens operation.)
713
+ */
714
+ nextToken?: PaginationToken;
715
+ /**
716
+ * The ID of the service account for which to return tokens.
717
+ */
718
+ serviceAccountId: String;
719
+ /**
720
+ * The ID of the workspace for which to return tokens.
721
+ */
722
+ workspaceId: WorkspaceId;
723
+ }
724
+ export type ListWorkspaceServiceAccountTokensRequestMaxResultsInteger = number;
725
+ export interface ListWorkspaceServiceAccountTokensResponse {
726
+ /**
727
+ * The token to use when requesting the next set of service accounts.
728
+ */
729
+ nextToken?: PaginationToken;
730
+ /**
731
+ * The ID of the service account where the tokens reside.
732
+ */
733
+ serviceAccountId: String;
734
+ /**
735
+ * An array of structures containing information about the tokens.
736
+ */
737
+ serviceAccountTokens: ServiceAccountTokenList;
738
+ /**
739
+ * The ID of the workspace where the tokens reside.
740
+ */
741
+ workspaceId: WorkspaceId;
742
+ }
743
+ export interface ListWorkspaceServiceAccountsRequest {
744
+ /**
745
+ * The maximum number of service accounts to include in the results.
746
+ */
747
+ maxResults?: ListWorkspaceServiceAccountsRequestMaxResultsInteger;
748
+ /**
749
+ * The token for the next set of service accounts to return. (You receive this token from a previous ListWorkspaceServiceAccounts operation.)
750
+ */
751
+ nextToken?: PaginationToken;
752
+ /**
753
+ * The workspace for which to list service accounts.
754
+ */
755
+ workspaceId: WorkspaceId;
756
+ }
757
+ export type ListWorkspaceServiceAccountsRequestMaxResultsInteger = number;
758
+ export interface ListWorkspaceServiceAccountsResponse {
759
+ /**
760
+ * The token to use when requesting the next set of service accounts.
761
+ */
762
+ nextToken?: PaginationToken;
763
+ /**
764
+ * An array of structures containing information about the service accounts.
765
+ */
766
+ serviceAccounts: ServiceAccountList;
767
+ /**
768
+ * The workspace to which the service accounts are associated.
769
+ */
770
+ workspaceId: WorkspaceId;
771
+ }
545
772
  export interface ListWorkspacesRequest {
546
773
  /**
547
774
  * The maximum number of workspaces to include in the results.
@@ -644,6 +871,65 @@ declare namespace Grafana {
644
871
  export type SamlConfigurationStatus = "CONFIGURED"|"NOT_CONFIGURED"|string;
645
872
  export type SecurityGroupId = string;
646
873
  export type SecurityGroupIds = SecurityGroupId[];
874
+ export type ServiceAccountList = ServiceAccountSummary[];
875
+ export type ServiceAccountName = string;
876
+ export interface ServiceAccountSummary {
877
+ /**
878
+ * The role of the service account, which sets the permission level used when calling Grafana APIs.
879
+ */
880
+ grafanaRole: Role;
881
+ /**
882
+ * The unique ID of the service account.
883
+ */
884
+ id: String;
885
+ /**
886
+ * Returns true if the service account is disabled. Service accounts can be disabled and enabled in the Amazon Managed Grafana console.
887
+ */
888
+ isDisabled: String;
889
+ /**
890
+ * The name of the service account.
891
+ */
892
+ name: String;
893
+ }
894
+ export type ServiceAccountTokenKey = string;
895
+ export type ServiceAccountTokenList = ServiceAccountTokenSummary[];
896
+ export type ServiceAccountTokenName = string;
897
+ export interface ServiceAccountTokenSummary {
898
+ /**
899
+ * When the service account token was created.
900
+ */
901
+ createdAt: Timestamp;
902
+ /**
903
+ * When the service account token will expire.
904
+ */
905
+ expiresAt: Timestamp;
906
+ /**
907
+ * The unique ID of the service account token.
908
+ */
909
+ id: String;
910
+ /**
911
+ * The last time the token was used to authorize a Grafana HTTP API.
912
+ */
913
+ lastUsedAt?: Timestamp;
914
+ /**
915
+ * The name of the service account token.
916
+ */
917
+ name: String;
918
+ }
919
+ export interface ServiceAccountTokenSummaryWithKey {
920
+ /**
921
+ * The unique ID of the service account token.
922
+ */
923
+ id: String;
924
+ /**
925
+ * The key for the service account token. Used when making calls to the Grafana HTTP APIs to authenticate and authorize the requests.
926
+ */
927
+ key: ServiceAccountTokenKey;
928
+ /**
929
+ * The name of the service account token.
930
+ */
931
+ name: String;
932
+ }
647
933
  export type SsoId = string;
648
934
  export type StackSetName = string;
649
935
  export type String = string;
@@ -888,7 +1174,7 @@ declare namespace Grafana {
888
1174
  */
889
1175
  freeTrialExpiration?: Timestamp;
890
1176
  /**
891
- * The token that ties this workspace to a Grafana Labs account. For more information, see Register with Grafana Labs.
1177
+ * The token that ties this workspace to a Grafana Labs account. For more information, see Link your account with Grafana Labs.
892
1178
  */
893
1179
  grafanaToken?: GrafanaToken;
894
1180
  /**
@@ -978,7 +1264,7 @@ declare namespace Grafana {
978
1264
  */
979
1265
  endpoint: Endpoint;
980
1266
  /**
981
- * The token that ties this workspace to a Grafana Labs account. For more information, see Register with Grafana Labs.
1267
+ * The token that ties this workspace to a Grafana Labs account. For more information, see Link your account with Grafana Labs.
982
1268
  */
983
1269
  grafanaToken?: GrafanaToken;
984
1270
  /**
@@ -117,11 +117,11 @@ declare class MedicalImaging extends Service {
117
117
  */
118
118
  listTagsForResource(callback?: (err: AWSError, data: MedicalImaging.Types.ListTagsForResourceResponse) => void): Request<MedicalImaging.Types.ListTagsForResourceResponse, AWSError>;
119
119
  /**
120
- * Search image sets based on defined input attributes. SearchImageSets accepts a single search query parameter and returns a paginated response of all image sets that have the matching criteria. All range queries must be input as (lowerBound, upperBound). SearchImageSets uses the updatedAt field for sorting in decreasing order from latest to oldest.
120
+ * Search image sets based on defined input attributes. SearchImageSets accepts a single search query parameter and returns a paginated response of all image sets that have the matching criteria. All date range queries must be input as (lowerBound, upperBound). By default, SearchImageSets uses the updatedAt field for sorting in descending order from newest to oldest.
121
121
  */
122
122
  searchImageSets(params: MedicalImaging.Types.SearchImageSetsRequest, callback?: (err: AWSError, data: MedicalImaging.Types.SearchImageSetsResponse) => void): Request<MedicalImaging.Types.SearchImageSetsResponse, AWSError>;
123
123
  /**
124
- * Search image sets based on defined input attributes. SearchImageSets accepts a single search query parameter and returns a paginated response of all image sets that have the matching criteria. All range queries must be input as (lowerBound, upperBound). SearchImageSets uses the updatedAt field for sorting in decreasing order from latest to oldest.
124
+ * Search image sets based on defined input attributes. SearchImageSets accepts a single search query parameter and returns a paginated response of all image sets that have the matching criteria. All date range queries must be input as (lowerBound, upperBound). By default, SearchImageSets uses the updatedAt field for sorting in descending order from newest to oldest.
125
125
  */
126
126
  searchImageSets(callback?: (err: AWSError, data: MedicalImaging.Types.SearchImageSetsResponse) => void): Request<MedicalImaging.Types.SearchImageSetsResponse, AWSError>;
127
127
  /**
@@ -159,6 +159,7 @@ declare class MedicalImaging extends Service {
159
159
  }
160
160
  declare namespace MedicalImaging {
161
161
  export type Arn = string;
162
+ export type AwsAccountId = string;
162
163
  export type ClientToken = string;
163
164
  export interface CopyDestinationImageSet {
164
165
  /**
@@ -1031,6 +1032,10 @@ declare namespace MedicalImaging {
1031
1032
  * The output prefix of the S3 bucket to upload the results of the DICOM import job.
1032
1033
  */
1033
1034
  outputS3Uri: S3Uri;
1035
+ /**
1036
+ * The account ID of the source S3 bucket owner.
1037
+ */
1038
+ inputOwnerAccountId?: AwsAccountId;
1034
1039
  }
1035
1040
  export interface StartDICOMImportJobResponse {
1036
1041
  /**