@aws-sdk/client-ecr 3.645.0 → 3.650.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/dist-cjs/endpoint/endpointResolver.js +6 -2
- package/dist-cjs/index.js +51 -148
- package/dist-es/commands/BatchCheckLayerAvailabilityCommand.js +1 -3
- package/dist-es/commands/BatchDeleteImageCommand.js +1 -3
- package/dist-es/commands/BatchGetImageCommand.js +1 -3
- package/dist-es/commands/BatchGetRepositoryScanningConfigurationCommand.js +1 -3
- package/dist-es/commands/CompleteLayerUploadCommand.js +1 -3
- package/dist-es/commands/CreatePullThroughCacheRuleCommand.js +1 -3
- package/dist-es/commands/CreateRepositoryCommand.js +1 -3
- package/dist-es/commands/CreateRepositoryCreationTemplateCommand.js +1 -3
- package/dist-es/commands/DeleteLifecyclePolicyCommand.js +1 -3
- package/dist-es/commands/DeletePullThroughCacheRuleCommand.js +1 -3
- package/dist-es/commands/DeleteRegistryPolicyCommand.js +1 -3
- package/dist-es/commands/DeleteRepositoryCommand.js +1 -3
- package/dist-es/commands/DeleteRepositoryCreationTemplateCommand.js +1 -3
- package/dist-es/commands/DeleteRepositoryPolicyCommand.js +1 -3
- package/dist-es/commands/DescribeImageReplicationStatusCommand.js +1 -3
- package/dist-es/commands/DescribeImageScanFindingsCommand.js +1 -3
- package/dist-es/commands/DescribeImagesCommand.js +1 -3
- package/dist-es/commands/DescribePullThroughCacheRulesCommand.js +1 -3
- package/dist-es/commands/DescribeRegistryCommand.js +1 -3
- package/dist-es/commands/DescribeRepositoriesCommand.js +1 -3
- package/dist-es/commands/DescribeRepositoryCreationTemplatesCommand.js +1 -3
- package/dist-es/commands/GetAccountSettingCommand.js +1 -3
- package/dist-es/commands/GetAuthorizationTokenCommand.js +1 -3
- package/dist-es/commands/GetDownloadUrlForLayerCommand.js +1 -3
- package/dist-es/commands/GetLifecyclePolicyCommand.js +1 -3
- package/dist-es/commands/GetLifecyclePolicyPreviewCommand.js +1 -3
- package/dist-es/commands/GetRegistryPolicyCommand.js +1 -3
- package/dist-es/commands/GetRegistryScanningConfigurationCommand.js +1 -3
- package/dist-es/commands/GetRepositoryPolicyCommand.js +1 -3
- package/dist-es/commands/InitiateLayerUploadCommand.js +1 -3
- package/dist-es/commands/ListImagesCommand.js +1 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
- package/dist-es/commands/PutAccountSettingCommand.js +1 -3
- package/dist-es/commands/PutImageCommand.js +1 -3
- package/dist-es/commands/PutImageScanningConfigurationCommand.js +1 -3
- package/dist-es/commands/PutImageTagMutabilityCommand.js +1 -3
- package/dist-es/commands/PutLifecyclePolicyCommand.js +1 -3
- package/dist-es/commands/PutRegistryPolicyCommand.js +1 -3
- package/dist-es/commands/PutRegistryScanningConfigurationCommand.js +1 -3
- package/dist-es/commands/PutReplicationConfigurationCommand.js +1 -3
- package/dist-es/commands/SetRepositoryPolicyCommand.js +1 -3
- package/dist-es/commands/StartImageScanCommand.js +1 -3
- package/dist-es/commands/StartLifecyclePolicyPreviewCommand.js +1 -3
- package/dist-es/commands/TagResourceCommand.js +1 -3
- package/dist-es/commands/UntagResourceCommand.js +1 -3
- package/dist-es/commands/UpdatePullThroughCacheRuleCommand.js +1 -3
- package/dist-es/commands/UpdateRepositoryCreationTemplateCommand.js +1 -3
- package/dist-es/commands/UploadLayerPartCommand.js +1 -3
- package/dist-es/commands/ValidatePullThroughCacheRuleCommand.js +1 -3
- package/dist-es/endpoint/endpointResolver.js +7 -3
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/commands/CreateRepositoryCommand.d.ts +2 -2
- package/dist-types/commands/CreateRepositoryCreationTemplateCommand.d.ts +2 -2
- package/dist-types/commands/DeleteRepositoryCommand.d.ts +1 -1
- package/dist-types/commands/DeleteRepositoryCreationTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRepositoriesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeRepositoryCreationTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRepositoryCreationTemplateCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +16 -13
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +36 -36
|
@@ -4,11 +4,15 @@ exports.defaultEndpointResolver = void 0;
|
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
6
|
const ruleset_1 = require("./ruleset");
|
|
7
|
+
const cache = new util_endpoints_2.EndpointCache({
|
|
8
|
+
size: 50,
|
|
9
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
|
+
});
|
|
7
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
8
|
-
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
9
13
|
endpointParams: endpointParams,
|
|
10
14
|
logger: context.logger,
|
|
11
|
-
});
|
|
15
|
+
}));
|
|
12
16
|
};
|
|
13
17
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
18
|
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -643,7 +643,8 @@ __name(_UnsupportedUpstreamRegistryException, "UnsupportedUpstreamRegistryExcept
|
|
|
643
643
|
var UnsupportedUpstreamRegistryException = _UnsupportedUpstreamRegistryException;
|
|
644
644
|
var EncryptionType = {
|
|
645
645
|
AES256: "AES256",
|
|
646
|
-
KMS: "KMS"
|
|
646
|
+
KMS: "KMS",
|
|
647
|
+
KMS_DSSE: "KMS_DSSE"
|
|
647
648
|
};
|
|
648
649
|
var ImageTagMutability = {
|
|
649
650
|
IMMUTABLE: "IMMUTABLE",
|
|
@@ -2906,9 +2907,7 @@ function sharedHeaders(operation) {
|
|
|
2906
2907
|
__name(sharedHeaders, "sharedHeaders");
|
|
2907
2908
|
|
|
2908
2909
|
// src/commands/BatchCheckLayerAvailabilityCommand.ts
|
|
2909
|
-
var _BatchCheckLayerAvailabilityCommand = class _BatchCheckLayerAvailabilityCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2910
|
-
...commonParams
|
|
2911
|
-
}).m(function(Command, cs, config, o) {
|
|
2910
|
+
var _BatchCheckLayerAvailabilityCommand = class _BatchCheckLayerAvailabilityCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2912
2911
|
return [
|
|
2913
2912
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2914
2913
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2922,9 +2921,7 @@ var BatchCheckLayerAvailabilityCommand = _BatchCheckLayerAvailabilityCommand;
|
|
|
2922
2921
|
|
|
2923
2922
|
|
|
2924
2923
|
|
|
2925
|
-
var _BatchDeleteImageCommand = class _BatchDeleteImageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2926
|
-
...commonParams
|
|
2927
|
-
}).m(function(Command, cs, config, o) {
|
|
2924
|
+
var _BatchDeleteImageCommand = class _BatchDeleteImageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2928
2925
|
return [
|
|
2929
2926
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2930
2927
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2938,9 +2935,7 @@ var BatchDeleteImageCommand = _BatchDeleteImageCommand;
|
|
|
2938
2935
|
|
|
2939
2936
|
|
|
2940
2937
|
|
|
2941
|
-
var _BatchGetImageCommand = class _BatchGetImageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2942
|
-
...commonParams
|
|
2943
|
-
}).m(function(Command, cs, config, o) {
|
|
2938
|
+
var _BatchGetImageCommand = class _BatchGetImageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2944
2939
|
return [
|
|
2945
2940
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2946
2941
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2954,9 +2949,7 @@ var BatchGetImageCommand = _BatchGetImageCommand;
|
|
|
2954
2949
|
|
|
2955
2950
|
|
|
2956
2951
|
|
|
2957
|
-
var _BatchGetRepositoryScanningConfigurationCommand = class _BatchGetRepositoryScanningConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2958
|
-
...commonParams
|
|
2959
|
-
}).m(function(Command, cs, config, o) {
|
|
2952
|
+
var _BatchGetRepositoryScanningConfigurationCommand = class _BatchGetRepositoryScanningConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2960
2953
|
return [
|
|
2961
2954
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2962
2955
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2970,9 +2963,7 @@ var BatchGetRepositoryScanningConfigurationCommand = _BatchGetRepositoryScanning
|
|
|
2970
2963
|
|
|
2971
2964
|
|
|
2972
2965
|
|
|
2973
|
-
var _CompleteLayerUploadCommand = class _CompleteLayerUploadCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2974
|
-
...commonParams
|
|
2975
|
-
}).m(function(Command, cs, config, o) {
|
|
2966
|
+
var _CompleteLayerUploadCommand = class _CompleteLayerUploadCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2976
2967
|
return [
|
|
2977
2968
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2978
2969
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -2986,9 +2977,7 @@ var CompleteLayerUploadCommand = _CompleteLayerUploadCommand;
|
|
|
2986
2977
|
|
|
2987
2978
|
|
|
2988
2979
|
|
|
2989
|
-
var _CreatePullThroughCacheRuleCommand = class _CreatePullThroughCacheRuleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
2990
|
-
...commonParams
|
|
2991
|
-
}).m(function(Command, cs, config, o) {
|
|
2980
|
+
var _CreatePullThroughCacheRuleCommand = class _CreatePullThroughCacheRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2992
2981
|
return [
|
|
2993
2982
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2994
2983
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3002,9 +2991,7 @@ var CreatePullThroughCacheRuleCommand = _CreatePullThroughCacheRuleCommand;
|
|
|
3002
2991
|
|
|
3003
2992
|
|
|
3004
2993
|
|
|
3005
|
-
var _CreateRepositoryCommand = class _CreateRepositoryCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3006
|
-
...commonParams
|
|
3007
|
-
}).m(function(Command, cs, config, o) {
|
|
2994
|
+
var _CreateRepositoryCommand = class _CreateRepositoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3008
2995
|
return [
|
|
3009
2996
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3010
2997
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3018,9 +3005,7 @@ var CreateRepositoryCommand = _CreateRepositoryCommand;
|
|
|
3018
3005
|
|
|
3019
3006
|
|
|
3020
3007
|
|
|
3021
|
-
var _CreateRepositoryCreationTemplateCommand = class _CreateRepositoryCreationTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3022
|
-
...commonParams
|
|
3023
|
-
}).m(function(Command, cs, config, o) {
|
|
3008
|
+
var _CreateRepositoryCreationTemplateCommand = class _CreateRepositoryCreationTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3024
3009
|
return [
|
|
3025
3010
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3026
3011
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3034,9 +3019,7 @@ var CreateRepositoryCreationTemplateCommand = _CreateRepositoryCreationTemplateC
|
|
|
3034
3019
|
|
|
3035
3020
|
|
|
3036
3021
|
|
|
3037
|
-
var _DeleteLifecyclePolicyCommand = class _DeleteLifecyclePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3038
|
-
...commonParams
|
|
3039
|
-
}).m(function(Command, cs, config, o) {
|
|
3022
|
+
var _DeleteLifecyclePolicyCommand = class _DeleteLifecyclePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3040
3023
|
return [
|
|
3041
3024
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3042
3025
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3050,9 +3033,7 @@ var DeleteLifecyclePolicyCommand = _DeleteLifecyclePolicyCommand;
|
|
|
3050
3033
|
|
|
3051
3034
|
|
|
3052
3035
|
|
|
3053
|
-
var _DeletePullThroughCacheRuleCommand = class _DeletePullThroughCacheRuleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3054
|
-
...commonParams
|
|
3055
|
-
}).m(function(Command, cs, config, o) {
|
|
3036
|
+
var _DeletePullThroughCacheRuleCommand = class _DeletePullThroughCacheRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3056
3037
|
return [
|
|
3057
3038
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3058
3039
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3066,9 +3047,7 @@ var DeletePullThroughCacheRuleCommand = _DeletePullThroughCacheRuleCommand;
|
|
|
3066
3047
|
|
|
3067
3048
|
|
|
3068
3049
|
|
|
3069
|
-
var _DeleteRegistryPolicyCommand = class _DeleteRegistryPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3070
|
-
...commonParams
|
|
3071
|
-
}).m(function(Command, cs, config, o) {
|
|
3050
|
+
var _DeleteRegistryPolicyCommand = class _DeleteRegistryPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3072
3051
|
return [
|
|
3073
3052
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3074
3053
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3082,9 +3061,7 @@ var DeleteRegistryPolicyCommand = _DeleteRegistryPolicyCommand;
|
|
|
3082
3061
|
|
|
3083
3062
|
|
|
3084
3063
|
|
|
3085
|
-
var _DeleteRepositoryCommand = class _DeleteRepositoryCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3086
|
-
...commonParams
|
|
3087
|
-
}).m(function(Command, cs, config, o) {
|
|
3064
|
+
var _DeleteRepositoryCommand = class _DeleteRepositoryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3088
3065
|
return [
|
|
3089
3066
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3090
3067
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3098,9 +3075,7 @@ var DeleteRepositoryCommand = _DeleteRepositoryCommand;
|
|
|
3098
3075
|
|
|
3099
3076
|
|
|
3100
3077
|
|
|
3101
|
-
var _DeleteRepositoryCreationTemplateCommand = class _DeleteRepositoryCreationTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3102
|
-
...commonParams
|
|
3103
|
-
}).m(function(Command, cs, config, o) {
|
|
3078
|
+
var _DeleteRepositoryCreationTemplateCommand = class _DeleteRepositoryCreationTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3104
3079
|
return [
|
|
3105
3080
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3106
3081
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3114,9 +3089,7 @@ var DeleteRepositoryCreationTemplateCommand = _DeleteRepositoryCreationTemplateC
|
|
|
3114
3089
|
|
|
3115
3090
|
|
|
3116
3091
|
|
|
3117
|
-
var _DeleteRepositoryPolicyCommand = class _DeleteRepositoryPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3118
|
-
...commonParams
|
|
3119
|
-
}).m(function(Command, cs, config, o) {
|
|
3092
|
+
var _DeleteRepositoryPolicyCommand = class _DeleteRepositoryPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3120
3093
|
return [
|
|
3121
3094
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3122
3095
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3130,9 +3103,7 @@ var DeleteRepositoryPolicyCommand = _DeleteRepositoryPolicyCommand;
|
|
|
3130
3103
|
|
|
3131
3104
|
|
|
3132
3105
|
|
|
3133
|
-
var _DescribeImageReplicationStatusCommand = class _DescribeImageReplicationStatusCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3134
|
-
...commonParams
|
|
3135
|
-
}).m(function(Command, cs, config, o) {
|
|
3106
|
+
var _DescribeImageReplicationStatusCommand = class _DescribeImageReplicationStatusCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3136
3107
|
return [
|
|
3137
3108
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3138
3109
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3146,9 +3117,7 @@ var DescribeImageReplicationStatusCommand = _DescribeImageReplicationStatusComma
|
|
|
3146
3117
|
|
|
3147
3118
|
|
|
3148
3119
|
|
|
3149
|
-
var _DescribeImageScanFindingsCommand = class _DescribeImageScanFindingsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3150
|
-
...commonParams
|
|
3151
|
-
}).m(function(Command, cs, config, o) {
|
|
3120
|
+
var _DescribeImageScanFindingsCommand = class _DescribeImageScanFindingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3152
3121
|
return [
|
|
3153
3122
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3154
3123
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3162,9 +3131,7 @@ var DescribeImageScanFindingsCommand = _DescribeImageScanFindingsCommand;
|
|
|
3162
3131
|
|
|
3163
3132
|
|
|
3164
3133
|
|
|
3165
|
-
var _DescribeImagesCommand = class _DescribeImagesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3166
|
-
...commonParams
|
|
3167
|
-
}).m(function(Command, cs, config, o) {
|
|
3134
|
+
var _DescribeImagesCommand = class _DescribeImagesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3168
3135
|
return [
|
|
3169
3136
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3170
3137
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3178,9 +3145,7 @@ var DescribeImagesCommand = _DescribeImagesCommand;
|
|
|
3178
3145
|
|
|
3179
3146
|
|
|
3180
3147
|
|
|
3181
|
-
var _DescribePullThroughCacheRulesCommand = class _DescribePullThroughCacheRulesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3182
|
-
...commonParams
|
|
3183
|
-
}).m(function(Command, cs, config, o) {
|
|
3148
|
+
var _DescribePullThroughCacheRulesCommand = class _DescribePullThroughCacheRulesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3184
3149
|
return [
|
|
3185
3150
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3186
3151
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3194,9 +3159,7 @@ var DescribePullThroughCacheRulesCommand = _DescribePullThroughCacheRulesCommand
|
|
|
3194
3159
|
|
|
3195
3160
|
|
|
3196
3161
|
|
|
3197
|
-
var _DescribeRegistryCommand = class _DescribeRegistryCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3198
|
-
...commonParams
|
|
3199
|
-
}).m(function(Command, cs, config, o) {
|
|
3162
|
+
var _DescribeRegistryCommand = class _DescribeRegistryCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3200
3163
|
return [
|
|
3201
3164
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3202
3165
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3210,9 +3173,7 @@ var DescribeRegistryCommand = _DescribeRegistryCommand;
|
|
|
3210
3173
|
|
|
3211
3174
|
|
|
3212
3175
|
|
|
3213
|
-
var _DescribeRepositoriesCommand = class _DescribeRepositoriesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3214
|
-
...commonParams
|
|
3215
|
-
}).m(function(Command, cs, config, o) {
|
|
3176
|
+
var _DescribeRepositoriesCommand = class _DescribeRepositoriesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3216
3177
|
return [
|
|
3217
3178
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3218
3179
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3226,9 +3187,7 @@ var DescribeRepositoriesCommand = _DescribeRepositoriesCommand;
|
|
|
3226
3187
|
|
|
3227
3188
|
|
|
3228
3189
|
|
|
3229
|
-
var _DescribeRepositoryCreationTemplatesCommand = class _DescribeRepositoryCreationTemplatesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3230
|
-
...commonParams
|
|
3231
|
-
}).m(function(Command, cs, config, o) {
|
|
3190
|
+
var _DescribeRepositoryCreationTemplatesCommand = class _DescribeRepositoryCreationTemplatesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3232
3191
|
return [
|
|
3233
3192
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3234
3193
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3242,9 +3201,7 @@ var DescribeRepositoryCreationTemplatesCommand = _DescribeRepositoryCreationTemp
|
|
|
3242
3201
|
|
|
3243
3202
|
|
|
3244
3203
|
|
|
3245
|
-
var _GetAccountSettingCommand = class _GetAccountSettingCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3246
|
-
...commonParams
|
|
3247
|
-
}).m(function(Command, cs, config, o) {
|
|
3204
|
+
var _GetAccountSettingCommand = class _GetAccountSettingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3248
3205
|
return [
|
|
3249
3206
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3250
3207
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3258,9 +3215,7 @@ var GetAccountSettingCommand = _GetAccountSettingCommand;
|
|
|
3258
3215
|
|
|
3259
3216
|
|
|
3260
3217
|
|
|
3261
|
-
var _GetAuthorizationTokenCommand = class _GetAuthorizationTokenCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3262
|
-
...commonParams
|
|
3263
|
-
}).m(function(Command, cs, config, o) {
|
|
3218
|
+
var _GetAuthorizationTokenCommand = class _GetAuthorizationTokenCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3264
3219
|
return [
|
|
3265
3220
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3266
3221
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3274,9 +3229,7 @@ var GetAuthorizationTokenCommand = _GetAuthorizationTokenCommand;
|
|
|
3274
3229
|
|
|
3275
3230
|
|
|
3276
3231
|
|
|
3277
|
-
var _GetDownloadUrlForLayerCommand = class _GetDownloadUrlForLayerCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3278
|
-
...commonParams
|
|
3279
|
-
}).m(function(Command, cs, config, o) {
|
|
3232
|
+
var _GetDownloadUrlForLayerCommand = class _GetDownloadUrlForLayerCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3280
3233
|
return [
|
|
3281
3234
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3282
3235
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3290,9 +3243,7 @@ var GetDownloadUrlForLayerCommand = _GetDownloadUrlForLayerCommand;
|
|
|
3290
3243
|
|
|
3291
3244
|
|
|
3292
3245
|
|
|
3293
|
-
var _GetLifecyclePolicyCommand = class _GetLifecyclePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3294
|
-
...commonParams
|
|
3295
|
-
}).m(function(Command, cs, config, o) {
|
|
3246
|
+
var _GetLifecyclePolicyCommand = class _GetLifecyclePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3296
3247
|
return [
|
|
3297
3248
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3298
3249
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3306,9 +3257,7 @@ var GetLifecyclePolicyCommand = _GetLifecyclePolicyCommand;
|
|
|
3306
3257
|
|
|
3307
3258
|
|
|
3308
3259
|
|
|
3309
|
-
var _GetLifecyclePolicyPreviewCommand = class _GetLifecyclePolicyPreviewCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3310
|
-
...commonParams
|
|
3311
|
-
}).m(function(Command, cs, config, o) {
|
|
3260
|
+
var _GetLifecyclePolicyPreviewCommand = class _GetLifecyclePolicyPreviewCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3312
3261
|
return [
|
|
3313
3262
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3314
3263
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3322,9 +3271,7 @@ var GetLifecyclePolicyPreviewCommand = _GetLifecyclePolicyPreviewCommand;
|
|
|
3322
3271
|
|
|
3323
3272
|
|
|
3324
3273
|
|
|
3325
|
-
var _GetRegistryPolicyCommand = class _GetRegistryPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3326
|
-
...commonParams
|
|
3327
|
-
}).m(function(Command, cs, config, o) {
|
|
3274
|
+
var _GetRegistryPolicyCommand = class _GetRegistryPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3328
3275
|
return [
|
|
3329
3276
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3330
3277
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3338,9 +3285,7 @@ var GetRegistryPolicyCommand = _GetRegistryPolicyCommand;
|
|
|
3338
3285
|
|
|
3339
3286
|
|
|
3340
3287
|
|
|
3341
|
-
var _GetRegistryScanningConfigurationCommand = class _GetRegistryScanningConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3342
|
-
...commonParams
|
|
3343
|
-
}).m(function(Command, cs, config, o) {
|
|
3288
|
+
var _GetRegistryScanningConfigurationCommand = class _GetRegistryScanningConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3344
3289
|
return [
|
|
3345
3290
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3346
3291
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3354,9 +3299,7 @@ var GetRegistryScanningConfigurationCommand = _GetRegistryScanningConfigurationC
|
|
|
3354
3299
|
|
|
3355
3300
|
|
|
3356
3301
|
|
|
3357
|
-
var _GetRepositoryPolicyCommand = class _GetRepositoryPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3358
|
-
...commonParams
|
|
3359
|
-
}).m(function(Command, cs, config, o) {
|
|
3302
|
+
var _GetRepositoryPolicyCommand = class _GetRepositoryPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3360
3303
|
return [
|
|
3361
3304
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3362
3305
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3370,9 +3313,7 @@ var GetRepositoryPolicyCommand = _GetRepositoryPolicyCommand;
|
|
|
3370
3313
|
|
|
3371
3314
|
|
|
3372
3315
|
|
|
3373
|
-
var _InitiateLayerUploadCommand = class _InitiateLayerUploadCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3374
|
-
...commonParams
|
|
3375
|
-
}).m(function(Command, cs, config, o) {
|
|
3316
|
+
var _InitiateLayerUploadCommand = class _InitiateLayerUploadCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3376
3317
|
return [
|
|
3377
3318
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3378
3319
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3386,9 +3327,7 @@ var InitiateLayerUploadCommand = _InitiateLayerUploadCommand;
|
|
|
3386
3327
|
|
|
3387
3328
|
|
|
3388
3329
|
|
|
3389
|
-
var _ListImagesCommand = class _ListImagesCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3390
|
-
...commonParams
|
|
3391
|
-
}).m(function(Command, cs, config, o) {
|
|
3330
|
+
var _ListImagesCommand = class _ListImagesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3392
3331
|
return [
|
|
3393
3332
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3394
3333
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3402,9 +3341,7 @@ var ListImagesCommand = _ListImagesCommand;
|
|
|
3402
3341
|
|
|
3403
3342
|
|
|
3404
3343
|
|
|
3405
|
-
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3406
|
-
...commonParams
|
|
3407
|
-
}).m(function(Command, cs, config, o) {
|
|
3344
|
+
var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3408
3345
|
return [
|
|
3409
3346
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3410
3347
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3418,9 +3355,7 @@ var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
|
3418
3355
|
|
|
3419
3356
|
|
|
3420
3357
|
|
|
3421
|
-
var _PutAccountSettingCommand = class _PutAccountSettingCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3422
|
-
...commonParams
|
|
3423
|
-
}).m(function(Command, cs, config, o) {
|
|
3358
|
+
var _PutAccountSettingCommand = class _PutAccountSettingCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3424
3359
|
return [
|
|
3425
3360
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3426
3361
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3434,9 +3369,7 @@ var PutAccountSettingCommand = _PutAccountSettingCommand;
|
|
|
3434
3369
|
|
|
3435
3370
|
|
|
3436
3371
|
|
|
3437
|
-
var _PutImageCommand = class _PutImageCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3438
|
-
...commonParams
|
|
3439
|
-
}).m(function(Command, cs, config, o) {
|
|
3372
|
+
var _PutImageCommand = class _PutImageCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3440
3373
|
return [
|
|
3441
3374
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3442
3375
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3450,9 +3383,7 @@ var PutImageCommand = _PutImageCommand;
|
|
|
3450
3383
|
|
|
3451
3384
|
|
|
3452
3385
|
|
|
3453
|
-
var _PutImageScanningConfigurationCommand = class _PutImageScanningConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3454
|
-
...commonParams
|
|
3455
|
-
}).m(function(Command, cs, config, o) {
|
|
3386
|
+
var _PutImageScanningConfigurationCommand = class _PutImageScanningConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3456
3387
|
return [
|
|
3457
3388
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3458
3389
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3466,9 +3397,7 @@ var PutImageScanningConfigurationCommand = _PutImageScanningConfigurationCommand
|
|
|
3466
3397
|
|
|
3467
3398
|
|
|
3468
3399
|
|
|
3469
|
-
var _PutImageTagMutabilityCommand = class _PutImageTagMutabilityCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3470
|
-
...commonParams
|
|
3471
|
-
}).m(function(Command, cs, config, o) {
|
|
3400
|
+
var _PutImageTagMutabilityCommand = class _PutImageTagMutabilityCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3472
3401
|
return [
|
|
3473
3402
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3474
3403
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3482,9 +3411,7 @@ var PutImageTagMutabilityCommand = _PutImageTagMutabilityCommand;
|
|
|
3482
3411
|
|
|
3483
3412
|
|
|
3484
3413
|
|
|
3485
|
-
var _PutLifecyclePolicyCommand = class _PutLifecyclePolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3486
|
-
...commonParams
|
|
3487
|
-
}).m(function(Command, cs, config, o) {
|
|
3414
|
+
var _PutLifecyclePolicyCommand = class _PutLifecyclePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3488
3415
|
return [
|
|
3489
3416
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3490
3417
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3498,9 +3425,7 @@ var PutLifecyclePolicyCommand = _PutLifecyclePolicyCommand;
|
|
|
3498
3425
|
|
|
3499
3426
|
|
|
3500
3427
|
|
|
3501
|
-
var _PutRegistryPolicyCommand = class _PutRegistryPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3502
|
-
...commonParams
|
|
3503
|
-
}).m(function(Command, cs, config, o) {
|
|
3428
|
+
var _PutRegistryPolicyCommand = class _PutRegistryPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3504
3429
|
return [
|
|
3505
3430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3506
3431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3514,9 +3439,7 @@ var PutRegistryPolicyCommand = _PutRegistryPolicyCommand;
|
|
|
3514
3439
|
|
|
3515
3440
|
|
|
3516
3441
|
|
|
3517
|
-
var _PutRegistryScanningConfigurationCommand = class _PutRegistryScanningConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3518
|
-
...commonParams
|
|
3519
|
-
}).m(function(Command, cs, config, o) {
|
|
3442
|
+
var _PutRegistryScanningConfigurationCommand = class _PutRegistryScanningConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3520
3443
|
return [
|
|
3521
3444
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3522
3445
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3530,9 +3453,7 @@ var PutRegistryScanningConfigurationCommand = _PutRegistryScanningConfigurationC
|
|
|
3530
3453
|
|
|
3531
3454
|
|
|
3532
3455
|
|
|
3533
|
-
var _PutReplicationConfigurationCommand = class _PutReplicationConfigurationCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3534
|
-
...commonParams
|
|
3535
|
-
}).m(function(Command, cs, config, o) {
|
|
3456
|
+
var _PutReplicationConfigurationCommand = class _PutReplicationConfigurationCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3536
3457
|
return [
|
|
3537
3458
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3538
3459
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3546,9 +3467,7 @@ var PutReplicationConfigurationCommand = _PutReplicationConfigurationCommand;
|
|
|
3546
3467
|
|
|
3547
3468
|
|
|
3548
3469
|
|
|
3549
|
-
var _SetRepositoryPolicyCommand = class _SetRepositoryPolicyCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3550
|
-
...commonParams
|
|
3551
|
-
}).m(function(Command, cs, config, o) {
|
|
3470
|
+
var _SetRepositoryPolicyCommand = class _SetRepositoryPolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3552
3471
|
return [
|
|
3553
3472
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3554
3473
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3562,9 +3481,7 @@ var SetRepositoryPolicyCommand = _SetRepositoryPolicyCommand;
|
|
|
3562
3481
|
|
|
3563
3482
|
|
|
3564
3483
|
|
|
3565
|
-
var _StartImageScanCommand = class _StartImageScanCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3566
|
-
...commonParams
|
|
3567
|
-
}).m(function(Command, cs, config, o) {
|
|
3484
|
+
var _StartImageScanCommand = class _StartImageScanCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3568
3485
|
return [
|
|
3569
3486
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3570
3487
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3578,9 +3495,7 @@ var StartImageScanCommand = _StartImageScanCommand;
|
|
|
3578
3495
|
|
|
3579
3496
|
|
|
3580
3497
|
|
|
3581
|
-
var _StartLifecyclePolicyPreviewCommand = class _StartLifecyclePolicyPreviewCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3582
|
-
...commonParams
|
|
3583
|
-
}).m(function(Command, cs, config, o) {
|
|
3498
|
+
var _StartLifecyclePolicyPreviewCommand = class _StartLifecyclePolicyPreviewCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3584
3499
|
return [
|
|
3585
3500
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3586
3501
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3594,9 +3509,7 @@ var StartLifecyclePolicyPreviewCommand = _StartLifecyclePolicyPreviewCommand;
|
|
|
3594
3509
|
|
|
3595
3510
|
|
|
3596
3511
|
|
|
3597
|
-
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3598
|
-
...commonParams
|
|
3599
|
-
}).m(function(Command, cs, config, o) {
|
|
3512
|
+
var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3600
3513
|
return [
|
|
3601
3514
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3602
3515
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3610,9 +3523,7 @@ var TagResourceCommand = _TagResourceCommand;
|
|
|
3610
3523
|
|
|
3611
3524
|
|
|
3612
3525
|
|
|
3613
|
-
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3614
|
-
...commonParams
|
|
3615
|
-
}).m(function(Command, cs, config, o) {
|
|
3526
|
+
var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3616
3527
|
return [
|
|
3617
3528
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3618
3529
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3626,9 +3537,7 @@ var UntagResourceCommand = _UntagResourceCommand;
|
|
|
3626
3537
|
|
|
3627
3538
|
|
|
3628
3539
|
|
|
3629
|
-
var _UpdatePullThroughCacheRuleCommand = class _UpdatePullThroughCacheRuleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3630
|
-
...commonParams
|
|
3631
|
-
}).m(function(Command, cs, config, o) {
|
|
3540
|
+
var _UpdatePullThroughCacheRuleCommand = class _UpdatePullThroughCacheRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3632
3541
|
return [
|
|
3633
3542
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3634
3543
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3642,9 +3551,7 @@ var UpdatePullThroughCacheRuleCommand = _UpdatePullThroughCacheRuleCommand;
|
|
|
3642
3551
|
|
|
3643
3552
|
|
|
3644
3553
|
|
|
3645
|
-
var _UpdateRepositoryCreationTemplateCommand = class _UpdateRepositoryCreationTemplateCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3646
|
-
...commonParams
|
|
3647
|
-
}).m(function(Command, cs, config, o) {
|
|
3554
|
+
var _UpdateRepositoryCreationTemplateCommand = class _UpdateRepositoryCreationTemplateCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3648
3555
|
return [
|
|
3649
3556
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3650
3557
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3658,9 +3565,7 @@ var UpdateRepositoryCreationTemplateCommand = _UpdateRepositoryCreationTemplateC
|
|
|
3658
3565
|
|
|
3659
3566
|
|
|
3660
3567
|
|
|
3661
|
-
var _UploadLayerPartCommand = class _UploadLayerPartCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3662
|
-
...commonParams
|
|
3663
|
-
}).m(function(Command, cs, config, o) {
|
|
3568
|
+
var _UploadLayerPartCommand = class _UploadLayerPartCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3664
3569
|
return [
|
|
3665
3570
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3666
3571
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -3674,9 +3579,7 @@ var UploadLayerPartCommand = _UploadLayerPartCommand;
|
|
|
3674
3579
|
|
|
3675
3580
|
|
|
3676
3581
|
|
|
3677
|
-
var _ValidatePullThroughCacheRuleCommand = class _ValidatePullThroughCacheRuleCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
3678
|
-
...commonParams
|
|
3679
|
-
}).m(function(Command, cs, config, o) {
|
|
3582
|
+
var _ValidatePullThroughCacheRuleCommand = class _ValidatePullThroughCacheRuleCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3680
3583
|
return [
|
|
3681
3584
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3682
3585
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
@@ -6,9 +6,7 @@ import { de_BatchCheckLayerAvailabilityCommand, se_BatchCheckLayerAvailabilityCo
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class BatchCheckLayerAvailabilityCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_BatchDeleteImageCommand, se_BatchDeleteImageCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class BatchDeleteImageCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_BatchGetImageCommand, se_BatchGetImageCommand } from "../protocols/A
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class BatchGetImageCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_BatchGetRepositoryScanningConfigurationCommand, se_BatchGetRepositor
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class BatchGetRepositoryScanningConfigurationCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CompleteLayerUploadCommand, se_CompleteLayerUploadCommand } from "..
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CompleteLayerUploadCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreatePullThroughCacheRuleCommand, se_CreatePullThroughCacheRuleComm
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreatePullThroughCacheRuleCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateRepositoryCommand, se_CreateRepositoryCommand } from "../proto
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateRepositoryCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
@@ -6,9 +6,7 @@ import { de_CreateRepositoryCreationTemplateCommand, se_CreateRepositoryCreation
|
|
|
6
6
|
export { $Command };
|
|
7
7
|
export class CreateRepositoryCreationTemplateCommand extends $Command
|
|
8
8
|
.classBuilder()
|
|
9
|
-
.ep(
|
|
10
|
-
...commonParams,
|
|
11
|
-
})
|
|
9
|
+
.ep(commonParams)
|
|
12
10
|
.m(function (Command, cs, config, o) {
|
|
13
11
|
return [
|
|
14
12
|
getSerdePlugin(config, this.serialize, this.deserialize),
|