@aws-sdk/client-proton 3.55.0 → 3.63.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 +27 -0
- package/README.md +36 -46
- package/dist-cjs/protocols/Aws_json1_0.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +1 -1
- package/dist-types/Proton.d.ts +153 -162
- package/dist-types/ProtonClient.d.ts +36 -46
- package/dist-types/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +3 -3
- package/dist-types/commands/CancelEnvironmentDeploymentCommand.d.ts +4 -4
- package/dist-types/commands/CancelServiceInstanceDeploymentCommand.d.ts +4 -4
- package/dist-types/commands/CancelServicePipelineDeploymentCommand.d.ts +4 -4
- package/dist-types/commands/CreateEnvironmentAccountConnectionCommand.d.ts +5 -5
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +7 -8
- package/dist-types/commands/CreateEnvironmentTemplateCommand.d.ts +5 -4
- package/dist-types/commands/CreateEnvironmentTemplateVersionCommand.d.ts +2 -2
- package/dist-types/commands/CreateRepositoryCommand.d.ts +5 -3
- package/dist-types/commands/CreateServiceCommand.d.ts +4 -4
- package/dist-types/commands/CreateServiceTemplateCommand.d.ts +5 -5
- package/dist-types/commands/CreateServiceTemplateVersionCommand.d.ts +2 -2
- package/dist-types/commands/CreateTemplateSyncConfigCommand.d.ts +3 -4
- package/dist-types/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +3 -3
- package/dist-types/commands/DeleteEnvironmentTemplateVersionCommand.d.ts +4 -4
- package/dist-types/commands/DeleteServiceTemplateVersionCommand.d.ts +6 -6
- package/dist-types/commands/GetEnvironmentAccountConnectionCommand.d.ts +1 -1
- package/dist-types/commands/GetRepositorySyncStatusCommand.d.ts +8 -1
- package/dist-types/commands/GetServiceInstanceCommand.d.ts +1 -2
- package/dist-types/commands/ListEnvironmentAccountConnectionsCommand.d.ts +1 -1
- package/dist-types/commands/NotifyResourceDeploymentStatusChangeCommand.d.ts +2 -7
- package/dist-types/commands/RejectEnvironmentAccountConnectionCommand.d.ts +4 -4
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +19 -18
- package/dist-types/commands/UpdateServiceInstanceCommand.d.ts +5 -7
- package/dist-types/commands/UpdateServicePipelineCommand.d.ts +5 -7
- package/dist-types/models/models_0.d.ts +180 -227
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +18 -18
|
@@ -9,18 +9,20 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentOutput,
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>Update an environment.</p>
|
|
11
11
|
* <p>If the environment is associated with an environment account connection, <i>don't</i> update or include the
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
* <p>You can update either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code> parameter and value. You can’t
|
|
19
|
-
*
|
|
20
|
-
* <p>If the environment was
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
* <p>
|
|
12
|
+
* <code>protonServiceRoleArn</code> and <code>provisioningRepository</code> parameter to update or connect to an environment account connection.</p>
|
|
13
|
+
* <p>You can only update to a new environment account connection if that connection was created in the same environment account that the current
|
|
14
|
+
* environment account connection was created in. The account connection must also be associated with the current environment.</p>
|
|
15
|
+
* <p>If the environment <i>isn't</i> associated with an environment account connection, <i>don't</i> update or include the
|
|
16
|
+
* <code>environmentAccountConnectionId</code> parameter. You <i>can't</i> update or connect the environment to an environment account
|
|
17
|
+
* connection if it <i>isn't</i> already associated with an environment connection.</p>
|
|
18
|
+
* <p>You can update either the <code>environmentAccountConnectionId</code> or <code>protonServiceRoleArn</code> parameter and value. You can’t update
|
|
19
|
+
* both.</p>
|
|
20
|
+
* <p>If the environment was configured for Amazon Web Services-managed provisioning, omit the <code>provisioningRepository</code> parameter.</p>
|
|
21
|
+
* <p>If the environment was configured for self-managed provisioning, specify the <code>provisioningRepository</code> parameter and omit the
|
|
22
|
+
* <code>protonServiceRoleArn</code> and <code>environmentAccountConnectionId</code> parameters.</p>
|
|
23
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-environments.html">Environments</a> and <a href="https://docs.aws.amazon.com/proton/latest/adminguide/ag-works-prov-methods.html">Provisioning methods</a> in the <i>Proton Administrator
|
|
24
|
+
* Guide</i>.</p>
|
|
25
|
+
* <p>There are four modes for updating an environment. The <code>deploymentType</code> field defines the mode.</p>
|
|
24
26
|
* <dl>
|
|
25
27
|
* <dt/>
|
|
26
28
|
* <dd>
|
|
@@ -35,24 +37,23 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentOutput,
|
|
|
35
37
|
* <code>CURRENT_VERSION</code>
|
|
36
38
|
* </p>
|
|
37
39
|
* <p>In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are updated.
|
|
38
|
-
*
|
|
40
|
+
* <i>Don’t</i> include minor or major version parameters when you use this <code>deployment-type</code>.</p>
|
|
39
41
|
* </dd>
|
|
40
42
|
* <dt/>
|
|
41
43
|
* <dd>
|
|
42
44
|
* <p>
|
|
43
45
|
* <code>MINOR_VERSION</code>
|
|
44
46
|
* </p>
|
|
45
|
-
* <p>In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current major version
|
|
46
|
-
*
|
|
47
|
+
* <p>In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current major version in
|
|
48
|
+
* use, by default. You can also specify a different minor version of the current major version in use.</p>
|
|
47
49
|
* </dd>
|
|
48
50
|
* <dt/>
|
|
49
51
|
* <dd>
|
|
50
52
|
* <p>
|
|
51
53
|
* <code>MAJOR_VERSION</code>
|
|
52
54
|
* </p>
|
|
53
|
-
* <p>In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of the current
|
|
54
|
-
*
|
|
55
|
-
* (optional).</p>
|
|
55
|
+
* <p>In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of the current template,
|
|
56
|
+
* by default. You can also specify a different major version that's higher than the major version in use and a minor version.</p>
|
|
56
57
|
* </dd>
|
|
57
58
|
* </dl>
|
|
58
59
|
* @example
|
|
@@ -8,8 +8,7 @@ export interface UpdateServiceInstanceCommandOutput extends UpdateServiceInstanc
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Update a service instance.</p>
|
|
11
|
-
* <p>There are four modes for updating a service instance
|
|
12
|
-
* mode.</p>
|
|
11
|
+
* <p>There are four modes for updating a service instance. The <code>deploymentType</code> field defines the mode.</p>
|
|
13
12
|
* <dl>
|
|
14
13
|
* <dt/>
|
|
15
14
|
* <dd>
|
|
@@ -24,15 +23,15 @@ export interface UpdateServiceInstanceCommandOutput extends UpdateServiceInstanc
|
|
|
24
23
|
* <code>CURRENT_VERSION</code>
|
|
25
24
|
* </p>
|
|
26
25
|
* <p>In this mode, the service instance is deployed and updated with the new spec that you provide. Only requested parameters are updated.
|
|
27
|
-
*
|
|
26
|
+
* <i>Don’t</i> include minor or major version parameters when you use this <code>deployment-type</code>.</p>
|
|
28
27
|
* </dd>
|
|
29
28
|
* <dt/>
|
|
30
29
|
* <dd>
|
|
31
30
|
* <p>
|
|
32
31
|
* <code>MINOR_VERSION</code>
|
|
33
32
|
* </p>
|
|
34
|
-
* <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) minor version of the current major
|
|
35
|
-
*
|
|
33
|
+
* <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) minor version of the current major version
|
|
34
|
+
* in use, by default. You can also specify a different minor version of the current major version in use.</p>
|
|
36
35
|
* </dd>
|
|
37
36
|
* <dt/>
|
|
38
37
|
* <dd>
|
|
@@ -40,8 +39,7 @@ export interface UpdateServiceInstanceCommandOutput extends UpdateServiceInstanc
|
|
|
40
39
|
* <code>MAJOR_VERSION</code>
|
|
41
40
|
* </p>
|
|
42
41
|
* <p>In this mode, the service instance is deployed and updated with the published, recommended (latest) major and minor version of the current
|
|
43
|
-
*
|
|
44
|
-
* (optional).</p>
|
|
42
|
+
* template, by default. You can also specify a different major version that's higher than the major version in use and a minor version.</p>
|
|
45
43
|
* </dd>
|
|
46
44
|
* </dl>
|
|
47
45
|
* @example
|
|
@@ -8,8 +8,7 @@ export interface UpdateServicePipelineCommandOutput extends UpdateServicePipelin
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Update the service pipeline.</p>
|
|
11
|
-
* <p>There are four modes for updating a service pipeline
|
|
12
|
-
* mode.</p>
|
|
11
|
+
* <p>There are four modes for updating a service pipeline. The <code>deploymentType</code> field defines the mode.</p>
|
|
13
12
|
* <dl>
|
|
14
13
|
* <dt/>
|
|
15
14
|
* <dd>
|
|
@@ -24,15 +23,15 @@ export interface UpdateServicePipelineCommandOutput extends UpdateServicePipelin
|
|
|
24
23
|
* <code>CURRENT_VERSION</code>
|
|
25
24
|
* </p>
|
|
26
25
|
* <p>In this mode, the service pipeline is deployed and updated with the new spec that you provide. Only requested parameters are updated.
|
|
27
|
-
*
|
|
26
|
+
* <i>Don’t</i> include major or minor version parameters when you use this <code>deployment-type</code>.</p>
|
|
28
27
|
* </dd>
|
|
29
28
|
* <dt/>
|
|
30
29
|
* <dd>
|
|
31
30
|
* <p>
|
|
32
31
|
* <code>MINOR_VERSION</code>
|
|
33
32
|
* </p>
|
|
34
|
-
* <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) minor version of the current major
|
|
35
|
-
*
|
|
33
|
+
* <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) minor version of the current major version
|
|
34
|
+
* in use, by default. You can specify a different minor version of the current major version in use.</p>
|
|
36
35
|
* </dd>
|
|
37
36
|
* <dt/>
|
|
38
37
|
* <dd>
|
|
@@ -40,8 +39,7 @@ export interface UpdateServicePipelineCommandOutput extends UpdateServicePipelin
|
|
|
40
39
|
* <code>MAJOR_VERSION</code>
|
|
41
40
|
* </p>
|
|
42
41
|
* <p>In this mode, the service pipeline is deployed and updated with the published, recommended (latest) major and minor version of the current
|
|
43
|
-
*
|
|
44
|
-
* (optional).</p>
|
|
42
|
+
* template by default. You can specify a different major version that's higher than the major version in use and a minor version.</p>
|
|
45
43
|
* </dd>
|
|
46
44
|
* </dl>
|
|
47
45
|
* @example
|