aws-sdk 2.1416.0 → 2.1418.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/CHANGELOG.md +15 -1
- package/README.md +1 -1
- package/apis/cloudformation-2010-05-15.min.json +20 -4
- package/apis/grafana-2020-08-18.min.json +41 -4
- package/apis/grafana-2020-08-18.paginators.json +6 -0
- package/apis/m2-2021-04-28.min.json +19 -3
- package/apis/medical-imaging-2023-07-19.examples.json +5 -0
- package/apis/medical-imaging-2023-07-19.min.json +1098 -0
- package/apis/medical-imaging-2023-07-19.paginators.json +28 -0
- package/apis/medical-imaging-2023-07-19.waiters2.json +5 -0
- package/apis/metadata.json +4 -0
- package/apis/models.lex.v2-2020-08-07.min.json +854 -54
- package/apis/models.lex.v2-2020-08-07.paginators.json +30 -0
- package/apis/ram-2018-01-04.min.json +49 -36
- package/apis/snowball-2016-06-30.examples.json +26 -0
- package/apis/snowball-2016-06-30.min.json +113 -55
- package/apis/snowball-2016-06-30.paginators.json +5 -0
- package/apis/ssm-sap-2018-05-10.min.json +98 -24
- package/apis/wafv2-2019-07-29.min.json +134 -123
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/cloudformation.d.ts +21 -0
- package/clients/codegurusecurity.d.ts +3 -3
- package/clients/connect.d.ts +2 -2
- package/clients/ec2.d.ts +200 -200
- package/clients/grafana.d.ts +47 -5
- package/clients/lexmodelsv2.d.ts +1035 -33
- package/clients/m2.d.ts +14 -4
- package/clients/medicalimaging.d.ts +1102 -0
- package/clients/medicalimaging.js +19 -0
- package/clients/ram.d.ts +14 -1
- package/clients/snowball.d.ts +101 -9
- package/clients/ssmsap.d.ts +131 -7
- package/clients/translate.d.ts +1 -1
- package/clients/wafv2.d.ts +12 -2
- package/dist/aws-sdk-core-react-native.js +60 -81
- package/dist/aws-sdk-react-native.js +175 -173
- package/dist/aws-sdk.js +27 -7
- package/dist/aws-sdk.min.js +97 -97
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/grafana.d.ts
CHANGED
@@ -99,6 +99,14 @@ declare class Grafana extends Service {
|
|
99
99
|
* The ListTagsForResource operation returns the tags that are associated with the Amazon Managed Service for Grafana resource specified by the resourceArn. Currently, the only resource that can be tagged is a workspace.
|
100
100
|
*/
|
101
101
|
listTagsForResource(callback?: (err: AWSError, data: Grafana.Types.ListTagsForResourceResponse) => void): Request<Grafana.Types.ListTagsForResourceResponse, AWSError>;
|
102
|
+
/**
|
103
|
+
* 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.
|
104
|
+
*/
|
105
|
+
listVersions(params: Grafana.Types.ListVersionsRequest, callback?: (err: AWSError, data: Grafana.Types.ListVersionsResponse) => void): Request<Grafana.Types.ListVersionsResponse, AWSError>;
|
106
|
+
/**
|
107
|
+
* 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
|
+
*/
|
109
|
+
listVersions(callback?: (err: AWSError, data: Grafana.Types.ListVersionsResponse) => void): Request<Grafana.Types.ListVersionsResponse, AWSError>;
|
102
110
|
/**
|
103
111
|
* 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.
|
104
112
|
*/
|
@@ -290,7 +298,7 @@ declare namespace Grafana {
|
|
290
298
|
*/
|
291
299
|
configuration?: OverridableConfigurationJson;
|
292
300
|
/**
|
293
|
-
* Specifies the version of Grafana to support in the new workspace.
|
301
|
+
* Specifies the version of Grafana to support in the new workspace. To get a list of supported version, use the ListVersions operation.
|
294
302
|
*/
|
295
303
|
grafanaVersion?: GrafanaVersion;
|
296
304
|
/**
|
@@ -314,7 +322,7 @@ declare namespace Grafana {
|
|
314
322
|
*/
|
315
323
|
tags?: TagMap;
|
316
324
|
/**
|
317
|
-
* The configuration settings for an Amazon VPC that contains data sources for your Grafana workspace to connect to.
|
325
|
+
* The configuration settings for an Amazon VPC that contains data sources for your Grafana workspace to connect to. Connecting to a private VPC is not yet available in the Asia Pacific (Seoul) Region (ap-northeast-2).
|
318
326
|
*/
|
319
327
|
vpcConfiguration?: VpcConfiguration;
|
320
328
|
/**
|
@@ -405,6 +413,10 @@ declare namespace Grafana {
|
|
405
413
|
* The configuration string for the workspace that you requested. For more information about the format and configuration options available, see Working in your Grafana workspace.
|
406
414
|
*/
|
407
415
|
configuration: OverridableConfigurationJson;
|
416
|
+
/**
|
417
|
+
* The supported Grafana version for the workspace.
|
418
|
+
*/
|
419
|
+
grafanaVersion?: GrafanaVersion;
|
408
420
|
}
|
409
421
|
export interface DescribeWorkspaceRequest {
|
410
422
|
/**
|
@@ -437,6 +449,7 @@ declare namespace Grafana {
|
|
437
449
|
}
|
438
450
|
export type Endpoint = string;
|
439
451
|
export type GrafanaVersion = string;
|
452
|
+
export type GrafanaVersionList = GrafanaVersion[];
|
440
453
|
export type IamRoleArn = string;
|
441
454
|
export interface IdpMetadata {
|
442
455
|
/**
|
@@ -499,6 +512,31 @@ declare namespace Grafana {
|
|
499
512
|
*/
|
500
513
|
tags?: TagMap;
|
501
514
|
}
|
515
|
+
export interface ListVersionsRequest {
|
516
|
+
/**
|
517
|
+
* The maximum number of results to include in the response.
|
518
|
+
*/
|
519
|
+
maxResults?: ListVersionsRequestMaxResultsInteger;
|
520
|
+
/**
|
521
|
+
* The token to use when requesting the next set of results. You receive this token from a previous ListVersions operation.
|
522
|
+
*/
|
523
|
+
nextToken?: PaginationToken;
|
524
|
+
/**
|
525
|
+
* The ID of the workspace to list the available upgrade versions. If not included, lists all versions of Grafana that are supported for CreateWorkspace.
|
526
|
+
*/
|
527
|
+
workspaceId?: WorkspaceId;
|
528
|
+
}
|
529
|
+
export type ListVersionsRequestMaxResultsInteger = number;
|
530
|
+
export interface ListVersionsResponse {
|
531
|
+
/**
|
532
|
+
* The Grafana versions available to create. If a workspace ID is included in the request, the Grafana versions to which this workspace can be upgraded.
|
533
|
+
*/
|
534
|
+
grafanaVersions?: GrafanaVersionList;
|
535
|
+
/**
|
536
|
+
* The token to use in a subsequent ListVersions operation to return the next set of results.
|
537
|
+
*/
|
538
|
+
nextToken?: PaginationToken;
|
539
|
+
}
|
502
540
|
export interface ListWorkspacesRequest {
|
503
541
|
/**
|
504
542
|
* The maximum number of workspaces to include in the results.
|
@@ -523,11 +561,11 @@ declare namespace Grafana {
|
|
523
561
|
export type LoginValidityDuration = number;
|
524
562
|
export interface NetworkAccessConfiguration {
|
525
563
|
/**
|
526
|
-
* An array of prefix list IDs. A prefix list is a list of CIDR ranges of IP addresses. The IP addresses specified are allowed to access your workspace. If the list is not included in the configuration then no IP addresses
|
564
|
+
* An array of prefix list IDs. A prefix list is a list of CIDR ranges of IP addresses. The IP addresses specified are allowed to access your workspace. If the list is not included in the configuration (passed an empty array) then no IP addresses are allowed to access the workspace. You create a prefix list using the Amazon VPC console. Prefix list IDs have the format pl-1a2b3c4d . For more information about prefix lists, see Group CIDR blocks using managed prefix listsin the Amazon Virtual Private Cloud User Guide.
|
527
565
|
*/
|
528
566
|
prefixListIds: PrefixListIds;
|
529
567
|
/**
|
530
|
-
* An array of Amazon VPC endpoint IDs for the workspace. You can create VPC endpoints to your Amazon Managed Grafana workspace for access from within a VPC. If a NetworkAccessConfiguration is specified then only VPC endpoints specified here
|
568
|
+
* An array of Amazon VPC endpoint IDs for the workspace. You can create VPC endpoints to your Amazon Managed Grafana workspace for access from within a VPC. If a NetworkAccessConfiguration is specified then only VPC endpoints specified here are allowed to access the workspace. If you pass in an empty array of strings, then no VPCs are allowed to access the workspace. VPC endpoint IDs have the format vpce-1a2b3c4d . For more information about creating an interface VPC endpoint, see Interface VPC endpoints in the Amazon Managed Grafana User Guide. The only VPC endpoints that can be specified here are interface VPC endpoints for Grafana workspaces (using the com.amazonaws.[region].grafana-workspace service endpoint). Other VPC endpoints are ignored.
|
531
569
|
*/
|
532
570
|
vpceIds: VpceIds;
|
533
571
|
}
|
@@ -708,6 +746,10 @@ declare namespace Grafana {
|
|
708
746
|
* The new configuration string for the workspace. For more information about the format and configuration options available, see Working in your Grafana workspace.
|
709
747
|
*/
|
710
748
|
configuration: OverridableConfigurationJson;
|
749
|
+
/**
|
750
|
+
* Specifies the version of Grafana to support in the new workspace. Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). To know what versions are available to upgrade to for a specific workspace, see the ListVersions operation.
|
751
|
+
*/
|
752
|
+
grafanaVersion?: GrafanaVersion;
|
711
753
|
/**
|
712
754
|
* The ID of the workspace to update.
|
713
755
|
*/
|
@@ -908,7 +950,7 @@ declare namespace Grafana {
|
|
908
950
|
export type WorkspaceId = string;
|
909
951
|
export type WorkspaceList = WorkspaceSummary[];
|
910
952
|
export type WorkspaceName = string;
|
911
|
-
export type WorkspaceStatus = "ACTIVE"|"CREATING"|"DELETING"|"FAILED"|"UPDATING"|"UPGRADING"|"DELETION_FAILED"|"CREATION_FAILED"|"UPDATE_FAILED"|"UPGRADE_FAILED"|"LICENSE_REMOVAL_FAILED"|string;
|
953
|
+
export type WorkspaceStatus = "ACTIVE"|"CREATING"|"DELETING"|"FAILED"|"UPDATING"|"UPGRADING"|"DELETION_FAILED"|"CREATION_FAILED"|"UPDATE_FAILED"|"UPGRADE_FAILED"|"LICENSE_REMOVAL_FAILED"|"VERSION_UPDATING"|"VERSION_UPDATE_FAILED"|string;
|
912
954
|
export interface WorkspaceSummary {
|
913
955
|
/**
|
914
956
|
* A structure containing information about the authentication methods used in the workspace.
|