@aws-sdk/client-proton 3.179.0 → 3.181.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 +25 -0
- package/README.md +1 -3
- package/dist-cjs/protocols/Aws_json1_0.js +84 -75
- package/dist-es/protocols/Aws_json1_0.js +91 -76
- package/dist-types/Proton.d.ts +78 -71
- package/dist-types/ProtonClient.d.ts +1 -3
- package/dist-types/commands/AcceptEnvironmentAccountConnectionCommand.d.ts +2 -2
- package/dist-types/commands/CancelComponentDeploymentCommand.d.ts +2 -2
- package/dist-types/commands/CancelEnvironmentDeploymentCommand.d.ts +2 -2
- package/dist-types/commands/CancelServiceInstanceDeploymentCommand.d.ts +2 -1
- package/dist-types/commands/CancelServicePipelineDeploymentCommand.d.ts +2 -1
- package/dist-types/commands/CreateComponentCommand.d.ts +2 -2
- package/dist-types/commands/CreateEnvironmentAccountConnectionCommand.d.ts +1 -1
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateEnvironmentTemplateCommand.d.ts +3 -3
- package/dist-types/commands/CreateRepositoryCommand.d.ts +6 -5
- package/dist-types/commands/CreateServiceCommand.d.ts +2 -3
- package/dist-types/commands/CreateServiceTemplateCommand.d.ts +2 -2
- package/dist-types/commands/CreateTemplateSyncConfigCommand.d.ts +5 -3
- package/dist-types/commands/DeleteComponentCommand.d.ts +2 -2
- package/dist-types/commands/DeleteEnvironmentAccountConnectionCommand.d.ts +2 -2
- package/dist-types/commands/DeleteServiceCommand.d.ts +2 -2
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +1 -1
- package/dist-types/commands/GetComponentCommand.d.ts +2 -2
- package/dist-types/commands/GetEnvironmentAccountConnectionCommand.d.ts +2 -2
- package/dist-types/commands/GetRepositoryCommand.d.ts +1 -1
- package/dist-types/commands/GetRepositorySyncStatusCommand.d.ts +2 -2
- package/dist-types/commands/ListComponentOutputsCommand.d.ts +2 -2
- package/dist-types/commands/ListComponentProvisionedResourcesCommand.d.ts +2 -2
- package/dist-types/commands/ListComponentsCommand.d.ts +2 -2
- package/dist-types/commands/ListEnvironmentAccountConnectionsCommand.d.ts +2 -2
- package/dist-types/commands/ListRepositoriesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/NotifyResourceDeploymentStatusChangeCommand.d.ts +1 -1
- package/dist-types/commands/RejectEnvironmentAccountConnectionCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateComponentCommand.d.ts +2 -2
- package/dist-types/commands/UpdateEnvironmentAccountConnectionCommand.d.ts +2 -2
- package/dist-types/commands/UpdateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateServiceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateServiceInstanceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateTemplateSyncConfigCommand.d.ts +3 -1
- package/dist-types/models/models_0.d.ts +102 -87
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +7 -7
|
@@ -7,11 +7,12 @@ export interface CreateRepositoryCommandInput extends CreateRepositoryInput {
|
|
|
7
7
|
export interface CreateRepositoryCommandOutput extends CreateRepositoryOutput, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Create and register a link to a repository
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
10
|
+
* <p>Create and register a link to a repository. Proton uses the link to repeatedly access the repository, to either push to it (self-managed
|
|
11
|
+
* provisioning) or pull from it (template sync). You can share a linked repository across multiple resources (like environments using self-managed
|
|
12
|
+
* provisioning, or synced templates). When you create a repository link, Proton creates a <a href="https://docs.aws.amazon.com/proton/latest/userguide/using-service-linked-roles.html">service-linked role</a> for you.</p>
|
|
13
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html#ag-works-prov-methods-self">Self-managed provisioning</a>, <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-template-authoring.html#ag-template-bundles">Template bundles</a>, and
|
|
14
|
+
* <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-template-sync-configs.html">Template sync configurations</a> in the <i>Proton
|
|
15
|
+
* User Guide</i>.</p>
|
|
15
16
|
* @example
|
|
16
17
|
* Use a bare-bones client and the command you need to make an API call.
|
|
17
18
|
* ```javascript
|
|
@@ -8,9 +8,8 @@ export interface CreateServiceCommandOutput extends CreateServiceOutput, __Metad
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Create an Proton service. An Proton service is an instantiation of a service template and often includes several service instances and pipeline.
|
|
11
|
-
* For more information, see <a href="https://docs.aws.amazon.com/proton/latest/
|
|
12
|
-
*
|
|
13
|
-
* User Guide</i>.</p>
|
|
11
|
+
* For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-services.html">Services</a> in the <i>Proton User
|
|
12
|
+
* Guide</i>.</p>
|
|
14
13
|
* @example
|
|
15
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
15
|
* ```javascript
|
|
@@ -10,8 +10,8 @@ export interface CreateServiceTemplateCommandOutput extends CreateServiceTemplat
|
|
|
10
10
|
* <p>Create a service template. The administrator creates a service template to define standardized infrastructure and an optional CI/CD service pipeline.
|
|
11
11
|
* Developers, in turn, select the service template from Proton. If the selected service template includes a service pipeline definition, they provide a
|
|
12
12
|
* link to their source code repository. Proton then deploys and manages the infrastructure defined by the selected service template. For more
|
|
13
|
-
* information, see <a href="https://docs.aws.amazon.com/proton/latest/
|
|
14
|
-
*
|
|
13
|
+
* information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-templates.html">Proton templates</a> in the <i>Proton User
|
|
14
|
+
* Guide</i>.</p>
|
|
15
15
|
* @example
|
|
16
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
17
17
|
* ```javascript
|
|
@@ -7,9 +7,11 @@ export interface CreateTemplateSyncConfigCommandInput extends CreateTemplateSync
|
|
|
7
7
|
export interface CreateTemplateSyncConfigCommandOutput extends CreateTemplateSyncConfigOutput, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Set up a template to create new template versions automatically
|
|
11
|
-
*
|
|
12
|
-
*
|
|
10
|
+
* <p>Set up a template to create new template versions automatically by tracking a linked repository. A linked repository is a repository that has been
|
|
11
|
+
* registered with Proton. For more information, see <a>CreateRepository</a>.</p>
|
|
12
|
+
* <p>When a commit is pushed to your linked repository, Proton checks for changes to your repository template bundles. If it detects a template bundle
|
|
13
|
+
* change, a new major or minor version of its template is created, if the version doesn’t already exist. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-template-sync-configs.html">Template sync configurations</a> in the <i>Proton User
|
|
14
|
+
* Guide</i>.</p>
|
|
13
15
|
* @example
|
|
14
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
17
|
* ```javascript
|
|
@@ -9,8 +9,8 @@ export interface DeleteComponentCommandOutput extends DeleteComponentOutput, __M
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>Delete an Proton component resource.</p>
|
|
11
11
|
* <p>For more information about components, see
|
|
12
|
-
* <a href="https://docs.aws.amazon.com/proton/latest/
|
|
13
|
-
* <i>Proton
|
|
12
|
+
* <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html">Proton components</a> in the
|
|
13
|
+
* <i>Proton User Guide</i>.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -11,8 +11,8 @@ export interface DeleteEnvironmentAccountConnectionCommandOutput extends DeleteE
|
|
|
11
11
|
* <p>After you delete an environment account connection that’s in use by an Proton environment, Proton <i>can’t</i> manage the
|
|
12
12
|
* environment infrastructure resources until a new environment account connection is accepted for the environment account and associated environment. You're
|
|
13
13
|
* responsible for cleaning up provisioned resources that remain without an environment connection.</p>
|
|
14
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/
|
|
15
|
-
* connections</a> in the <i>Proton
|
|
14
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html">Environment account
|
|
15
|
+
* connections</a> in the <i>Proton User guide</i>.</p>
|
|
16
16
|
* @example
|
|
17
17
|
* Use a bare-bones client and the command you need to make an API call.
|
|
18
18
|
* ```javascript
|
|
@@ -11,8 +11,8 @@ export interface DeleteServiceCommandOutput extends DeleteServiceOutput, __Metad
|
|
|
11
11
|
* <note>
|
|
12
12
|
* <p>You can't delete a service if it has any service instances that have components attached to them.</p>
|
|
13
13
|
* <p>For more information about components, see
|
|
14
|
-
* <a href="https://docs.aws.amazon.com/proton/latest/
|
|
15
|
-
* <i>Proton
|
|
14
|
+
* <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html">Proton components</a> in the
|
|
15
|
+
* <i>Proton User Guide</i>.</p>
|
|
16
16
|
* </note>
|
|
17
17
|
* @example
|
|
18
18
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,7 +7,7 @@ export interface GetAccountSettingsCommandInput extends GetAccountSettingsInput
|
|
|
7
7
|
export interface GetAccountSettingsCommandOutput extends GetAccountSettingsOutput, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Get detail data for
|
|
10
|
+
* <p>Get detail data for Proton account-wide settings.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -9,8 +9,8 @@ export interface GetComponentCommandOutput extends GetComponentOutput, __Metadat
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>Get detailed data for a component.</p>
|
|
11
11
|
* <p>For more information about components, see
|
|
12
|
-
* <a href="https://docs.aws.amazon.com/proton/latest/
|
|
13
|
-
* <i>Proton
|
|
12
|
+
* <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html">Proton components</a> in the
|
|
13
|
+
* <i>Proton User Guide</i>.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -8,8 +8,8 @@ export interface GetEnvironmentAccountConnectionCommandOutput extends GetEnviron
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>In an environment account, get the detailed data for an environment account connection.</p>
|
|
11
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/
|
|
12
|
-
* connections</a> in the <i>Proton
|
|
11
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html">Environment account
|
|
12
|
+
* connections</a> in the <i>Proton User guide</i>.</p>
|
|
13
13
|
* @example
|
|
14
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
15
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface GetRepositoryCommandInput extends GetRepositoryInput {
|
|
|
7
7
|
export interface GetRepositoryCommandOutput extends GetRepositoryOutput, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Get detail data for a repository.</p>
|
|
10
|
+
* <p>Get detail data for a linked repository.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -12,8 +12,8 @@ export interface GetRepositorySyncStatusCommandOutput extends GetRepositorySyncS
|
|
|
12
12
|
* <p>A repository sync status isn't tied to the Proton Repository resource (or any other Proton resource). Therefore, tags on an Proton Repository resource
|
|
13
13
|
* have no effect on this action. Specifically, you can't use these tags to control access to this action using Attribute-based access control
|
|
14
14
|
* (ABAC).</p>
|
|
15
|
-
* <p>For more information about ABAC, see <a href="https://docs.aws.amazon.com/proton/latest/
|
|
16
|
-
*
|
|
15
|
+
* <p>For more information about ABAC, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/security_iam_service-with-iam.html#security_iam_service-with-iam-tags">ABAC</a> in the <i>Proton User
|
|
16
|
+
* Guide</i>.</p>
|
|
17
17
|
* </note>
|
|
18
18
|
* @example
|
|
19
19
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -9,8 +9,8 @@ export interface ListComponentOutputsCommandOutput extends ListComponentOutputsO
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>Get a list of component Infrastructure as Code (IaC) outputs.</p>
|
|
11
11
|
* <p>For more information about components, see
|
|
12
|
-
* <a href="https://docs.aws.amazon.com/proton/latest/
|
|
13
|
-
* <i>Proton
|
|
12
|
+
* <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html">Proton components</a> in the
|
|
13
|
+
* <i>Proton User Guide</i>.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -9,8 +9,8 @@ export interface ListComponentProvisionedResourcesCommandOutput extends ListComp
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>List provisioned resources for a component with details.</p>
|
|
11
11
|
* <p>For more information about components, see
|
|
12
|
-
* <a href="https://docs.aws.amazon.com/proton/latest/
|
|
13
|
-
* <i>Proton
|
|
12
|
+
* <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html">Proton components</a> in the
|
|
13
|
+
* <i>Proton User Guide</i>.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -9,8 +9,8 @@ export interface ListComponentsCommandOutput extends ListComponentsOutput, __Met
|
|
|
9
9
|
/**
|
|
10
10
|
* <p>List components with summary data. You can filter the result list by environment, service, or a single service instance.</p>
|
|
11
11
|
* <p>For more information about components, see
|
|
12
|
-
* <a href="https://docs.aws.amazon.com/proton/latest/
|
|
13
|
-
* <i>Proton
|
|
12
|
+
* <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html">Proton components</a> in the
|
|
13
|
+
* <i>Proton User Guide</i>.</p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -8,8 +8,8 @@ export interface ListEnvironmentAccountConnectionsCommandOutput extends ListEnvi
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>View a list of environment account connections.</p>
|
|
11
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/
|
|
12
|
-
* connections</a> in the <i>Proton
|
|
11
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html">Environment account
|
|
12
|
+
* connections</a> in the <i>Proton User guide</i>.</p>
|
|
13
13
|
* @example
|
|
14
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
15
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface ListRepositoriesCommandInput extends ListRepositoriesInput {
|
|
|
7
7
|
export interface ListRepositoriesCommandOutput extends ListRepositoriesOutput, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>List repositories with detail data.</p>
|
|
10
|
+
* <p>List linked repositories with detail data.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -7,7 +7,8 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceInpu
|
|
|
7
7
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>List tags for a resource. For more information, see <
|
|
10
|
+
* <p>List tags for a resource. For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">Proton resources and
|
|
11
|
+
* tagging</a> in the <i>Proton User Guide</i>.</p>
|
|
11
12
|
* @example
|
|
12
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
14
|
* ```javascript
|
|
@@ -8,7 +8,7 @@ export interface NotifyResourceDeploymentStatusChangeCommandOutput extends Notif
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Notify Proton of status changes to a provisioned resource when you use self-managed provisioning.</p>
|
|
11
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/
|
|
11
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html#ag-works-prov-methods-self">Self-managed provisioning</a> in the <i>Proton User Guide</i>.</p>
|
|
12
12
|
* @example
|
|
13
13
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
14
|
* ```javascript
|
|
@@ -11,8 +11,8 @@ export interface RejectEnvironmentAccountConnectionCommandOutput extends RejectE
|
|
|
11
11
|
* <p>After you reject an environment account connection request, you <i>can't</i> accept or use the rejected environment account
|
|
12
12
|
* connection.</p>
|
|
13
13
|
* <p>You <i>can’t</i> reject an environment account connection that's connected to an environment.</p>
|
|
14
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/
|
|
15
|
-
* connections</a> in the <i>Proton
|
|
14
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html">Environment account
|
|
15
|
+
* connections</a> in the <i>Proton User guide</i>.</p>
|
|
16
16
|
* @example
|
|
17
17
|
* Use a bare-bones client and the command you need to make an API call.
|
|
18
18
|
* ```javascript
|
|
@@ -8,7 +8,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Tag a resource. A tag is a key-value pair of metadata that you associate with an Proton resource.</p>
|
|
11
|
-
* <p>For more information, see <
|
|
11
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">Proton resources and tagging</a> in the
|
|
12
|
+
* <i>Proton User Guide</i>.</p>
|
|
12
13
|
* @example
|
|
13
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
15
|
* ```javascript
|
|
@@ -8,7 +8,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>Remove a customer tag from a resource. A tag is a key-value pair of metadata associated with an Proton resource.</p>
|
|
11
|
-
* <p>For more information, see <
|
|
11
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/resources.html">Proton resources and tagging</a> in the
|
|
12
|
+
* <i>Proton User Guide</i>.</p>
|
|
12
13
|
* @example
|
|
13
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
14
15
|
* ```javascript
|
|
@@ -7,7 +7,7 @@ export interface UpdateAccountSettingsCommandInput extends UpdateAccountSettings
|
|
|
7
7
|
export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSettingsOutput, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Update
|
|
10
|
+
* <p>Update Proton settings that are used for multiple services in the Amazon Web Services account.</p>
|
|
11
11
|
* @example
|
|
12
12
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
13
|
* ```javascript
|
|
@@ -14,8 +14,8 @@ export interface UpdateComponentCommandOutput extends UpdateComponentOutput, __M
|
|
|
14
14
|
* <code>IN_PROGRESS</code>.</p>
|
|
15
15
|
* </note>
|
|
16
16
|
* <p>For more information about components, see
|
|
17
|
-
* <a href="https://docs.aws.amazon.com/proton/latest/
|
|
18
|
-
* <i>Proton
|
|
17
|
+
* <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html">Proton components</a> in the
|
|
18
|
+
* <i>Proton User Guide</i>.</p>
|
|
19
19
|
* @example
|
|
20
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
21
21
|
* ```javascript
|
|
@@ -8,8 +8,8 @@ export interface UpdateEnvironmentAccountConnectionCommandOutput extends UpdateE
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p>In an environment account, update an environment account connection to use a new IAM role.</p>
|
|
11
|
-
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/
|
|
12
|
-
* connections</a> in the <i>Proton
|
|
11
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html">Environment account
|
|
12
|
+
* connections</a> in the <i>Proton User guide</i>.</p>
|
|
13
13
|
* @example
|
|
14
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
15
|
* ```javascript
|
|
@@ -20,7 +20,7 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentOutput,
|
|
|
20
20
|
* <p>If the environment was configured for Amazon Web Services-managed provisioning, omit the <code>provisioningRepository</code> parameter.</p>
|
|
21
21
|
* <p>If the environment was configured for self-managed provisioning, specify the <code>provisioningRepository</code> parameter and omit the
|
|
22
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/
|
|
23
|
+
* <p>For more information, see <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-environments.html">Environments</a> and <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html">Provisioning methods</a> in the <i>Proton User
|
|
24
24
|
* Guide</i>.</p>
|
|
25
25
|
* <p>There are four modes for updating an environment. The <code>deploymentType</code> field defines the mode.</p>
|
|
26
26
|
* <dl>
|
|
@@ -16,8 +16,8 @@ export interface UpdateServiceCommandOutput extends UpdateServiceOutput, __Metad
|
|
|
16
16
|
* <note>
|
|
17
17
|
* <p>You can't delete a service instance (remove it from the spec) if it has an attached component.</p>
|
|
18
18
|
* <p>For more information about components, see
|
|
19
|
-
* <a href="https://docs.aws.amazon.com/proton/latest/
|
|
20
|
-
* <i>Proton
|
|
19
|
+
* <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html">Proton components</a> in the
|
|
20
|
+
* <i>Proton User Guide</i>.</p>
|
|
21
21
|
* </note>
|
|
22
22
|
* @example
|
|
23
23
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -13,8 +13,8 @@ export interface UpdateServiceInstanceCommandOutput extends UpdateServiceInstanc
|
|
|
13
13
|
* <p>You can't update a service instance while its deployment status, or the deployment status of a component attached to it, is
|
|
14
14
|
* <code>IN_PROGRESS</code>.</p>
|
|
15
15
|
* <p>For more information about components, see
|
|
16
|
-
* <a href="https://docs.aws.amazon.com/proton/latest/
|
|
17
|
-
* <i>Proton
|
|
16
|
+
* <a href="https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html">Proton components</a> in the
|
|
17
|
+
* <i>Proton User Guide</i>.</p>
|
|
18
18
|
* </note>
|
|
19
19
|
* @example
|
|
20
20
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -7,7 +7,9 @@ export interface UpdateTemplateSyncConfigCommandInput extends UpdateTemplateSync
|
|
|
7
7
|
export interface UpdateTemplateSyncConfigCommandOutput extends UpdateTemplateSyncConfigOutput, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p>Update template sync configuration parameters, except for the <code>templateName</code> and <code>templateType</code
|
|
10
|
+
* <p>Update template sync configuration parameters, except for the <code>templateName</code> and <code>templateType</code>. Repository details (branch,
|
|
11
|
+
* name, and provider) should be of a linked repository. A linked repository is a repository that has been registered with Proton. For more information,
|
|
12
|
+
* see <a>CreateRepository</a>.</p>
|
|
11
13
|
* @example
|
|
12
14
|
* Use a bare-bones client and the command you need to make an API call.
|
|
13
15
|
* ```javascript
|