@aws-sdk/client-ecr-public 3.927.0 → 3.928.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/index.js +1001 -1142
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/ECRPUBLICClient.js +2 -0
- package/dist-es/commands/BatchCheckLayerAvailabilityCommand.js +3 -9
- package/dist-es/commands/BatchDeleteImageCommand.js +3 -9
- package/dist-es/commands/CompleteLayerUploadCommand.js +3 -9
- package/dist-es/commands/CreateRepositoryCommand.js +3 -9
- package/dist-es/commands/DeleteRepositoryCommand.js +3 -9
- package/dist-es/commands/DeleteRepositoryPolicyCommand.js +3 -9
- package/dist-es/commands/DescribeImageTagsCommand.js +3 -9
- package/dist-es/commands/DescribeImagesCommand.js +3 -9
- package/dist-es/commands/DescribeRegistriesCommand.js +3 -9
- package/dist-es/commands/DescribeRepositoriesCommand.js +3 -9
- package/dist-es/commands/GetAuthorizationTokenCommand.js +3 -9
- package/dist-es/commands/GetRegistryCatalogDataCommand.js +3 -9
- package/dist-es/commands/GetRepositoryCatalogDataCommand.js +3 -9
- package/dist-es/commands/GetRepositoryPolicyCommand.js +3 -9
- package/dist-es/commands/InitiateLayerUploadCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/PutImageCommand.js +3 -9
- package/dist-es/commands/PutRegistryCatalogDataCommand.js +3 -9
- package/dist-es/commands/PutRepositoryCatalogDataCommand.js +3 -9
- package/dist-es/commands/SetRepositoryPolicyCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UploadLayerPartCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +889 -0
- package/dist-types/ECRPUBLICClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +2 -5
- package/dist-types/schemas/schemas_0.d.ts +129 -0
- package/dist-types/ts3.4/ECRPUBLICClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -913
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -209
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -281
|
@@ -1,209 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { BatchCheckLayerAvailabilityCommandInput, BatchCheckLayerAvailabilityCommandOutput } from "../commands/BatchCheckLayerAvailabilityCommand";
|
|
4
|
-
import { BatchDeleteImageCommandInput, BatchDeleteImageCommandOutput } from "../commands/BatchDeleteImageCommand";
|
|
5
|
-
import { CompleteLayerUploadCommandInput, CompleteLayerUploadCommandOutput } from "../commands/CompleteLayerUploadCommand";
|
|
6
|
-
import { CreateRepositoryCommandInput, CreateRepositoryCommandOutput } from "../commands/CreateRepositoryCommand";
|
|
7
|
-
import { DeleteRepositoryCommandInput, DeleteRepositoryCommandOutput } from "../commands/DeleteRepositoryCommand";
|
|
8
|
-
import { DeleteRepositoryPolicyCommandInput, DeleteRepositoryPolicyCommandOutput } from "../commands/DeleteRepositoryPolicyCommand";
|
|
9
|
-
import { DescribeImagesCommandInput, DescribeImagesCommandOutput } from "../commands/DescribeImagesCommand";
|
|
10
|
-
import { DescribeImageTagsCommandInput, DescribeImageTagsCommandOutput } from "../commands/DescribeImageTagsCommand";
|
|
11
|
-
import { DescribeRegistriesCommandInput, DescribeRegistriesCommandOutput } from "../commands/DescribeRegistriesCommand";
|
|
12
|
-
import { DescribeRepositoriesCommandInput, DescribeRepositoriesCommandOutput } from "../commands/DescribeRepositoriesCommand";
|
|
13
|
-
import { GetAuthorizationTokenCommandInput, GetAuthorizationTokenCommandOutput } from "../commands/GetAuthorizationTokenCommand";
|
|
14
|
-
import { GetRegistryCatalogDataCommandInput, GetRegistryCatalogDataCommandOutput } from "../commands/GetRegistryCatalogDataCommand";
|
|
15
|
-
import { GetRepositoryCatalogDataCommandInput, GetRepositoryCatalogDataCommandOutput } from "../commands/GetRepositoryCatalogDataCommand";
|
|
16
|
-
import { GetRepositoryPolicyCommandInput, GetRepositoryPolicyCommandOutput } from "../commands/GetRepositoryPolicyCommand";
|
|
17
|
-
import { InitiateLayerUploadCommandInput, InitiateLayerUploadCommandOutput } from "../commands/InitiateLayerUploadCommand";
|
|
18
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
19
|
-
import { PutImageCommandInput, PutImageCommandOutput } from "../commands/PutImageCommand";
|
|
20
|
-
import { PutRegistryCatalogDataCommandInput, PutRegistryCatalogDataCommandOutput } from "../commands/PutRegistryCatalogDataCommand";
|
|
21
|
-
import { PutRepositoryCatalogDataCommandInput, PutRepositoryCatalogDataCommandOutput } from "../commands/PutRepositoryCatalogDataCommand";
|
|
22
|
-
import { SetRepositoryPolicyCommandInput, SetRepositoryPolicyCommandOutput } from "../commands/SetRepositoryPolicyCommand";
|
|
23
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
24
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
25
|
-
import { UploadLayerPartCommandInput, UploadLayerPartCommandOutput } from "../commands/UploadLayerPartCommand";
|
|
26
|
-
/**
|
|
27
|
-
* serializeAws_json1_1BatchCheckLayerAvailabilityCommand
|
|
28
|
-
*/
|
|
29
|
-
export declare const se_BatchCheckLayerAvailabilityCommand: (input: BatchCheckLayerAvailabilityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
-
/**
|
|
31
|
-
* serializeAws_json1_1BatchDeleteImageCommand
|
|
32
|
-
*/
|
|
33
|
-
export declare const se_BatchDeleteImageCommand: (input: BatchDeleteImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
-
/**
|
|
35
|
-
* serializeAws_json1_1CompleteLayerUploadCommand
|
|
36
|
-
*/
|
|
37
|
-
export declare const se_CompleteLayerUploadCommand: (input: CompleteLayerUploadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
-
/**
|
|
39
|
-
* serializeAws_json1_1CreateRepositoryCommand
|
|
40
|
-
*/
|
|
41
|
-
export declare const se_CreateRepositoryCommand: (input: CreateRepositoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
-
/**
|
|
43
|
-
* serializeAws_json1_1DeleteRepositoryCommand
|
|
44
|
-
*/
|
|
45
|
-
export declare const se_DeleteRepositoryCommand: (input: DeleteRepositoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
-
/**
|
|
47
|
-
* serializeAws_json1_1DeleteRepositoryPolicyCommand
|
|
48
|
-
*/
|
|
49
|
-
export declare const se_DeleteRepositoryPolicyCommand: (input: DeleteRepositoryPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
-
/**
|
|
51
|
-
* serializeAws_json1_1DescribeImagesCommand
|
|
52
|
-
*/
|
|
53
|
-
export declare const se_DescribeImagesCommand: (input: DescribeImagesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
-
/**
|
|
55
|
-
* serializeAws_json1_1DescribeImageTagsCommand
|
|
56
|
-
*/
|
|
57
|
-
export declare const se_DescribeImageTagsCommand: (input: DescribeImageTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
-
/**
|
|
59
|
-
* serializeAws_json1_1DescribeRegistriesCommand
|
|
60
|
-
*/
|
|
61
|
-
export declare const se_DescribeRegistriesCommand: (input: DescribeRegistriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
-
/**
|
|
63
|
-
* serializeAws_json1_1DescribeRepositoriesCommand
|
|
64
|
-
*/
|
|
65
|
-
export declare const se_DescribeRepositoriesCommand: (input: DescribeRepositoriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
-
/**
|
|
67
|
-
* serializeAws_json1_1GetAuthorizationTokenCommand
|
|
68
|
-
*/
|
|
69
|
-
export declare const se_GetAuthorizationTokenCommand: (input: GetAuthorizationTokenCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
-
/**
|
|
71
|
-
* serializeAws_json1_1GetRegistryCatalogDataCommand
|
|
72
|
-
*/
|
|
73
|
-
export declare const se_GetRegistryCatalogDataCommand: (input: GetRegistryCatalogDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
-
/**
|
|
75
|
-
* serializeAws_json1_1GetRepositoryCatalogDataCommand
|
|
76
|
-
*/
|
|
77
|
-
export declare const se_GetRepositoryCatalogDataCommand: (input: GetRepositoryCatalogDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
-
/**
|
|
79
|
-
* serializeAws_json1_1GetRepositoryPolicyCommand
|
|
80
|
-
*/
|
|
81
|
-
export declare const se_GetRepositoryPolicyCommand: (input: GetRepositoryPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
-
/**
|
|
83
|
-
* serializeAws_json1_1InitiateLayerUploadCommand
|
|
84
|
-
*/
|
|
85
|
-
export declare const se_InitiateLayerUploadCommand: (input: InitiateLayerUploadCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
-
/**
|
|
87
|
-
* serializeAws_json1_1ListTagsForResourceCommand
|
|
88
|
-
*/
|
|
89
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
-
/**
|
|
91
|
-
* serializeAws_json1_1PutImageCommand
|
|
92
|
-
*/
|
|
93
|
-
export declare const se_PutImageCommand: (input: PutImageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
-
/**
|
|
95
|
-
* serializeAws_json1_1PutRegistryCatalogDataCommand
|
|
96
|
-
*/
|
|
97
|
-
export declare const se_PutRegistryCatalogDataCommand: (input: PutRegistryCatalogDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
-
/**
|
|
99
|
-
* serializeAws_json1_1PutRepositoryCatalogDataCommand
|
|
100
|
-
*/
|
|
101
|
-
export declare const se_PutRepositoryCatalogDataCommand: (input: PutRepositoryCatalogDataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
102
|
-
/**
|
|
103
|
-
* serializeAws_json1_1SetRepositoryPolicyCommand
|
|
104
|
-
*/
|
|
105
|
-
export declare const se_SetRepositoryPolicyCommand: (input: SetRepositoryPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
106
|
-
/**
|
|
107
|
-
* serializeAws_json1_1TagResourceCommand
|
|
108
|
-
*/
|
|
109
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
110
|
-
/**
|
|
111
|
-
* serializeAws_json1_1UntagResourceCommand
|
|
112
|
-
*/
|
|
113
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
114
|
-
/**
|
|
115
|
-
* serializeAws_json1_1UploadLayerPartCommand
|
|
116
|
-
*/
|
|
117
|
-
export declare const se_UploadLayerPartCommand: (input: UploadLayerPartCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
118
|
-
/**
|
|
119
|
-
* deserializeAws_json1_1BatchCheckLayerAvailabilityCommand
|
|
120
|
-
*/
|
|
121
|
-
export declare const de_BatchCheckLayerAvailabilityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchCheckLayerAvailabilityCommandOutput>;
|
|
122
|
-
/**
|
|
123
|
-
* deserializeAws_json1_1BatchDeleteImageCommand
|
|
124
|
-
*/
|
|
125
|
-
export declare const de_BatchDeleteImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchDeleteImageCommandOutput>;
|
|
126
|
-
/**
|
|
127
|
-
* deserializeAws_json1_1CompleteLayerUploadCommand
|
|
128
|
-
*/
|
|
129
|
-
export declare const de_CompleteLayerUploadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CompleteLayerUploadCommandOutput>;
|
|
130
|
-
/**
|
|
131
|
-
* deserializeAws_json1_1CreateRepositoryCommand
|
|
132
|
-
*/
|
|
133
|
-
export declare const de_CreateRepositoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRepositoryCommandOutput>;
|
|
134
|
-
/**
|
|
135
|
-
* deserializeAws_json1_1DeleteRepositoryCommand
|
|
136
|
-
*/
|
|
137
|
-
export declare const de_DeleteRepositoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRepositoryCommandOutput>;
|
|
138
|
-
/**
|
|
139
|
-
* deserializeAws_json1_1DeleteRepositoryPolicyCommand
|
|
140
|
-
*/
|
|
141
|
-
export declare const de_DeleteRepositoryPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRepositoryPolicyCommandOutput>;
|
|
142
|
-
/**
|
|
143
|
-
* deserializeAws_json1_1DescribeImagesCommand
|
|
144
|
-
*/
|
|
145
|
-
export declare const de_DescribeImagesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeImagesCommandOutput>;
|
|
146
|
-
/**
|
|
147
|
-
* deserializeAws_json1_1DescribeImageTagsCommand
|
|
148
|
-
*/
|
|
149
|
-
export declare const de_DescribeImageTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeImageTagsCommandOutput>;
|
|
150
|
-
/**
|
|
151
|
-
* deserializeAws_json1_1DescribeRegistriesCommand
|
|
152
|
-
*/
|
|
153
|
-
export declare const de_DescribeRegistriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRegistriesCommandOutput>;
|
|
154
|
-
/**
|
|
155
|
-
* deserializeAws_json1_1DescribeRepositoriesCommand
|
|
156
|
-
*/
|
|
157
|
-
export declare const de_DescribeRepositoriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRepositoriesCommandOutput>;
|
|
158
|
-
/**
|
|
159
|
-
* deserializeAws_json1_1GetAuthorizationTokenCommand
|
|
160
|
-
*/
|
|
161
|
-
export declare const de_GetAuthorizationTokenCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAuthorizationTokenCommandOutput>;
|
|
162
|
-
/**
|
|
163
|
-
* deserializeAws_json1_1GetRegistryCatalogDataCommand
|
|
164
|
-
*/
|
|
165
|
-
export declare const de_GetRegistryCatalogDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRegistryCatalogDataCommandOutput>;
|
|
166
|
-
/**
|
|
167
|
-
* deserializeAws_json1_1GetRepositoryCatalogDataCommand
|
|
168
|
-
*/
|
|
169
|
-
export declare const de_GetRepositoryCatalogDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRepositoryCatalogDataCommandOutput>;
|
|
170
|
-
/**
|
|
171
|
-
* deserializeAws_json1_1GetRepositoryPolicyCommand
|
|
172
|
-
*/
|
|
173
|
-
export declare const de_GetRepositoryPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRepositoryPolicyCommandOutput>;
|
|
174
|
-
/**
|
|
175
|
-
* deserializeAws_json1_1InitiateLayerUploadCommand
|
|
176
|
-
*/
|
|
177
|
-
export declare const de_InitiateLayerUploadCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<InitiateLayerUploadCommandOutput>;
|
|
178
|
-
/**
|
|
179
|
-
* deserializeAws_json1_1ListTagsForResourceCommand
|
|
180
|
-
*/
|
|
181
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
182
|
-
/**
|
|
183
|
-
* deserializeAws_json1_1PutImageCommand
|
|
184
|
-
*/
|
|
185
|
-
export declare const de_PutImageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutImageCommandOutput>;
|
|
186
|
-
/**
|
|
187
|
-
* deserializeAws_json1_1PutRegistryCatalogDataCommand
|
|
188
|
-
*/
|
|
189
|
-
export declare const de_PutRegistryCatalogDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutRegistryCatalogDataCommandOutput>;
|
|
190
|
-
/**
|
|
191
|
-
* deserializeAws_json1_1PutRepositoryCatalogDataCommand
|
|
192
|
-
*/
|
|
193
|
-
export declare const de_PutRepositoryCatalogDataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutRepositoryCatalogDataCommandOutput>;
|
|
194
|
-
/**
|
|
195
|
-
* deserializeAws_json1_1SetRepositoryPolicyCommand
|
|
196
|
-
*/
|
|
197
|
-
export declare const de_SetRepositoryPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetRepositoryPolicyCommandOutput>;
|
|
198
|
-
/**
|
|
199
|
-
* deserializeAws_json1_1TagResourceCommand
|
|
200
|
-
*/
|
|
201
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
202
|
-
/**
|
|
203
|
-
* deserializeAws_json1_1UntagResourceCommand
|
|
204
|
-
*/
|
|
205
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
206
|
-
/**
|
|
207
|
-
* deserializeAws_json1_1UploadLayerPartCommand
|
|
208
|
-
*/
|
|
209
|
-
export declare const de_UploadLayerPartCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UploadLayerPartCommandOutput>;
|
|
@@ -1,281 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
BatchCheckLayerAvailabilityCommandInput,
|
|
8
|
-
BatchCheckLayerAvailabilityCommandOutput,
|
|
9
|
-
} from "../commands/BatchCheckLayerAvailabilityCommand";
|
|
10
|
-
import {
|
|
11
|
-
BatchDeleteImageCommandInput,
|
|
12
|
-
BatchDeleteImageCommandOutput,
|
|
13
|
-
} from "../commands/BatchDeleteImageCommand";
|
|
14
|
-
import {
|
|
15
|
-
CompleteLayerUploadCommandInput,
|
|
16
|
-
CompleteLayerUploadCommandOutput,
|
|
17
|
-
} from "../commands/CompleteLayerUploadCommand";
|
|
18
|
-
import {
|
|
19
|
-
CreateRepositoryCommandInput,
|
|
20
|
-
CreateRepositoryCommandOutput,
|
|
21
|
-
} from "../commands/CreateRepositoryCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteRepositoryCommandInput,
|
|
24
|
-
DeleteRepositoryCommandOutput,
|
|
25
|
-
} from "../commands/DeleteRepositoryCommand";
|
|
26
|
-
import {
|
|
27
|
-
DeleteRepositoryPolicyCommandInput,
|
|
28
|
-
DeleteRepositoryPolicyCommandOutput,
|
|
29
|
-
} from "../commands/DeleteRepositoryPolicyCommand";
|
|
30
|
-
import {
|
|
31
|
-
DescribeImagesCommandInput,
|
|
32
|
-
DescribeImagesCommandOutput,
|
|
33
|
-
} from "../commands/DescribeImagesCommand";
|
|
34
|
-
import {
|
|
35
|
-
DescribeImageTagsCommandInput,
|
|
36
|
-
DescribeImageTagsCommandOutput,
|
|
37
|
-
} from "../commands/DescribeImageTagsCommand";
|
|
38
|
-
import {
|
|
39
|
-
DescribeRegistriesCommandInput,
|
|
40
|
-
DescribeRegistriesCommandOutput,
|
|
41
|
-
} from "../commands/DescribeRegistriesCommand";
|
|
42
|
-
import {
|
|
43
|
-
DescribeRepositoriesCommandInput,
|
|
44
|
-
DescribeRepositoriesCommandOutput,
|
|
45
|
-
} from "../commands/DescribeRepositoriesCommand";
|
|
46
|
-
import {
|
|
47
|
-
GetAuthorizationTokenCommandInput,
|
|
48
|
-
GetAuthorizationTokenCommandOutput,
|
|
49
|
-
} from "../commands/GetAuthorizationTokenCommand";
|
|
50
|
-
import {
|
|
51
|
-
GetRegistryCatalogDataCommandInput,
|
|
52
|
-
GetRegistryCatalogDataCommandOutput,
|
|
53
|
-
} from "../commands/GetRegistryCatalogDataCommand";
|
|
54
|
-
import {
|
|
55
|
-
GetRepositoryCatalogDataCommandInput,
|
|
56
|
-
GetRepositoryCatalogDataCommandOutput,
|
|
57
|
-
} from "../commands/GetRepositoryCatalogDataCommand";
|
|
58
|
-
import {
|
|
59
|
-
GetRepositoryPolicyCommandInput,
|
|
60
|
-
GetRepositoryPolicyCommandOutput,
|
|
61
|
-
} from "../commands/GetRepositoryPolicyCommand";
|
|
62
|
-
import {
|
|
63
|
-
InitiateLayerUploadCommandInput,
|
|
64
|
-
InitiateLayerUploadCommandOutput,
|
|
65
|
-
} from "../commands/InitiateLayerUploadCommand";
|
|
66
|
-
import {
|
|
67
|
-
ListTagsForResourceCommandInput,
|
|
68
|
-
ListTagsForResourceCommandOutput,
|
|
69
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
70
|
-
import {
|
|
71
|
-
PutImageCommandInput,
|
|
72
|
-
PutImageCommandOutput,
|
|
73
|
-
} from "../commands/PutImageCommand";
|
|
74
|
-
import {
|
|
75
|
-
PutRegistryCatalogDataCommandInput,
|
|
76
|
-
PutRegistryCatalogDataCommandOutput,
|
|
77
|
-
} from "../commands/PutRegistryCatalogDataCommand";
|
|
78
|
-
import {
|
|
79
|
-
PutRepositoryCatalogDataCommandInput,
|
|
80
|
-
PutRepositoryCatalogDataCommandOutput,
|
|
81
|
-
} from "../commands/PutRepositoryCatalogDataCommand";
|
|
82
|
-
import {
|
|
83
|
-
SetRepositoryPolicyCommandInput,
|
|
84
|
-
SetRepositoryPolicyCommandOutput,
|
|
85
|
-
} from "../commands/SetRepositoryPolicyCommand";
|
|
86
|
-
import {
|
|
87
|
-
TagResourceCommandInput,
|
|
88
|
-
TagResourceCommandOutput,
|
|
89
|
-
} from "../commands/TagResourceCommand";
|
|
90
|
-
import {
|
|
91
|
-
UntagResourceCommandInput,
|
|
92
|
-
UntagResourceCommandOutput,
|
|
93
|
-
} from "../commands/UntagResourceCommand";
|
|
94
|
-
import {
|
|
95
|
-
UploadLayerPartCommandInput,
|
|
96
|
-
UploadLayerPartCommandOutput,
|
|
97
|
-
} from "../commands/UploadLayerPartCommand";
|
|
98
|
-
export declare const se_BatchCheckLayerAvailabilityCommand: (
|
|
99
|
-
input: BatchCheckLayerAvailabilityCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_BatchDeleteImageCommand: (
|
|
103
|
-
input: BatchDeleteImageCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_CompleteLayerUploadCommand: (
|
|
107
|
-
input: CompleteLayerUploadCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_CreateRepositoryCommand: (
|
|
111
|
-
input: CreateRepositoryCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_DeleteRepositoryCommand: (
|
|
115
|
-
input: DeleteRepositoryCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_DeleteRepositoryPolicyCommand: (
|
|
119
|
-
input: DeleteRepositoryPolicyCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_DescribeImagesCommand: (
|
|
123
|
-
input: DescribeImagesCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_DescribeImageTagsCommand: (
|
|
127
|
-
input: DescribeImageTagsCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_DescribeRegistriesCommand: (
|
|
131
|
-
input: DescribeRegistriesCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_DescribeRepositoriesCommand: (
|
|
135
|
-
input: DescribeRepositoriesCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_GetAuthorizationTokenCommand: (
|
|
139
|
-
input: GetAuthorizationTokenCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_GetRegistryCatalogDataCommand: (
|
|
143
|
-
input: GetRegistryCatalogDataCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_GetRepositoryCatalogDataCommand: (
|
|
147
|
-
input: GetRepositoryCatalogDataCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_GetRepositoryPolicyCommand: (
|
|
151
|
-
input: GetRepositoryPolicyCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_InitiateLayerUploadCommand: (
|
|
155
|
-
input: InitiateLayerUploadCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
159
|
-
input: ListTagsForResourceCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_PutImageCommand: (
|
|
163
|
-
input: PutImageCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_PutRegistryCatalogDataCommand: (
|
|
167
|
-
input: PutRegistryCatalogDataCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_PutRepositoryCatalogDataCommand: (
|
|
171
|
-
input: PutRepositoryCatalogDataCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const se_SetRepositoryPolicyCommand: (
|
|
175
|
-
input: SetRepositoryPolicyCommandInput,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<__HttpRequest>;
|
|
178
|
-
export declare const se_TagResourceCommand: (
|
|
179
|
-
input: TagResourceCommandInput,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<__HttpRequest>;
|
|
182
|
-
export declare const se_UntagResourceCommand: (
|
|
183
|
-
input: UntagResourceCommandInput,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<__HttpRequest>;
|
|
186
|
-
export declare const se_UploadLayerPartCommand: (
|
|
187
|
-
input: UploadLayerPartCommandInput,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<__HttpRequest>;
|
|
190
|
-
export declare const de_BatchCheckLayerAvailabilityCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<BatchCheckLayerAvailabilityCommandOutput>;
|
|
194
|
-
export declare const de_BatchDeleteImageCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<BatchDeleteImageCommandOutput>;
|
|
198
|
-
export declare const de_CompleteLayerUploadCommand: (
|
|
199
|
-
output: __HttpResponse,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<CompleteLayerUploadCommandOutput>;
|
|
202
|
-
export declare const de_CreateRepositoryCommand: (
|
|
203
|
-
output: __HttpResponse,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<CreateRepositoryCommandOutput>;
|
|
206
|
-
export declare const de_DeleteRepositoryCommand: (
|
|
207
|
-
output: __HttpResponse,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<DeleteRepositoryCommandOutput>;
|
|
210
|
-
export declare const de_DeleteRepositoryPolicyCommand: (
|
|
211
|
-
output: __HttpResponse,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<DeleteRepositoryPolicyCommandOutput>;
|
|
214
|
-
export declare const de_DescribeImagesCommand: (
|
|
215
|
-
output: __HttpResponse,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<DescribeImagesCommandOutput>;
|
|
218
|
-
export declare const de_DescribeImageTagsCommand: (
|
|
219
|
-
output: __HttpResponse,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<DescribeImageTagsCommandOutput>;
|
|
222
|
-
export declare const de_DescribeRegistriesCommand: (
|
|
223
|
-
output: __HttpResponse,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<DescribeRegistriesCommandOutput>;
|
|
226
|
-
export declare const de_DescribeRepositoriesCommand: (
|
|
227
|
-
output: __HttpResponse,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<DescribeRepositoriesCommandOutput>;
|
|
230
|
-
export declare const de_GetAuthorizationTokenCommand: (
|
|
231
|
-
output: __HttpResponse,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<GetAuthorizationTokenCommandOutput>;
|
|
234
|
-
export declare const de_GetRegistryCatalogDataCommand: (
|
|
235
|
-
output: __HttpResponse,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<GetRegistryCatalogDataCommandOutput>;
|
|
238
|
-
export declare const de_GetRepositoryCatalogDataCommand: (
|
|
239
|
-
output: __HttpResponse,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<GetRepositoryCatalogDataCommandOutput>;
|
|
242
|
-
export declare const de_GetRepositoryPolicyCommand: (
|
|
243
|
-
output: __HttpResponse,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<GetRepositoryPolicyCommandOutput>;
|
|
246
|
-
export declare const de_InitiateLayerUploadCommand: (
|
|
247
|
-
output: __HttpResponse,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<InitiateLayerUploadCommandOutput>;
|
|
250
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
251
|
-
output: __HttpResponse,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
254
|
-
export declare const de_PutImageCommand: (
|
|
255
|
-
output: __HttpResponse,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<PutImageCommandOutput>;
|
|
258
|
-
export declare const de_PutRegistryCatalogDataCommand: (
|
|
259
|
-
output: __HttpResponse,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<PutRegistryCatalogDataCommandOutput>;
|
|
262
|
-
export declare const de_PutRepositoryCatalogDataCommand: (
|
|
263
|
-
output: __HttpResponse,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<PutRepositoryCatalogDataCommandOutput>;
|
|
266
|
-
export declare const de_SetRepositoryPolicyCommand: (
|
|
267
|
-
output: __HttpResponse,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<SetRepositoryPolicyCommandOutput>;
|
|
270
|
-
export declare const de_TagResourceCommand: (
|
|
271
|
-
output: __HttpResponse,
|
|
272
|
-
context: __SerdeContext
|
|
273
|
-
) => Promise<TagResourceCommandOutput>;
|
|
274
|
-
export declare const de_UntagResourceCommand: (
|
|
275
|
-
output: __HttpResponse,
|
|
276
|
-
context: __SerdeContext
|
|
277
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
278
|
-
export declare const de_UploadLayerPartCommand: (
|
|
279
|
-
output: __HttpResponse,
|
|
280
|
-
context: __SerdeContext
|
|
281
|
-
) => Promise<UploadLayerPartCommandOutput>;
|