@aws-sdk/client-codepipeline 3.713.0 → 3.716.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/runtimeConfig.js +8 -6
- package/dist-es/runtimeConfig.js +8 -6
- package/dist-types/CodePipelineClient.d.ts +18 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +18 -0
- package/dist-types/commands/GetPipelineCommand.d.ts +9 -0
- package/dist-types/commands/ListRuleTypesCommand.d.ts +2 -1
- package/dist-types/commands/UpdatePipelineCommand.d.ts +18 -0
- package/dist-types/models/models_0.d.ts +26 -3
- 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/ts3.4/CodePipelineClient.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +19 -19
|
@@ -23,6 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
24
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
25
25
|
(0, core_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
26
|
+
const profileConfig = { profile: config?.profile };
|
|
26
27
|
return {
|
|
27
28
|
...clientSharedValues,
|
|
28
29
|
...config,
|
|
@@ -32,19 +33,20 @@ const getRuntimeConfig = (config) => {
|
|
|
32
33
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
33
34
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
34
35
|
(0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
35
|
-
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
36
|
-
region: config?.region ??
|
|
36
|
+
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
37
|
+
region: config?.region ??
|
|
38
|
+
(0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
|
|
37
39
|
requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
38
40
|
retryMode: config?.retryMode ??
|
|
39
41
|
(0, node_config_provider_1.loadConfig)({
|
|
40
42
|
...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
41
43
|
default: async () => (await defaultConfigProvider()).retryMode || util_retry_1.DEFAULT_RETRY_MODE,
|
|
42
|
-
}),
|
|
44
|
+
}, config),
|
|
43
45
|
sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
|
|
44
46
|
streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
|
|
45
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
46
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
47
|
-
userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS),
|
|
47
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
|
|
48
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
|
|
49
|
+
userAgentAppId: config?.userAgentAppId ?? (0, node_config_provider_1.loadConfig)(util_user_agent_node_1.NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
|
|
48
50
|
};
|
|
49
51
|
};
|
|
50
52
|
exports.getRuntimeConfig = getRuntimeConfig;
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -19,6 +19,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
19
19
|
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
20
20
|
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
21
21
|
awsCheckVersion(process.version);
|
|
22
|
+
const profileConfig = { profile: config?.profile };
|
|
22
23
|
return {
|
|
23
24
|
...clientSharedValues,
|
|
24
25
|
...config,
|
|
@@ -28,18 +29,19 @@ export const getRuntimeConfig = (config) => {
|
|
|
28
29
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
29
30
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
30
31
|
createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
31
|
-
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
32
|
-
region: config?.region ??
|
|
32
|
+
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
33
|
+
region: config?.region ??
|
|
34
|
+
loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...profileConfig }),
|
|
33
35
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
34
36
|
retryMode: config?.retryMode ??
|
|
35
37
|
loadNodeConfig({
|
|
36
38
|
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
37
39
|
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
38
|
-
}),
|
|
40
|
+
}, config),
|
|
39
41
|
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
40
42
|
streamCollector: config?.streamCollector ?? streamCollector,
|
|
41
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
42
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
43
|
-
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS),
|
|
43
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, profileConfig),
|
|
44
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, profileConfig),
|
|
45
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, profileConfig),
|
|
44
46
|
};
|
|
45
47
|
};
|
|
@@ -137,6 +137,24 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
137
137
|
* The AWS region to which this client will send requests
|
|
138
138
|
*/
|
|
139
139
|
region?: string | __Provider<string>;
|
|
140
|
+
/**
|
|
141
|
+
* Setting a client profile is similar to setting a value for the
|
|
142
|
+
* AWS_PROFILE environment variable. Setting a profile on a client
|
|
143
|
+
* in code only affects the single client instance, unlike AWS_PROFILE.
|
|
144
|
+
*
|
|
145
|
+
* When set, and only for environments where an AWS configuration
|
|
146
|
+
* file exists, fields configurable by this file will be retrieved
|
|
147
|
+
* from the specified profile within that file.
|
|
148
|
+
* Conflicting code configuration and environment variables will
|
|
149
|
+
* still have higher priority.
|
|
150
|
+
*
|
|
151
|
+
* For client credential resolution that involves checking the AWS
|
|
152
|
+
* configuration file, the client's profile (this value) will be
|
|
153
|
+
* used unless a different profile is set in the credential
|
|
154
|
+
* provider options.
|
|
155
|
+
*
|
|
156
|
+
*/
|
|
157
|
+
profile?: string;
|
|
140
158
|
/**
|
|
141
159
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
142
160
|
* @internal
|
|
@@ -129,6 +129,9 @@ declare const CreatePipelineCommand_base: {
|
|
|
129
129
|
* configuration: { // RuleConfigurationMap
|
|
130
130
|
* "<keys>": "STRING_VALUE",
|
|
131
131
|
* },
|
|
132
|
+
* commands: [
|
|
133
|
+
* "STRING_VALUE",
|
|
134
|
+
* ],
|
|
132
135
|
* inputArtifacts: [
|
|
133
136
|
* {
|
|
134
137
|
* name: "STRING_VALUE", // required
|
|
@@ -158,6 +161,9 @@ declare const CreatePipelineCommand_base: {
|
|
|
158
161
|
* configuration: {
|
|
159
162
|
* "<keys>": "STRING_VALUE",
|
|
160
163
|
* },
|
|
164
|
+
* commands: [
|
|
165
|
+
* "STRING_VALUE",
|
|
166
|
+
* ],
|
|
161
167
|
* inputArtifacts: [
|
|
162
168
|
* {
|
|
163
169
|
* name: "STRING_VALUE", // required
|
|
@@ -187,6 +193,9 @@ declare const CreatePipelineCommand_base: {
|
|
|
187
193
|
* configuration: {
|
|
188
194
|
* "<keys>": "STRING_VALUE",
|
|
189
195
|
* },
|
|
196
|
+
* commands: [
|
|
197
|
+
* "STRING_VALUE",
|
|
198
|
+
* ],
|
|
190
199
|
* inputArtifacts: [
|
|
191
200
|
* {
|
|
192
201
|
* name: "STRING_VALUE", // required
|
|
@@ -370,6 +379,9 @@ declare const CreatePipelineCommand_base: {
|
|
|
370
379
|
* // configuration: { // RuleConfigurationMap
|
|
371
380
|
* // "<keys>": "STRING_VALUE",
|
|
372
381
|
* // },
|
|
382
|
+
* // commands: [
|
|
383
|
+
* // "STRING_VALUE",
|
|
384
|
+
* // ],
|
|
373
385
|
* // inputArtifacts: [
|
|
374
386
|
* // {
|
|
375
387
|
* // name: "STRING_VALUE", // required
|
|
@@ -399,6 +411,9 @@ declare const CreatePipelineCommand_base: {
|
|
|
399
411
|
* // configuration: {
|
|
400
412
|
* // "<keys>": "STRING_VALUE",
|
|
401
413
|
* // },
|
|
414
|
+
* // commands: [
|
|
415
|
+
* // "STRING_VALUE",
|
|
416
|
+
* // ],
|
|
402
417
|
* // inputArtifacts: [
|
|
403
418
|
* // {
|
|
404
419
|
* // name: "STRING_VALUE", // required
|
|
@@ -428,6 +443,9 @@ declare const CreatePipelineCommand_base: {
|
|
|
428
443
|
* // configuration: {
|
|
429
444
|
* // "<keys>": "STRING_VALUE",
|
|
430
445
|
* // },
|
|
446
|
+
* // commands: [
|
|
447
|
+
* // "STRING_VALUE",
|
|
448
|
+
* // ],
|
|
431
449
|
* // inputArtifacts: [
|
|
432
450
|
* // {
|
|
433
451
|
* // name: "STRING_VALUE", // required
|
|
@@ -131,6 +131,9 @@ declare const GetPipelineCommand_base: {
|
|
|
131
131
|
* // configuration: { // RuleConfigurationMap
|
|
132
132
|
* // "<keys>": "STRING_VALUE",
|
|
133
133
|
* // },
|
|
134
|
+
* // commands: [
|
|
135
|
+
* // "STRING_VALUE",
|
|
136
|
+
* // ],
|
|
134
137
|
* // inputArtifacts: [
|
|
135
138
|
* // {
|
|
136
139
|
* // name: "STRING_VALUE", // required
|
|
@@ -160,6 +163,9 @@ declare const GetPipelineCommand_base: {
|
|
|
160
163
|
* // configuration: {
|
|
161
164
|
* // "<keys>": "STRING_VALUE",
|
|
162
165
|
* // },
|
|
166
|
+
* // commands: [
|
|
167
|
+
* // "STRING_VALUE",
|
|
168
|
+
* // ],
|
|
163
169
|
* // inputArtifacts: [
|
|
164
170
|
* // {
|
|
165
171
|
* // name: "STRING_VALUE", // required
|
|
@@ -189,6 +195,9 @@ declare const GetPipelineCommand_base: {
|
|
|
189
195
|
* // configuration: {
|
|
190
196
|
* // "<keys>": "STRING_VALUE",
|
|
191
197
|
* // },
|
|
198
|
+
* // commands: [
|
|
199
|
+
* // "STRING_VALUE",
|
|
200
|
+
* // ],
|
|
192
201
|
* // inputArtifacts: [
|
|
193
202
|
* // {
|
|
194
203
|
* // name: "STRING_VALUE", // required
|
|
@@ -27,7 +27,8 @@ declare const ListRuleTypesCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Lists the rules for the condition
|
|
30
|
+
* <p>Lists the rules for the condition. For more information about conditions, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html">Stage
|
|
31
|
+
* conditions</a>. For more information about rules, see the <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html">CodePipeline rule reference</a>.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -126,6 +126,9 @@ declare const UpdatePipelineCommand_base: {
|
|
|
126
126
|
* configuration: { // RuleConfigurationMap
|
|
127
127
|
* "<keys>": "STRING_VALUE",
|
|
128
128
|
* },
|
|
129
|
+
* commands: [
|
|
130
|
+
* "STRING_VALUE",
|
|
131
|
+
* ],
|
|
129
132
|
* inputArtifacts: [
|
|
130
133
|
* {
|
|
131
134
|
* name: "STRING_VALUE", // required
|
|
@@ -155,6 +158,9 @@ declare const UpdatePipelineCommand_base: {
|
|
|
155
158
|
* configuration: {
|
|
156
159
|
* "<keys>": "STRING_VALUE",
|
|
157
160
|
* },
|
|
161
|
+
* commands: [
|
|
162
|
+
* "STRING_VALUE",
|
|
163
|
+
* ],
|
|
158
164
|
* inputArtifacts: [
|
|
159
165
|
* {
|
|
160
166
|
* name: "STRING_VALUE", // required
|
|
@@ -184,6 +190,9 @@ declare const UpdatePipelineCommand_base: {
|
|
|
184
190
|
* configuration: {
|
|
185
191
|
* "<keys>": "STRING_VALUE",
|
|
186
192
|
* },
|
|
193
|
+
* commands: [
|
|
194
|
+
* "STRING_VALUE",
|
|
195
|
+
* ],
|
|
187
196
|
* inputArtifacts: [
|
|
188
197
|
* {
|
|
189
198
|
* name: "STRING_VALUE", // required
|
|
@@ -361,6 +370,9 @@ declare const UpdatePipelineCommand_base: {
|
|
|
361
370
|
* // configuration: { // RuleConfigurationMap
|
|
362
371
|
* // "<keys>": "STRING_VALUE",
|
|
363
372
|
* // },
|
|
373
|
+
* // commands: [
|
|
374
|
+
* // "STRING_VALUE",
|
|
375
|
+
* // ],
|
|
364
376
|
* // inputArtifacts: [
|
|
365
377
|
* // {
|
|
366
378
|
* // name: "STRING_VALUE", // required
|
|
@@ -390,6 +402,9 @@ declare const UpdatePipelineCommand_base: {
|
|
|
390
402
|
* // configuration: {
|
|
391
403
|
* // "<keys>": "STRING_VALUE",
|
|
392
404
|
* // },
|
|
405
|
+
* // commands: [
|
|
406
|
+
* // "STRING_VALUE",
|
|
407
|
+
* // ],
|
|
393
408
|
* // inputArtifacts: [
|
|
394
409
|
* // {
|
|
395
410
|
* // name: "STRING_VALUE", // required
|
|
@@ -419,6 +434,9 @@ declare const UpdatePipelineCommand_base: {
|
|
|
419
434
|
* // configuration: {
|
|
420
435
|
* // "<keys>": "STRING_VALUE",
|
|
421
436
|
* // },
|
|
437
|
+
* // commands: [
|
|
438
|
+
* // "STRING_VALUE",
|
|
439
|
+
* // ],
|
|
422
440
|
* // inputArtifacts: [
|
|
423
441
|
* // {
|
|
424
442
|
* // name: "STRING_VALUE", // required
|
|
@@ -281,6 +281,9 @@ export interface ActionTypeId {
|
|
|
281
281
|
* <li>
|
|
282
282
|
* <p>Approval</p>
|
|
283
283
|
* </li>
|
|
284
|
+
* <li>
|
|
285
|
+
* <p>Compute</p>
|
|
286
|
+
* </li>
|
|
284
287
|
* </ul>
|
|
285
288
|
* @public
|
|
286
289
|
*/
|
|
@@ -1610,13 +1613,16 @@ export interface RuleTypeId {
|
|
|
1610
1613
|
/**
|
|
1611
1614
|
* <p>Represents information about the rule to be created for an associated condition. An
|
|
1612
1615
|
* example would be creating a new rule for an entry condition, such as a rule that checks
|
|
1613
|
-
* for a test result before allowing the run to enter the deployment stage
|
|
1616
|
+
* for a test result before allowing the run to enter the deployment stage. For more
|
|
1617
|
+
* information about conditions, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html">Stage conditions</a>.
|
|
1618
|
+
* For more information about rules, see the <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html">CodePipeline rule
|
|
1619
|
+
* reference</a>.</p>
|
|
1614
1620
|
* @public
|
|
1615
1621
|
*/
|
|
1616
1622
|
export interface RuleDeclaration {
|
|
1617
1623
|
/**
|
|
1618
1624
|
* <p>The name of the rule that is created for the condition, such as
|
|
1619
|
-
*
|
|
1625
|
+
* <code>VariableCheck</code>.</p>
|
|
1620
1626
|
* @public
|
|
1621
1627
|
*/
|
|
1622
1628
|
name: string | undefined;
|
|
@@ -1631,6 +1637,16 @@ export interface RuleDeclaration {
|
|
|
1631
1637
|
* @public
|
|
1632
1638
|
*/
|
|
1633
1639
|
configuration?: Record<string, string> | undefined;
|
|
1640
|
+
/**
|
|
1641
|
+
* <p>The shell commands to run with your commands rule in CodePipeline. All commands
|
|
1642
|
+
* are supported except multi-line formats. While CodeBuild logs and permissions
|
|
1643
|
+
* are used, you do not need to create any resources in CodeBuild.</p>
|
|
1644
|
+
* <note>
|
|
1645
|
+
* <p>Using compute time for this action will incur separate charges in CodeBuild.</p>
|
|
1646
|
+
* </note>
|
|
1647
|
+
* @public
|
|
1648
|
+
*/
|
|
1649
|
+
commands?: string[] | undefined;
|
|
1634
1650
|
/**
|
|
1635
1651
|
* <p>The input artifacts fields for the rule, such as specifying an input file for the
|
|
1636
1652
|
* rule.</p>
|
|
@@ -1655,7 +1671,9 @@ export interface RuleDeclaration {
|
|
|
1655
1671
|
}
|
|
1656
1672
|
/**
|
|
1657
1673
|
* <p>The condition for the stage. A condition is made up of the rules and the result for
|
|
1658
|
-
* the condition
|
|
1674
|
+
* the condition. For more information about conditions, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/stage-conditions.html">Stage conditions</a>.
|
|
1675
|
+
* For more information about rules, see the <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/rule-reference.html">CodePipeline rule
|
|
1676
|
+
* reference</a>.</p>
|
|
1659
1677
|
* @public
|
|
1660
1678
|
*/
|
|
1661
1679
|
export interface Condition {
|
|
@@ -2591,6 +2609,11 @@ export interface GetActionTypeInput {
|
|
|
2591
2609
|
* <code>Invoke</code>
|
|
2592
2610
|
* </p>
|
|
2593
2611
|
* </li>
|
|
2612
|
+
* <li>
|
|
2613
|
+
* <p>
|
|
2614
|
+
* <code>Compute</code>
|
|
2615
|
+
* </p>
|
|
2616
|
+
* </li>
|
|
2594
2617
|
* </ul>
|
|
2595
2618
|
* @public
|
|
2596
2619
|
*/
|
|
@@ -26,6 +26,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
26
26
|
utf8Encoder: (input: string | Uint8Array) => string;
|
|
27
27
|
disableHostPrefix: boolean;
|
|
28
28
|
serviceId: string;
|
|
29
|
+
profile?: string | undefined;
|
|
29
30
|
logger: import("@smithy/types").Logger;
|
|
30
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
27
27
|
utf8Encoder: (input: string | Uint8Array) => string;
|
|
28
28
|
disableHostPrefix: boolean;
|
|
29
29
|
serviceId: string;
|
|
30
|
+
profile?: string | undefined;
|
|
30
31
|
logger: import("@smithy/types").Logger;
|
|
31
32
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
@@ -20,6 +20,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
20
20
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
+
profile?: string | undefined;
|
|
23
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
24
25
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
@@ -329,6 +329,7 @@ export interface ClientDefaults
|
|
|
329
329
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
330
330
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
331
331
|
region?: string | __Provider<string>;
|
|
332
|
+
profile?: string;
|
|
332
333
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
333
334
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
334
335
|
maxAttempts?: number | __Provider<number>;
|
|
@@ -398,6 +398,7 @@ export interface RuleDeclaration {
|
|
|
398
398
|
name: string | undefined;
|
|
399
399
|
ruleTypeId: RuleTypeId | undefined;
|
|
400
400
|
configuration?: Record<string, string> | undefined;
|
|
401
|
+
commands?: string[] | undefined;
|
|
401
402
|
inputArtifacts?: InputArtifact[] | undefined;
|
|
402
403
|
roleArn?: string | undefined;
|
|
403
404
|
region?: string | undefined;
|
|
@@ -33,6 +33,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
33
33
|
utf8Encoder: (input: string | Uint8Array) => string;
|
|
34
34
|
disableHostPrefix: boolean;
|
|
35
35
|
serviceId: string;
|
|
36
|
+
profile?: string | undefined;
|
|
36
37
|
logger: import("@smithy/types").Logger;
|
|
37
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
38
39
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
@@ -38,6 +38,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
38
38
|
utf8Encoder: (input: string | Uint8Array) => string;
|
|
39
39
|
disableHostPrefix: boolean;
|
|
40
40
|
serviceId: string;
|
|
41
|
+
profile?: string | undefined;
|
|
41
42
|
logger: import("@smithy/types").Logger;
|
|
42
43
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
44
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
@@ -22,6 +22,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
22
22
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
24
|
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
+
profile?: string | undefined;
|
|
25
26
|
defaultUserAgentProvider: (
|
|
26
27
|
config?:
|
|
27
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codepipeline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codepipeline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.716.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-codepipeline",
|
|
@@ -20,40 +20,40 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.716.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.716.0",
|
|
25
|
+
"@aws-sdk/core": "3.716.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.716.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.714.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.714.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.714.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.716.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.714.0",
|
|
32
|
+
"@aws-sdk/types": "3.714.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.714.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.714.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.716.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.13",
|
|
37
37
|
"@smithy/core": "^2.5.5",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.1.2",
|
|
39
39
|
"@smithy/hash-node": "^3.0.11",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.11",
|
|
41
41
|
"@smithy/middleware-content-length": "^3.0.13",
|
|
42
|
-
"@smithy/middleware-endpoint": "^3.2.
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
42
|
+
"@smithy/middleware-endpoint": "^3.2.6",
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.31",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.11",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.11",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.12",
|
|
47
47
|
"@smithy/node-http-handler": "^3.3.2",
|
|
48
48
|
"@smithy/protocol-http": "^4.1.8",
|
|
49
|
-
"@smithy/smithy-client": "^3.5.
|
|
49
|
+
"@smithy/smithy-client": "^3.5.1",
|
|
50
50
|
"@smithy/types": "^3.7.2",
|
|
51
51
|
"@smithy/url-parser": "^3.0.11",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.31",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.31",
|
|
57
57
|
"@smithy/util-endpoints": "^2.1.7",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.11",
|
|
59
59
|
"@smithy/util-retry": "^3.0.11",
|