@aws-sdk/client-ecr-public 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/ECRPUBLIC.d.ts +395 -120
- package/dist-types/ts3.4/ECRPUBLICClient.d.ts +242 -96
- package/dist-types/ts3.4/commands/BatchCheckLayerAvailabilityCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/BatchDeleteImageCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CompleteLayerUploadCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/CreateRepositoryCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteRepositoryCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteRepositoryPolicyCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeImageTagsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeImagesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeRegistriesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeRepositoriesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetAuthorizationTokenCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetRegistryCatalogDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetRepositoryCatalogDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetRepositoryPolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/InitiateLayerUploadCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/PutImageCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/PutRegistryCatalogDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PutRepositoryCatalogDataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/SetRepositoryPolicyCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UploadLayerPartCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/index.d.ts +23 -23
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ECRPUBLICServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +659 -797
- package/dist-types/ts3.4/pagination/DescribeImageTagsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeImagesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeRegistriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeRepositoriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +281 -71
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeImageTagsCommandInput,
|
|
4
|
+
DescribeImageTagsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeImageTagsCommand";
|
|
6
|
+
import { ECRPUBLICPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeImageTags(
|
|
8
|
+
config: ECRPUBLICPaginationConfiguration,
|
|
9
|
+
input: DescribeImageTagsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeImageTagsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeImagesCommandInput,
|
|
4
|
+
DescribeImagesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeImagesCommand";
|
|
6
|
+
import { ECRPUBLICPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeImages(
|
|
8
|
+
config: ECRPUBLICPaginationConfiguration,
|
|
9
|
+
input: DescribeImagesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeImagesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeRegistriesCommandInput,
|
|
4
|
+
DescribeRegistriesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeRegistriesCommand";
|
|
6
|
+
import { ECRPUBLICPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeRegistries(
|
|
8
|
+
config: ECRPUBLICPaginationConfiguration,
|
|
9
|
+
input: DescribeRegistriesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeRegistriesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeRepositoriesCommandInput,
|
|
4
|
+
DescribeRepositoriesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeRepositoriesCommand";
|
|
6
|
+
import { ECRPUBLICPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeRepositories(
|
|
8
|
+
config: ECRPUBLICPaginationConfiguration,
|
|
9
|
+
input: DescribeRepositoriesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeRepositoriesCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { ECRPUBLIC } from "../ECRPUBLIC";
|
|
3
|
-
import { ECRPUBLICClient } from "../ECRPUBLICClient";
|
|
4
|
-
export interface ECRPUBLICPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ECRPUBLIC } from "../ECRPUBLIC";
|
|
3
|
+
import { ECRPUBLICClient } from "../ECRPUBLICClient";
|
|
4
|
+
export interface ECRPUBLICPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: ECRPUBLIC | ECRPUBLICClient;
|
|
7
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./DescribeImageTagsPaginator";
|
|
2
|
-
export * from "./DescribeImagesPaginator";
|
|
3
|
-
export * from "./DescribeRegistriesPaginator";
|
|
4
|
-
export * from "./DescribeRepositoriesPaginator";
|
|
5
|
-
export * from "./Interfaces";
|
|
1
|
+
export * from "./DescribeImageTagsPaginator";
|
|
2
|
+
export * from "./DescribeImagesPaginator";
|
|
3
|
+
export * from "./DescribeRegistriesPaginator";
|
|
4
|
+
export * from "./DescribeRepositoriesPaginator";
|
|
5
|
+
export * from "./Interfaces";
|
|
@@ -1,71 +1,281 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/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 serializeAws_json1_1BatchCheckLayerAvailabilityCommand: (
|
|
99
|
+
input: BatchCheckLayerAvailabilityCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_json1_1BatchDeleteImageCommand: (
|
|
103
|
+
input: BatchDeleteImageCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_json1_1CompleteLayerUploadCommand: (
|
|
107
|
+
input: CompleteLayerUploadCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_json1_1CreateRepositoryCommand: (
|
|
111
|
+
input: CreateRepositoryCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_json1_1DeleteRepositoryCommand: (
|
|
115
|
+
input: DeleteRepositoryCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_1DeleteRepositoryPolicyCommand: (
|
|
119
|
+
input: DeleteRepositoryPolicyCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_json1_1DescribeImagesCommand: (
|
|
123
|
+
input: DescribeImagesCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_json1_1DescribeImageTagsCommand: (
|
|
127
|
+
input: DescribeImageTagsCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_json1_1DescribeRegistriesCommand: (
|
|
131
|
+
input: DescribeRegistriesCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_json1_1DescribeRepositoriesCommand: (
|
|
135
|
+
input: DescribeRepositoriesCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_json1_1GetAuthorizationTokenCommand: (
|
|
139
|
+
input: GetAuthorizationTokenCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_1GetRegistryCatalogDataCommand: (
|
|
143
|
+
input: GetRegistryCatalogDataCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_json1_1GetRepositoryCatalogDataCommand: (
|
|
147
|
+
input: GetRepositoryCatalogDataCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_json1_1GetRepositoryPolicyCommand: (
|
|
151
|
+
input: GetRepositoryPolicyCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_json1_1InitiateLayerUploadCommand: (
|
|
155
|
+
input: InitiateLayerUploadCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_json1_1ListTagsForResourceCommand: (
|
|
159
|
+
input: ListTagsForResourceCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_json1_1PutImageCommand: (
|
|
163
|
+
input: PutImageCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_json1_1PutRegistryCatalogDataCommand: (
|
|
167
|
+
input: PutRegistryCatalogDataCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_json1_1PutRepositoryCatalogDataCommand: (
|
|
171
|
+
input: PutRepositoryCatalogDataCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_json1_1SetRepositoryPolicyCommand: (
|
|
175
|
+
input: SetRepositoryPolicyCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_json1_1TagResourceCommand: (
|
|
179
|
+
input: TagResourceCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_json1_1UntagResourceCommand: (
|
|
183
|
+
input: UntagResourceCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_json1_1UploadLayerPartCommand: (
|
|
187
|
+
input: UploadLayerPartCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const deserializeAws_json1_1BatchCheckLayerAvailabilityCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<BatchCheckLayerAvailabilityCommandOutput>;
|
|
194
|
+
export declare const deserializeAws_json1_1BatchDeleteImageCommand: (
|
|
195
|
+
output: __HttpResponse,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<BatchDeleteImageCommandOutput>;
|
|
198
|
+
export declare const deserializeAws_json1_1CompleteLayerUploadCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<CompleteLayerUploadCommandOutput>;
|
|
202
|
+
export declare const deserializeAws_json1_1CreateRepositoryCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<CreateRepositoryCommandOutput>;
|
|
206
|
+
export declare const deserializeAws_json1_1DeleteRepositoryCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<DeleteRepositoryCommandOutput>;
|
|
210
|
+
export declare const deserializeAws_json1_1DeleteRepositoryPolicyCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<DeleteRepositoryPolicyCommandOutput>;
|
|
214
|
+
export declare const deserializeAws_json1_1DescribeImagesCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<DescribeImagesCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_json1_1DescribeImageTagsCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<DescribeImageTagsCommandOutput>;
|
|
222
|
+
export declare const deserializeAws_json1_1DescribeRegistriesCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<DescribeRegistriesCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_json1_1DescribeRepositoriesCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<DescribeRepositoriesCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_json1_1GetAuthorizationTokenCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<GetAuthorizationTokenCommandOutput>;
|
|
234
|
+
export declare const deserializeAws_json1_1GetRegistryCatalogDataCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<GetRegistryCatalogDataCommandOutput>;
|
|
238
|
+
export declare const deserializeAws_json1_1GetRepositoryCatalogDataCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<GetRepositoryCatalogDataCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_json1_1GetRepositoryPolicyCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<GetRepositoryPolicyCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_json1_1InitiateLayerUploadCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<InitiateLayerUploadCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_json1_1PutImageCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<PutImageCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_json1_1PutRegistryCatalogDataCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<PutRegistryCatalogDataCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_json1_1PutRepositoryCatalogDataCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<PutRepositoryCatalogDataCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_json1_1SetRepositoryPolicyCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<SetRepositoryPolicyCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_json1_1TagResourceCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<TagResourceCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_json1_1UntagResourceCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_json1_1UploadLayerPartCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<UploadLayerPartCommandOutput>;
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { ECRPUBLICClientConfig } from "./ECRPUBLICClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { ECRPUBLICClientConfig } from "./ECRPUBLICClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: ECRPUBLICClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|