aws-sdk 2.1620.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.
- package/README.md +1 -1
- package/apis/bedrock-agent-runtime-2023-07-26.min.json +6 -0
- package/apis/codebuild-2016-10-06.min.json +15 -0
- package/apis/grafana-2020-08-18.min.json +317 -15
- package/apis/grafana-2020-08-18.paginators.json +12 -0
- package/apis/medical-imaging-2023-07-19.min.json +8 -5
- package/apis/securityhub-2018-10-26.min.json +3 -0
- package/clients/bedrockagentruntime.d.ts +19 -11
- package/clients/codebuild.d.ts +29 -14
- package/clients/datasync.d.ts +1 -1
- package/clients/grafana.d.ts +297 -11
- package/clients/medicalimaging.d.ts +7 -2
- package/clients/securityhub.d.ts +66 -66
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +18 -3
- package/dist/aws-sdk.min.js +17 -17
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/codebuild.d.ts
CHANGED
@@ -624,7 +624,7 @@ declare namespace CodeBuild {
|
|
624
624
|
*/
|
625
625
|
logs?: LogsLocation;
|
626
626
|
/**
|
627
|
-
* How long, in minutes, for CodeBuild to wait before timing out this build if it does not get marked as completed.
|
627
|
+
* How long, in minutes, from 5 to 480 (8 hours), for CodeBuild to wait before timing out this build if it does not get marked as completed.
|
628
628
|
*/
|
629
629
|
timeoutInMinutes?: WrapperInt;
|
630
630
|
/**
|
@@ -1047,9 +1047,14 @@ declare namespace CodeBuild {
|
|
1047
1047
|
*/
|
1048
1048
|
scalingConfiguration?: ScalingConfigurationInput;
|
1049
1049
|
/**
|
1050
|
-
* The compute fleet overflow behavior. For overflow behavior QUEUE, your overflow builds need to wait on the existing fleet instance to become available. For overflow behavior ON_DEMAND, your overflow builds run on CodeBuild on-demand.
|
1050
|
+
* The compute fleet overflow behavior. For overflow behavior QUEUE, your overflow builds need to wait on the existing fleet instance to become available. For overflow behavior ON_DEMAND, your overflow builds run on CodeBuild on-demand. If you choose to set your overflow behavior to on-demand while creating a VPC-connected fleet, make sure that you add the required VPC permissions to your project service role. For more information, see Example policy statement to allow CodeBuild access to Amazon Web Services services required to create a VPC network interface.
|
1051
1051
|
*/
|
1052
1052
|
overflowBehavior?: FleetOverflowBehavior;
|
1053
|
+
vpcConfig?: VpcConfig;
|
1054
|
+
/**
|
1055
|
+
* The service role associated with the compute fleet.
|
1056
|
+
*/
|
1057
|
+
fleetServiceRole?: NonEmptyString;
|
1053
1058
|
/**
|
1054
1059
|
* A list of tag key and value pairs associated with this compute fleet. These tags are available for use by Amazon Web Services services that support CodeBuild build project tags.
|
1055
1060
|
*/
|
@@ -1079,7 +1084,7 @@ declare namespace CodeBuild {
|
|
1079
1084
|
*/
|
1080
1085
|
secondarySources?: ProjectSources;
|
1081
1086
|
/**
|
1082
|
-
* A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
|
1087
|
+
* A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For GitLab: the commit ID, branch, or Git tag to use. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
|
1083
1088
|
*/
|
1084
1089
|
sourceVersion?: String;
|
1085
1090
|
/**
|
@@ -1123,7 +1128,7 @@ declare namespace CodeBuild {
|
|
1123
1128
|
*/
|
1124
1129
|
tags?: TagList;
|
1125
1130
|
/**
|
1126
|
-
* VpcConfig enables CodeBuild to access resources in an Amazon VPC.
|
1131
|
+
* VpcConfig enables CodeBuild to access resources in an Amazon VPC. If you're using compute fleets during project creation, do not provide vpcConfig.
|
1127
1132
|
*/
|
1128
1133
|
vpcConfig?: VpcConfig;
|
1129
1134
|
/**
|
@@ -1474,9 +1479,14 @@ declare namespace CodeBuild {
|
|
1474
1479
|
*/
|
1475
1480
|
scalingConfiguration?: ScalingConfigurationOutput;
|
1476
1481
|
/**
|
1477
|
-
* The compute fleet overflow behavior. For overflow behavior QUEUE, your overflow builds need to wait on the existing fleet instance to become available. For overflow behavior ON_DEMAND, your overflow builds run on CodeBuild on-demand.
|
1482
|
+
* The compute fleet overflow behavior. For overflow behavior QUEUE, your overflow builds need to wait on the existing fleet instance to become available. For overflow behavior ON_DEMAND, your overflow builds run on CodeBuild on-demand. If you choose to set your overflow behavior to on-demand while creating a VPC-connected fleet, make sure that you add the required VPC permissions to your project service role. For more information, see Example policy statement to allow CodeBuild access to Amazon Web Services services required to create a VPC network interface.
|
1478
1483
|
*/
|
1479
1484
|
overflowBehavior?: FleetOverflowBehavior;
|
1485
|
+
vpcConfig?: VpcConfig;
|
1486
|
+
/**
|
1487
|
+
* The service role associated with the compute fleet.
|
1488
|
+
*/
|
1489
|
+
fleetServiceRole?: NonEmptyString;
|
1480
1490
|
/**
|
1481
1491
|
* A list of tag key and value pairs associated with this compute fleet. These tags are available for use by Amazon Web Services services that support CodeBuild build project tags.
|
1482
1492
|
*/
|
@@ -1484,7 +1494,7 @@ declare namespace CodeBuild {
|
|
1484
1494
|
}
|
1485
1495
|
export type FleetArns = NonEmptyString[];
|
1486
1496
|
export type FleetCapacity = number;
|
1487
|
-
export type FleetContextCode = "CREATE_FAILED"|"UPDATE_FAILED"|string;
|
1497
|
+
export type FleetContextCode = "CREATE_FAILED"|"UPDATE_FAILED"|"ACTION_REQUIRED"|string;
|
1488
1498
|
export type FleetName = string;
|
1489
1499
|
export type FleetNames = NonEmptyString[];
|
1490
1500
|
export type FleetOverflowBehavior = "QUEUE"|"ON_DEMAND"|string;
|
@@ -1559,7 +1569,7 @@ declare namespace CodeBuild {
|
|
1559
1569
|
*/
|
1560
1570
|
username?: NonEmptyString;
|
1561
1571
|
/**
|
1562
|
-
* For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is either the access token or the app password.
|
1572
|
+
* For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is either the access token or the app password. For the authType CODECONNECTIONS, this is the connectionArn.
|
1563
1573
|
*/
|
1564
1574
|
token: SensitiveNonEmptyString;
|
1565
1575
|
/**
|
@@ -1567,7 +1577,7 @@ declare namespace CodeBuild {
|
|
1567
1577
|
*/
|
1568
1578
|
serverType: ServerType;
|
1569
1579
|
/**
|
1570
|
-
* The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket repository. An OAUTH connection is not supported by the API and must be created using the CodeBuild console.
|
1580
|
+
* The type of authentication used to connect to a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository. An OAUTH connection is not supported by the API and must be created using the CodeBuild console. Note that CODECONNECTIONS is only valid for GitLab and GitLab Self Managed.
|
1571
1581
|
*/
|
1572
1582
|
authType: AuthType;
|
1573
1583
|
/**
|
@@ -2000,7 +2010,7 @@ declare namespace CodeBuild {
|
|
2000
2010
|
*/
|
2001
2011
|
secondarySources?: ProjectSources;
|
2002
2012
|
/**
|
2003
|
-
* A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
|
2013
|
+
* A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For GitLab: the commit ID, branch, or Git tag to use. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
|
2004
2014
|
*/
|
2005
2015
|
sourceVersion?: String;
|
2006
2016
|
/**
|
@@ -2297,7 +2307,7 @@ declare namespace CodeBuild {
|
|
2297
2307
|
*/
|
2298
2308
|
sourceIdentifier: String;
|
2299
2309
|
/**
|
2300
|
-
* The source version for the corresponding source identifier. If specified, must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub
|
2310
|
+
* The source version for the corresponding source identifier. If specified, must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example, pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For GitLab: the commit ID, branch, or Git tag to use. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
|
2301
2311
|
*/
|
2302
2312
|
sourceVersion: String;
|
2303
2313
|
}
|
@@ -2771,7 +2781,7 @@ declare namespace CodeBuild {
|
|
2771
2781
|
*/
|
2772
2782
|
secondarySourcesVersionOverride?: ProjectSecondarySourceVersions;
|
2773
2783
|
/**
|
2774
|
-
* The version of the build input to be built, for this build only. If not specified, the latest version is used. If specified, the contents depends on the source provider: CodeCommit The commit ID, branch, or Git tag to use. GitHub The commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. Bitbucket The commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. Amazon S3 The version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence. For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
|
2784
|
+
* The version of the build input to be built, for this build only. If not specified, the latest version is used. If specified, the contents depends on the source provider: CodeCommit The commit ID, branch, or Git tag to use. GitHub The commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. GitLab The commit ID, branch, or Git tag to use. Bitbucket The commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. Amazon S3 The version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the project level, then this sourceVersion (at the build level) takes precedence. For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
|
2775
2785
|
*/
|
2776
2786
|
sourceVersion?: String;
|
2777
2787
|
/**
|
@@ -2795,7 +2805,7 @@ declare namespace CodeBuild {
|
|
2795
2805
|
*/
|
2796
2806
|
sourceLocationOverride?: String;
|
2797
2807
|
/**
|
2798
|
-
* An authorization type for this build that overrides the one defined in the build project. This override applies only if the build project's source is BitBucket or
|
2808
|
+
* An authorization type for this build that overrides the one defined in the build project. This override applies only if the build project's source is BitBucket, GitHub, GitLab, or GitLab Self Managed.
|
2799
2809
|
*/
|
2800
2810
|
sourceAuthOverride?: SourceAuth;
|
2801
2811
|
/**
|
@@ -3022,9 +3032,14 @@ declare namespace CodeBuild {
|
|
3022
3032
|
*/
|
3023
3033
|
scalingConfiguration?: ScalingConfigurationInput;
|
3024
3034
|
/**
|
3025
|
-
* The compute fleet overflow behavior. For overflow behavior QUEUE, your overflow builds need to wait on the existing fleet instance to become available. For overflow behavior ON_DEMAND, your overflow builds run on CodeBuild on-demand.
|
3035
|
+
* The compute fleet overflow behavior. For overflow behavior QUEUE, your overflow builds need to wait on the existing fleet instance to become available. For overflow behavior ON_DEMAND, your overflow builds run on CodeBuild on-demand. If you choose to set your overflow behavior to on-demand while creating a VPC-connected fleet, make sure that you add the required VPC permissions to your project service role. For more information, see Example policy statement to allow CodeBuild access to Amazon Web Services services required to create a VPC network interface.
|
3026
3036
|
*/
|
3027
3037
|
overflowBehavior?: FleetOverflowBehavior;
|
3038
|
+
vpcConfig?: VpcConfig;
|
3039
|
+
/**
|
3040
|
+
* The service role associated with the compute fleet.
|
3041
|
+
*/
|
3042
|
+
fleetServiceRole?: NonEmptyString;
|
3028
3043
|
/**
|
3029
3044
|
* A list of tag key and value pairs associated with this compute fleet. These tags are available for use by Amazon Web Services services that support CodeBuild build project tags.
|
3030
3045
|
*/
|
@@ -3054,7 +3069,7 @@ declare namespace CodeBuild {
|
|
3054
3069
|
*/
|
3055
3070
|
secondarySources?: ProjectSources;
|
3056
3071
|
/**
|
3057
|
-
* A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
|
3072
|
+
* A version of the build input to be built for this project. If not specified, the latest version is used. If specified, it must be one of: For CodeCommit: the commit ID, branch, or Git tag to use. For GitHub: the commit ID, pull request ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a pull request ID is specified, it must use the format pr/pull-request-ID (for example pr/25). If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For GitLab: the commit ID, branch, or Git tag to use. For Bitbucket: the commit ID, branch name, or tag name that corresponds to the version of the source code you want to build. If a branch name is specified, the branch's HEAD commit ID is used. If not specified, the default branch's HEAD commit ID is used. For Amazon S3: the version ID of the object that represents the build input ZIP file to use. If sourceVersion is specified at the build level, then that version takes precedence over this sourceVersion (at the project level). For more information, see Source Version Sample with CodeBuild in the CodeBuild User Guide.
|
3058
3073
|
*/
|
3059
3074
|
sourceVersion?: String;
|
3060
3075
|
/**
|
package/clients/datasync.d.ts
CHANGED
@@ -2939,7 +2939,7 @@ declare namespace DataSync {
|
|
2939
2939
|
*/
|
2940
2940
|
ErrorDetail?: string;
|
2941
2941
|
}
|
2942
|
-
export type TaskExecutionStatus = "QUEUED"|"LAUNCHING"|"PREPARING"|"TRANSFERRING"|"VERIFYING"|"SUCCESS"|"ERROR"|string;
|
2942
|
+
export type TaskExecutionStatus = "QUEUED"|"CANCELLING"|"LAUNCHING"|"PREPARING"|"TRANSFERRING"|"VERIFYING"|"SUCCESS"|"ERROR"|string;
|
2943
2943
|
export interface TaskFilter {
|
2944
2944
|
/**
|
2945
2945
|
* The name of the filter being used. Each API call supports a list of filters that are available for it. For example, LocationId for ListTasks.
|
package/clients/grafana.d.ts
CHANGED
@@ -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
|
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:
|
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,
|
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
|
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
|
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).
|
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).
|
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
|
/**
|