cdk-docker-image-deployment 0.0.200 → 0.0.201
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/.jsii +4 -4
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +15 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/batch-2016-08-10.min.json +74 -41
- package/node_modules/aws-sdk/apis/chime-sdk-identity-2021-04-20.min.json +314 -64
- package/node_modules/aws-sdk/apis/chime-sdk-identity-2021-04-20.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +599 -8
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +162 -88
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.min.json +758 -44
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/codeartifact-2018-09-22.min.json +35 -29
- package/node_modules/aws-sdk/apis/guardduty-2017-11-28.min.json +69 -61
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.examples.json +5 -0
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.min.json +363 -0
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.paginators.json +9 -0
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +1061 -880
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/batch.d.ts +25 -8
- package/node_modules/aws-sdk/clients/chimesdkidentity.d.ts +266 -11
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +696 -14
- package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +180 -107
- package/node_modules/aws-sdk/clients/chimesdkvoice.d.ts +364 -0
- package/node_modules/aws-sdk/clients/codeartifact.d.ts +29 -21
- package/node_modules/aws-sdk/clients/guardduty.d.ts +22 -13
- package/node_modules/aws-sdk/clients/ivsrealtime.d.ts +379 -0
- package/node_modules/aws-sdk/clients/ivsrealtime.js +18 -0
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +2 -2
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +219 -14
- package/node_modules/aws-sdk/clients/textract.d.ts +13 -13
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +52 -15
- package/node_modules/aws-sdk/dist/aws-sdk.js +7 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +12 -12
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
|
@@ -253,11 +253,11 @@ declare class CodeArtifact extends Service {
|
|
|
253
253
|
*/
|
|
254
254
|
listTagsForResource(callback?: (err: AWSError, data: CodeArtifact.Types.ListTagsForResourceResult) => void): Request<CodeArtifact.Types.ListTagsForResourceResult, AWSError>;
|
|
255
255
|
/**
|
|
256
|
-
* Creates a new package version containing one or more assets (or files). The unfinished flag can be used to keep the package version in the Unfinished state until all of
|
|
256
|
+
* Creates a new package version containing one or more assets (or files). The unfinished flag can be used to keep the package version in the Unfinished state until all of its assets have been uploaded (see Package version status in the CodeArtifact user guide). To set the package version’s status to Published, omit the unfinished flag when uploading the final asset, or set the status using UpdatePackageVersionStatus. Once a package version’s status is set to Published, it cannot change back to Unfinished. Only generic packages can be published using this API. For more information, see Using generic packages in the CodeArtifact User Guide.
|
|
257
257
|
*/
|
|
258
258
|
publishPackageVersion(params: CodeArtifact.Types.PublishPackageVersionRequest, callback?: (err: AWSError, data: CodeArtifact.Types.PublishPackageVersionResult) => void): Request<CodeArtifact.Types.PublishPackageVersionResult, AWSError>;
|
|
259
259
|
/**
|
|
260
|
-
* Creates a new package version containing one or more assets (or files). The unfinished flag can be used to keep the package version in the Unfinished state until all of
|
|
260
|
+
* Creates a new package version containing one or more assets (or files). The unfinished flag can be used to keep the package version in the Unfinished state until all of its assets have been uploaded (see Package version status in the CodeArtifact user guide). To set the package version’s status to Published, omit the unfinished flag when uploading the final asset, or set the status using UpdatePackageVersionStatus. Once a package version’s status is set to Published, it cannot change back to Unfinished. Only generic packages can be published using this API. For more information, see Using generic packages in the CodeArtifact User Guide.
|
|
261
261
|
*/
|
|
262
262
|
publishPackageVersion(callback?: (err: AWSError, data: CodeArtifact.Types.PublishPackageVersionResult) => void): Request<CodeArtifact.Types.PublishPackageVersionResult, AWSError>;
|
|
263
263
|
/**
|
|
@@ -354,7 +354,7 @@ declare namespace CodeArtifact {
|
|
|
354
354
|
*/
|
|
355
355
|
repository: RepositoryName;
|
|
356
356
|
/**
|
|
357
|
-
* The name of the external connection to add to the repository. The following values are supported: public:npmjs - for the npm public repository. public:nuget-org - for the NuGet Gallery. public:pypi - for the Python Package Index. public:maven-central - for Maven Central. public:maven-googleandroid - for the Google Android repository. public:maven-gradleplugins - for the Gradle plugins repository. public:maven-commonsware - for the CommonsWare Android repository.
|
|
357
|
+
* The name of the external connection to add to the repository. The following values are supported: public:npmjs - for the npm public repository. public:nuget-org - for the NuGet Gallery. public:pypi - for the Python Package Index. public:maven-central - for Maven Central. public:maven-googleandroid - for the Google Android repository. public:maven-gradleplugins - for the Gradle plugins repository. public:maven-commonsware - for the CommonsWare Android repository. public:maven-clojars - for the Clojars repository.
|
|
358
358
|
*/
|
|
359
359
|
externalConnection: ExternalConnectionName;
|
|
360
360
|
}
|
|
@@ -388,7 +388,7 @@ declare namespace CodeArtifact {
|
|
|
388
388
|
*/
|
|
389
389
|
format: PackageFormat;
|
|
390
390
|
/**
|
|
391
|
-
* The namespace of the package versions to be copied. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace is required when copying Maven package versions. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is
|
|
391
|
+
* The namespace of the package versions to be copied. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace is required when copying Maven package versions. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
392
392
|
*/
|
|
393
393
|
namespace?: PackageNamespace;
|
|
394
394
|
/**
|
|
@@ -528,7 +528,7 @@ declare namespace CodeArtifact {
|
|
|
528
528
|
*/
|
|
529
529
|
format: PackageFormat;
|
|
530
530
|
/**
|
|
531
|
-
* The namespace of the package to delete. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace is required when deleting Maven package versions. The namespace of an npm package is its scope.
|
|
531
|
+
* The namespace of the package to delete. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace is required when deleting Maven package versions. The namespace of an npm package is its scope. Python and NuGet packages do not contain corresponding components, packages of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
532
532
|
*/
|
|
533
533
|
namespace?: PackageNamespace;
|
|
534
534
|
/**
|
|
@@ -557,7 +557,7 @@ declare namespace CodeArtifact {
|
|
|
557
557
|
*/
|
|
558
558
|
format: PackageFormat;
|
|
559
559
|
/**
|
|
560
|
-
* The namespace of the package versions to be deleted. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace is required when deleting Maven package versions. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is
|
|
560
|
+
* The namespace of the package versions to be deleted. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace is required when deleting Maven package versions. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
561
561
|
*/
|
|
562
562
|
namespace?: PackageNamespace;
|
|
563
563
|
/**
|
|
@@ -658,7 +658,7 @@ declare namespace CodeArtifact {
|
|
|
658
658
|
*/
|
|
659
659
|
format: PackageFormat;
|
|
660
660
|
/**
|
|
661
|
-
* The namespace of the requested package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace is required when requesting Maven packages. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is
|
|
661
|
+
* The namespace of the requested package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace is required when requesting Maven packages. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
662
662
|
*/
|
|
663
663
|
namespace?: PackageNamespace;
|
|
664
664
|
/**
|
|
@@ -690,7 +690,7 @@ declare namespace CodeArtifact {
|
|
|
690
690
|
*/
|
|
691
691
|
format: PackageFormat;
|
|
692
692
|
/**
|
|
693
|
-
* The namespace of the requested package version. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is
|
|
693
|
+
* The namespace of the requested package version. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
694
694
|
*/
|
|
695
695
|
namespace?: PackageNamespace;
|
|
696
696
|
/**
|
|
@@ -771,7 +771,7 @@ declare namespace CodeArtifact {
|
|
|
771
771
|
*/
|
|
772
772
|
format: PackageFormat;
|
|
773
773
|
/**
|
|
774
|
-
* The namespace of the package versions to be disposed. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is
|
|
774
|
+
* The namespace of the package versions to be disposed. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
775
775
|
*/
|
|
776
776
|
namespace?: PackageNamespace;
|
|
777
777
|
/**
|
|
@@ -939,7 +939,7 @@ declare namespace CodeArtifact {
|
|
|
939
939
|
*/
|
|
940
940
|
format: PackageFormat;
|
|
941
941
|
/**
|
|
942
|
-
* The namespace of the package version with the requested asset file. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is
|
|
942
|
+
* The namespace of the package version with the requested asset file. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
943
943
|
*/
|
|
944
944
|
namespace?: PackageNamespace;
|
|
945
945
|
/**
|
|
@@ -995,7 +995,7 @@ declare namespace CodeArtifact {
|
|
|
995
995
|
*/
|
|
996
996
|
format: PackageFormat;
|
|
997
997
|
/**
|
|
998
|
-
* The namespace of the package version with the requested readme file. The package version component that specifies its namespace depends on its type. For example: The namespace of
|
|
998
|
+
* The namespace of the package version with the requested readme file. The package version component that specifies its namespace depends on its type. For example: The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace.
|
|
999
999
|
*/
|
|
1000
1000
|
namespace?: PackageNamespace;
|
|
1001
1001
|
/**
|
|
@@ -1131,7 +1131,7 @@ declare namespace CodeArtifact {
|
|
|
1131
1131
|
*/
|
|
1132
1132
|
format: PackageFormat;
|
|
1133
1133
|
/**
|
|
1134
|
-
* The namespace of the package version that contains the requested package version assets. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is
|
|
1134
|
+
* The namespace of the package version that contains the requested package version assets. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
1135
1135
|
*/
|
|
1136
1136
|
namespace?: PackageNamespace;
|
|
1137
1137
|
/**
|
|
@@ -1199,7 +1199,7 @@ declare namespace CodeArtifact {
|
|
|
1199
1199
|
*/
|
|
1200
1200
|
format: PackageFormat;
|
|
1201
1201
|
/**
|
|
1202
|
-
* The namespace of the package version with the requested dependencies. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is
|
|
1202
|
+
* The namespace of the package version with the requested dependencies. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
1203
1203
|
*/
|
|
1204
1204
|
namespace?: PackageNamespace;
|
|
1205
1205
|
/**
|
|
@@ -1264,7 +1264,7 @@ declare namespace CodeArtifact {
|
|
|
1264
1264
|
*/
|
|
1265
1265
|
format: PackageFormat;
|
|
1266
1266
|
/**
|
|
1267
|
-
* The namespace of the package that contains the requested package versions. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is
|
|
1267
|
+
* The namespace of the package that contains the requested package versions. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
1268
1268
|
*/
|
|
1269
1269
|
namespace?: PackageNamespace;
|
|
1270
1270
|
/**
|
|
@@ -1337,7 +1337,7 @@ declare namespace CodeArtifact {
|
|
|
1337
1337
|
*/
|
|
1338
1338
|
format?: PackageFormat;
|
|
1339
1339
|
/**
|
|
1340
|
-
* The namespace prefix used to filter requested packages. Only packages with a namespace that starts with the provided string value are returned. Note that although this option is called --namespace and not --namespace-prefix, it has prefix-matching behavior. Each package format uses namespace as follows: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is
|
|
1340
|
+
* The namespace prefix used to filter requested packages. Only packages with a namespace that starts with the provided string value are returned. Note that although this option is called --namespace and not --namespace-prefix, it has prefix-matching behavior. Each package format uses namespace as follows: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
1341
1341
|
*/
|
|
1342
1342
|
namespace?: PackageNamespace;
|
|
1343
1343
|
/**
|
|
@@ -1472,7 +1472,7 @@ declare namespace CodeArtifact {
|
|
|
1472
1472
|
*/
|
|
1473
1473
|
format?: PackageFormat;
|
|
1474
1474
|
/**
|
|
1475
|
-
* The namespace of the package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is
|
|
1475
|
+
* The namespace of the package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
1476
1476
|
*/
|
|
1477
1477
|
namespace?: PackageNamespace;
|
|
1478
1478
|
/**
|
|
@@ -1509,7 +1509,7 @@ declare namespace CodeArtifact {
|
|
|
1509
1509
|
*/
|
|
1510
1510
|
format?: PackageFormat;
|
|
1511
1511
|
/**
|
|
1512
|
-
* The namespace of the package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is
|
|
1512
|
+
* The namespace of the package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
1513
1513
|
*/
|
|
1514
1514
|
namespace?: PackageNamespace;
|
|
1515
1515
|
/**
|
|
@@ -1529,7 +1529,7 @@ declare namespace CodeArtifact {
|
|
|
1529
1529
|
*/
|
|
1530
1530
|
format?: PackageFormat;
|
|
1531
1531
|
/**
|
|
1532
|
-
* The namespace of the package version. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is
|
|
1532
|
+
* The namespace of the package version. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
1533
1533
|
*/
|
|
1534
1534
|
namespace?: PackageNamespace;
|
|
1535
1535
|
/**
|
|
@@ -1665,7 +1665,7 @@ declare namespace CodeArtifact {
|
|
|
1665
1665
|
*/
|
|
1666
1666
|
assetName: AssetName;
|
|
1667
1667
|
/**
|
|
1668
|
-
* The SHA256 hash of the assetContent to publish. This value must be calculated by the caller and provided with the request. This value is used as an integrity check to verify that the assetContent has not changed after it was originally sent.
|
|
1668
|
+
* The SHA256 hash of the assetContent to publish. This value must be calculated by the caller and provided with the request (see Publishing a generic package in the CodeArtifact User Guide). This value is used as an integrity check to verify that the assetContent has not changed after it was originally sent.
|
|
1669
1669
|
*/
|
|
1670
1670
|
assetSHA256: SHA256;
|
|
1671
1671
|
/**
|
|
@@ -1745,7 +1745,7 @@ declare namespace CodeArtifact {
|
|
|
1745
1745
|
*/
|
|
1746
1746
|
format: PackageFormat;
|
|
1747
1747
|
/**
|
|
1748
|
-
* The namespace of the package to be updated. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is
|
|
1748
|
+
* The namespace of the package to be updated. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. Python and NuGet packages do not contain a corresponding component, packages of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
1749
1749
|
*/
|
|
1750
1750
|
namespace?: PackageNamespace;
|
|
1751
1751
|
/**
|
|
@@ -1824,6 +1824,10 @@ declare namespace CodeArtifact {
|
|
|
1824
1824
|
* An array of external connections associated with the repository.
|
|
1825
1825
|
*/
|
|
1826
1826
|
externalConnections?: RepositoryExternalConnectionInfoList;
|
|
1827
|
+
/**
|
|
1828
|
+
* A timestamp that represents the date and time the repository was created.
|
|
1829
|
+
*/
|
|
1830
|
+
createdTime?: Timestamp;
|
|
1827
1831
|
}
|
|
1828
1832
|
export interface RepositoryExternalConnectionInfo {
|
|
1829
1833
|
/**
|
|
@@ -1866,6 +1870,10 @@ declare namespace CodeArtifact {
|
|
|
1866
1870
|
* The description of the repository.
|
|
1867
1871
|
*/
|
|
1868
1872
|
description?: Description;
|
|
1873
|
+
/**
|
|
1874
|
+
* A timestamp that represents the date and time the repository was created.
|
|
1875
|
+
*/
|
|
1876
|
+
createdTime?: Timestamp;
|
|
1869
1877
|
}
|
|
1870
1878
|
export type RepositorySummaryList = RepositorySummary[];
|
|
1871
1879
|
export interface ResourcePolicy {
|
|
@@ -1953,7 +1961,7 @@ declare namespace CodeArtifact {
|
|
|
1953
1961
|
*/
|
|
1954
1962
|
format: PackageFormat;
|
|
1955
1963
|
/**
|
|
1956
|
-
* The namespace of the package version to be updated. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is
|
|
1964
|
+
* The namespace of the package version to be updated. The package version component that specifies its namespace depends on its type. For example: The namespace of a Maven package version is its groupId. The namespace of an npm package version is its scope. Python and NuGet package versions do not contain a corresponding component, package versions of those formats do not have a namespace. The namespace of a generic package is its namespace.
|
|
1957
1965
|
*/
|
|
1958
1966
|
namespace?: PackageNamespace;
|
|
1959
1967
|
/**
|
|
@@ -132,11 +132,11 @@ declare class GuardDuty extends Service {
|
|
|
132
132
|
*/
|
|
133
133
|
deleteInvitations(callback?: (err: AWSError, data: GuardDuty.Types.DeleteInvitationsResponse) => void): Request<GuardDuty.Types.DeleteInvitationsResponse, AWSError>;
|
|
134
134
|
/**
|
|
135
|
-
* Deletes GuardDuty member accounts (to the current GuardDuty administrator account) specified by the account IDs.
|
|
135
|
+
* Deletes GuardDuty member accounts (to the current GuardDuty administrator account) specified by the account IDs. With autoEnableOrganizationMembers configuration for your organization set to ALL, you'll receive an error if you attempt to disable GuardDuty for a member account in your organization.
|
|
136
136
|
*/
|
|
137
137
|
deleteMembers(params: GuardDuty.Types.DeleteMembersRequest, callback?: (err: AWSError, data: GuardDuty.Types.DeleteMembersResponse) => void): Request<GuardDuty.Types.DeleteMembersResponse, AWSError>;
|
|
138
138
|
/**
|
|
139
|
-
* Deletes GuardDuty member accounts (to the current GuardDuty administrator account) specified by the account IDs.
|
|
139
|
+
* Deletes GuardDuty member accounts (to the current GuardDuty administrator account) specified by the account IDs. With autoEnableOrganizationMembers configuration for your organization set to ALL, you'll receive an error if you attempt to disable GuardDuty for a member account in your organization.
|
|
140
140
|
*/
|
|
141
141
|
deleteMembers(callback?: (err: AWSError, data: GuardDuty.Types.DeleteMembersResponse) => void): Request<GuardDuty.Types.DeleteMembersResponse, AWSError>;
|
|
142
142
|
/**
|
|
@@ -188,11 +188,11 @@ declare class GuardDuty extends Service {
|
|
|
188
188
|
*/
|
|
189
189
|
disableOrganizationAdminAccount(callback?: (err: AWSError, data: GuardDuty.Types.DisableOrganizationAdminAccountResponse) => void): Request<GuardDuty.Types.DisableOrganizationAdminAccountResponse, AWSError>;
|
|
190
190
|
/**
|
|
191
|
-
* Disassociates the current GuardDuty member account from its administrator account.
|
|
191
|
+
* Disassociates the current GuardDuty member account from its administrator account. With autoEnableOrganizationMembers configuration for your organization set to ALL, you'll receive an error if you attempt to disable GuardDuty in a member account.
|
|
192
192
|
*/
|
|
193
193
|
disassociateFromAdministratorAccount(params: GuardDuty.Types.DisassociateFromAdministratorAccountRequest, callback?: (err: AWSError, data: GuardDuty.Types.DisassociateFromAdministratorAccountResponse) => void): Request<GuardDuty.Types.DisassociateFromAdministratorAccountResponse, AWSError>;
|
|
194
194
|
/**
|
|
195
|
-
* Disassociates the current GuardDuty member account from its administrator account.
|
|
195
|
+
* Disassociates the current GuardDuty member account from its administrator account. With autoEnableOrganizationMembers configuration for your organization set to ALL, you'll receive an error if you attempt to disable GuardDuty in a member account.
|
|
196
196
|
*/
|
|
197
197
|
disassociateFromAdministratorAccount(callback?: (err: AWSError, data: GuardDuty.Types.DisassociateFromAdministratorAccountResponse) => void): Request<GuardDuty.Types.DisassociateFromAdministratorAccountResponse, AWSError>;
|
|
198
198
|
/**
|
|
@@ -204,11 +204,11 @@ declare class GuardDuty extends Service {
|
|
|
204
204
|
*/
|
|
205
205
|
disassociateFromMasterAccount(callback?: (err: AWSError, data: GuardDuty.Types.DisassociateFromMasterAccountResponse) => void): Request<GuardDuty.Types.DisassociateFromMasterAccountResponse, AWSError>;
|
|
206
206
|
/**
|
|
207
|
-
* Disassociates GuardDuty member accounts (to the current administrator account) specified by the account IDs.
|
|
207
|
+
* Disassociates GuardDuty member accounts (to the current administrator account) specified by the account IDs. With autoEnableOrganizationMembers configuration for your organization set to ALL, you'll receive an error if you attempt to disassociate a member account before removing them from your Amazon Web Services organization.
|
|
208
208
|
*/
|
|
209
209
|
disassociateMembers(params: GuardDuty.Types.DisassociateMembersRequest, callback?: (err: AWSError, data: GuardDuty.Types.DisassociateMembersResponse) => void): Request<GuardDuty.Types.DisassociateMembersResponse, AWSError>;
|
|
210
210
|
/**
|
|
211
|
-
* Disassociates GuardDuty member accounts (to the current administrator account) specified by the account IDs.
|
|
211
|
+
* Disassociates GuardDuty member accounts (to the current administrator account) specified by the account IDs. With autoEnableOrganizationMembers configuration for your organization set to ALL, you'll receive an error if you attempt to disassociate a member account before removing them from your Amazon Web Services organization.
|
|
212
212
|
*/
|
|
213
213
|
disassociateMembers(callback?: (err: AWSError, data: GuardDuty.Types.DisassociateMembersResponse) => void): Request<GuardDuty.Types.DisassociateMembersResponse, AWSError>;
|
|
214
214
|
/**
|
|
@@ -428,11 +428,11 @@ declare class GuardDuty extends Service {
|
|
|
428
428
|
*/
|
|
429
429
|
startMonitoringMembers(callback?: (err: AWSError, data: GuardDuty.Types.StartMonitoringMembersResponse) => void): Request<GuardDuty.Types.StartMonitoringMembersResponse, AWSError>;
|
|
430
430
|
/**
|
|
431
|
-
* Stops GuardDuty monitoring for the specified member accounts. Use the StartMonitoringMembers operation to restart monitoring for those accounts.
|
|
431
|
+
* Stops GuardDuty monitoring for the specified member accounts. Use the StartMonitoringMembers operation to restart monitoring for those accounts. With autoEnableOrganizationMembers configuration for your organization set to ALL, you'll receive an error if you attempt to stop monitoring the member accounts in your organization.
|
|
432
432
|
*/
|
|
433
433
|
stopMonitoringMembers(params: GuardDuty.Types.StopMonitoringMembersRequest, callback?: (err: AWSError, data: GuardDuty.Types.StopMonitoringMembersResponse) => void): Request<GuardDuty.Types.StopMonitoringMembersResponse, AWSError>;
|
|
434
434
|
/**
|
|
435
|
-
* Stops GuardDuty monitoring for the specified member accounts. Use the StartMonitoringMembers operation to restart monitoring for those accounts.
|
|
435
|
+
* Stops GuardDuty monitoring for the specified member accounts. Use the StartMonitoringMembers operation to restart monitoring for those accounts. With autoEnableOrganizationMembers configuration for your organization set to ALL, you'll receive an error if you attempt to stop monitoring the member accounts in your organization.
|
|
436
436
|
*/
|
|
437
437
|
stopMonitoringMembers(callback?: (err: AWSError, data: GuardDuty.Types.StopMonitoringMembersResponse) => void): Request<GuardDuty.Types.StopMonitoringMembersResponse, AWSError>;
|
|
438
438
|
/**
|
|
@@ -508,11 +508,11 @@ declare class GuardDuty extends Service {
|
|
|
508
508
|
*/
|
|
509
509
|
updateMemberDetectors(callback?: (err: AWSError, data: GuardDuty.Types.UpdateMemberDetectorsResponse) => void): Request<GuardDuty.Types.UpdateMemberDetectorsResponse, AWSError>;
|
|
510
510
|
/**
|
|
511
|
-
*
|
|
511
|
+
* Configures the delegated administrator account with the provided values. You must provide the value for either autoEnableOrganizationMembers or autoEnable. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
512
512
|
*/
|
|
513
513
|
updateOrganizationConfiguration(params: GuardDuty.Types.UpdateOrganizationConfigurationRequest, callback?: (err: AWSError, data: GuardDuty.Types.UpdateOrganizationConfigurationResponse) => void): Request<GuardDuty.Types.UpdateOrganizationConfigurationResponse, AWSError>;
|
|
514
514
|
/**
|
|
515
|
-
*
|
|
515
|
+
* Configures the delegated administrator account with the provided values. You must provide the value for either autoEnableOrganizationMembers or autoEnable. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
516
516
|
*/
|
|
517
517
|
updateOrganizationConfiguration(callback?: (err: AWSError, data: GuardDuty.Types.UpdateOrganizationConfigurationResponse) => void): Request<GuardDuty.Types.UpdateOrganizationConfigurationResponse, AWSError>;
|
|
518
518
|
/**
|
|
@@ -700,6 +700,7 @@ declare namespace GuardDuty {
|
|
|
700
700
|
}
|
|
701
701
|
export interface ArchiveFindingsResponse {
|
|
702
702
|
}
|
|
703
|
+
export type AutoEnableMembers = "NEW"|"ALL"|"NONE"|string;
|
|
703
704
|
export interface AwsApiCallAction {
|
|
704
705
|
/**
|
|
705
706
|
* The Amazon Web Services API name.
|
|
@@ -1325,7 +1326,7 @@ declare namespace GuardDuty {
|
|
|
1325
1326
|
/**
|
|
1326
1327
|
* Indicates whether GuardDuty is automatically enabled for accounts added to the organization.
|
|
1327
1328
|
*/
|
|
1328
|
-
AutoEnable
|
|
1329
|
+
AutoEnable?: Boolean;
|
|
1329
1330
|
/**
|
|
1330
1331
|
* Indicates whether the maximum number of allowed member accounts are already associated with the delegated administrator account for your organization.
|
|
1331
1332
|
*/
|
|
@@ -1342,6 +1343,10 @@ declare namespace GuardDuty {
|
|
|
1342
1343
|
* The pagination parameter to be used on the next list operation to retrieve more items.
|
|
1343
1344
|
*/
|
|
1344
1345
|
NextToken?: String;
|
|
1346
|
+
/**
|
|
1347
|
+
* Indicates the auto-enablement configuration of GuardDuty for the member accounts in the organization. NEW: Indicates that new accounts joining the organization are configured to have GuardDuty enabled automatically. ALL: Indicates that all accounts (new and existing members) in the organization are configured to have GuardDuty enabled automatically. NONE: Indicates that no account in the organization will be configured to have GuardDuty enabled automatically.
|
|
1348
|
+
*/
|
|
1349
|
+
AutoEnableOrganizationMembers?: AutoEnableMembers;
|
|
1345
1350
|
}
|
|
1346
1351
|
export interface DescribePublishingDestinationRequest {
|
|
1347
1352
|
/**
|
|
@@ -3815,13 +3820,13 @@ declare namespace GuardDuty {
|
|
|
3815
3820
|
}
|
|
3816
3821
|
export interface UpdateOrganizationConfigurationRequest {
|
|
3817
3822
|
/**
|
|
3818
|
-
* The ID of the detector
|
|
3823
|
+
* The ID of the detector that configures the delegated administrator.
|
|
3819
3824
|
*/
|
|
3820
3825
|
DetectorId: DetectorId;
|
|
3821
3826
|
/**
|
|
3822
3827
|
* Indicates whether to automatically enable member accounts in the organization.
|
|
3823
3828
|
*/
|
|
3824
|
-
AutoEnable
|
|
3829
|
+
AutoEnable?: Boolean;
|
|
3825
3830
|
/**
|
|
3826
3831
|
* Describes which data sources will be updated.
|
|
3827
3832
|
*/
|
|
@@ -3830,6 +3835,10 @@ declare namespace GuardDuty {
|
|
|
3830
3835
|
* A list of features that will be configured for the organization.
|
|
3831
3836
|
*/
|
|
3832
3837
|
Features?: OrganizationFeaturesConfigurations;
|
|
3838
|
+
/**
|
|
3839
|
+
* Indicates the auto-enablement configuration of GuardDuty for the member accounts in the organization. NEW: Indicates that new accounts joining the organization are configured to have GuardDuty enabled automatically. ALL: Indicates that all accounts (new and existing members) in the organization are configured to have GuardDuty enabled automatically. NONE: Indicates that no account in the organization will be configured to have GuardDuty enabled automatically.
|
|
3840
|
+
*/
|
|
3841
|
+
AutoEnableOrganizationMembers?: AutoEnableMembers;
|
|
3833
3842
|
}
|
|
3834
3843
|
export interface UpdateOrganizationConfigurationResponse {
|
|
3835
3844
|
}
|