@aws-sdk/client-cloudcontrol 3.926.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 +593 -747
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/CloudControlClient.js +2 -0
- package/dist-es/commands/CancelResourceRequestCommand.js +3 -10
- package/dist-es/commands/CreateResourceCommand.js +3 -10
- package/dist-es/commands/DeleteResourceCommand.js +3 -10
- package/dist-es/commands/GetResourceCommand.js +3 -10
- package/dist-es/commands/GetResourceRequestStatusCommand.js +3 -10
- package/dist-es/commands/ListResourceRequestsCommand.js +3 -10
- package/dist-es/commands/ListResourcesCommand.js +3 -10
- package/dist-es/commands/UpdateResourceCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -59
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +514 -0
- package/dist-types/CloudControlClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -52
- 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 +1 -0
- package/dist-types/schemas/schemas_0.d.ts +58 -0
- package/dist-types/ts3.4/CloudControlClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -39
- 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 +64 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_json1_0.js +0 -561
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -74
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -101
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -126,6 +129,7 @@ export interface ClientDefaults
|
|
|
126
129
|
retryMode?: string | __Provider<string>;
|
|
127
130
|
logger?: __Logger;
|
|
128
131
|
extensions?: RuntimeExtension[];
|
|
132
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
129
133
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
130
134
|
}
|
|
131
135
|
export type CloudControlClientConfigType = Partial<
|
|
@@ -317,42 +317,3 @@ export interface UpdateResourceInput {
|
|
|
317
317
|
export interface UpdateResourceOutput {
|
|
318
318
|
ProgressEvent?: ProgressEvent | undefined;
|
|
319
319
|
}
|
|
320
|
-
export declare const ProgressEventFilterSensitiveLog: (
|
|
321
|
-
obj: ProgressEvent
|
|
322
|
-
) => any;
|
|
323
|
-
export declare const CancelResourceRequestOutputFilterSensitiveLog: (
|
|
324
|
-
obj: CancelResourceRequestOutput
|
|
325
|
-
) => any;
|
|
326
|
-
export declare const CreateResourceInputFilterSensitiveLog: (
|
|
327
|
-
obj: CreateResourceInput
|
|
328
|
-
) => any;
|
|
329
|
-
export declare const CreateResourceOutputFilterSensitiveLog: (
|
|
330
|
-
obj: CreateResourceOutput
|
|
331
|
-
) => any;
|
|
332
|
-
export declare const DeleteResourceOutputFilterSensitiveLog: (
|
|
333
|
-
obj: DeleteResourceOutput
|
|
334
|
-
) => any;
|
|
335
|
-
export declare const ResourceDescriptionFilterSensitiveLog: (
|
|
336
|
-
obj: ResourceDescription
|
|
337
|
-
) => any;
|
|
338
|
-
export declare const GetResourceOutputFilterSensitiveLog: (
|
|
339
|
-
obj: GetResourceOutput
|
|
340
|
-
) => any;
|
|
341
|
-
export declare const GetResourceRequestStatusOutputFilterSensitiveLog: (
|
|
342
|
-
obj: GetResourceRequestStatusOutput
|
|
343
|
-
) => any;
|
|
344
|
-
export declare const ListResourceRequestsOutputFilterSensitiveLog: (
|
|
345
|
-
obj: ListResourceRequestsOutput
|
|
346
|
-
) => any;
|
|
347
|
-
export declare const ListResourcesInputFilterSensitiveLog: (
|
|
348
|
-
obj: ListResourcesInput
|
|
349
|
-
) => any;
|
|
350
|
-
export declare const ListResourcesOutputFilterSensitiveLog: (
|
|
351
|
-
obj: ListResourcesOutput
|
|
352
|
-
) => any;
|
|
353
|
-
export declare const UpdateResourceInputFilterSensitiveLog: (
|
|
354
|
-
obj: UpdateResourceInput
|
|
355
|
-
) => any;
|
|
356
|
-
export declare const UpdateResourceOutputFilterSensitiveLog: (
|
|
357
|
-
obj: UpdateResourceOutput
|
|
358
|
-
) => any;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: CloudControlClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CloudControlHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticSimpleSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var PatchDocument: StaticSimpleSchema;
|
|
9
|
+
export declare var Properties: StaticSimpleSchema;
|
|
10
|
+
export declare var AlreadyExistsException: StaticErrorSchema;
|
|
11
|
+
export declare var CancelResourceRequestInput: StaticStructureSchema;
|
|
12
|
+
export declare var CancelResourceRequestOutput: StaticStructureSchema;
|
|
13
|
+
export declare var ClientTokenConflictException: StaticErrorSchema;
|
|
14
|
+
export declare var ConcurrentModificationException: StaticErrorSchema;
|
|
15
|
+
export declare var ConcurrentOperationException: StaticErrorSchema;
|
|
16
|
+
export declare var CreateResourceInput: StaticStructureSchema;
|
|
17
|
+
export declare var CreateResourceOutput: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteResourceInput: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteResourceOutput: StaticStructureSchema;
|
|
20
|
+
export declare var GeneralServiceException: StaticErrorSchema;
|
|
21
|
+
export declare var GetResourceInput: StaticStructureSchema;
|
|
22
|
+
export declare var GetResourceOutput: StaticStructureSchema;
|
|
23
|
+
export declare var GetResourceRequestStatusInput: StaticStructureSchema;
|
|
24
|
+
export declare var GetResourceRequestStatusOutput: StaticStructureSchema;
|
|
25
|
+
export declare var HandlerFailureException: StaticErrorSchema;
|
|
26
|
+
export declare var HandlerInternalFailureException: StaticErrorSchema;
|
|
27
|
+
export declare var HookProgressEvent: StaticStructureSchema;
|
|
28
|
+
export declare var InvalidCredentialsException: StaticErrorSchema;
|
|
29
|
+
export declare var InvalidRequestException: StaticErrorSchema;
|
|
30
|
+
export declare var ListResourceRequestsInput: StaticStructureSchema;
|
|
31
|
+
export declare var ListResourceRequestsOutput: StaticStructureSchema;
|
|
32
|
+
export declare var ListResourcesInput: StaticStructureSchema;
|
|
33
|
+
export declare var ListResourcesOutput: StaticStructureSchema;
|
|
34
|
+
export declare var NetworkFailureException: StaticErrorSchema;
|
|
35
|
+
export declare var NotStabilizedException: StaticErrorSchema;
|
|
36
|
+
export declare var NotUpdatableException: StaticErrorSchema;
|
|
37
|
+
export declare var PrivateTypeException: StaticErrorSchema;
|
|
38
|
+
export declare var ProgressEvent: StaticStructureSchema;
|
|
39
|
+
export declare var RequestTokenNotFoundException: StaticErrorSchema;
|
|
40
|
+
export declare var ResourceConflictException: StaticErrorSchema;
|
|
41
|
+
export declare var ResourceDescription: StaticStructureSchema;
|
|
42
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
43
|
+
export declare var ResourceRequestStatusFilter: StaticStructureSchema;
|
|
44
|
+
export declare var ServiceInternalErrorException: StaticErrorSchema;
|
|
45
|
+
export declare var ServiceLimitExceededException: StaticErrorSchema;
|
|
46
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
47
|
+
export declare var TypeNotFoundException: StaticErrorSchema;
|
|
48
|
+
export declare var UnsupportedActionException: StaticErrorSchema;
|
|
49
|
+
export declare var UpdateResourceInput: StaticStructureSchema;
|
|
50
|
+
export declare var UpdateResourceOutput: StaticStructureSchema;
|
|
51
|
+
export declare var CloudControlServiceException: StaticErrorSchema;
|
|
52
|
+
export declare var HooksProgressEvent: StaticListSchema;
|
|
53
|
+
export declare var Operations: number;
|
|
54
|
+
export declare var OperationStatuses: number;
|
|
55
|
+
export declare var ResourceDescriptions: StaticListSchema;
|
|
56
|
+
export declare var ResourceRequestStatusSummaries: StaticListSchema;
|
|
57
|
+
export declare var CancelResourceRequest: StaticOperationSchema;
|
|
58
|
+
export declare var CreateResource: StaticOperationSchema;
|
|
59
|
+
export declare var DeleteResource: StaticOperationSchema;
|
|
60
|
+
export declare var GetResource: StaticOperationSchema;
|
|
61
|
+
export declare var GetResourceRequestStatus: StaticOperationSchema;
|
|
62
|
+
export declare var ListResourceRequests: StaticOperationSchema;
|
|
63
|
+
export declare var ListResources: StaticOperationSchema;
|
|
64
|
+
export declare var UpdateResource: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudcontrol",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudcontrol Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.928.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudcontrol",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.928.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|
|
@@ -57,7 +57,6 @@
|
|
|
57
57
|
"@smithy/util-retry": "^4.2.4",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
59
|
"@smithy/util-waiter": "^4.2.4",
|
|
60
|
-
"@smithy/uuid": "^1.1.0",
|
|
61
60
|
"tslib": "^2.6.2"
|
|
62
61
|
},
|
|
63
62
|
"devDependencies": {
|