cdk-comprehend-s3olap 2.0.110 → 2.0.111
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/.jsii +4 -4
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +14 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/acm-2015-12-08.min.json +46 -2
- package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +39 -9
- package/node_modules/aws-sdk/apis/fsx-2018-03-01.min.json +404 -78
- package/node_modules/aws-sdk/apis/fsx-2018-03-01.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/migrationhuborchestrator-2021-08-28.examples.json +5 -0
- package/node_modules/aws-sdk/apis/migrationhuborchestrator-2021-08-28.min.json +1461 -0
- package/node_modules/aws-sdk/apis/migrationhuborchestrator-2021-08-28.paginators.json +46 -0
- package/node_modules/aws-sdk/apis/migrationhuborchestrator-2021-08-28.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/proton-2020-07-20.min.json +3 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +811 -777
- package/node_modules/aws-sdk/apis/translate-2017-07-01.min.json +119 -41
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +35 -34
- package/node_modules/aws-sdk/clients/acm.d.ts +94 -17
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/emrserverless.d.ts +25 -0
- package/node_modules/aws-sdk/clients/fsx.d.ts +406 -30
- package/node_modules/aws-sdk/clients/migrationhuborchestrator.d.ts +1840 -0
- package/node_modules/aws-sdk/clients/migrationhuborchestrator.js +19 -0
- package/node_modules/aws-sdk/clients/polly.d.ts +2 -2
- package/node_modules/aws-sdk/clients/proton.d.ts +132 -127
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +45 -2
- package/node_modules/aws-sdk/clients/secretsmanager.d.ts +44 -44
- package/node_modules/aws-sdk/clients/translate.d.ts +53 -0
- package/node_modules/aws-sdk/clients/workspaces.d.ts +6 -1
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +6 -9
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +60 -19
- package/node_modules/aws-sdk/dist/aws-sdk.js +175 -53
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +96 -96
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/event_listeners.js +4 -6
- package/node_modules/aws-sdk/lib/model/api.js +0 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/bin/esbuild +1 -1
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.d.ts +7 -2
- package/node_modules/esbuild/lib/main.js +8 -8
- package/node_modules/esbuild/package.json +23 -23
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +7 -7
@@ -13,75 +13,75 @@ declare class Proton extends Service {
|
|
13
13
|
constructor(options?: Proton.Types.ClientConfiguration)
|
14
14
|
config: Config & Proton.Types.ClientConfiguration;
|
15
15
|
/**
|
16
|
-
* In a management account, an environment account connection request is accepted. When the environment account connection request is accepted, Proton can use the associated IAM role to provision environment infrastructure resources in the associated environment account. For more information, see Environment account connections in the Proton
|
16
|
+
* In a management account, an environment account connection request is accepted. When the environment account connection request is accepted, Proton can use the associated IAM role to provision environment infrastructure resources in the associated environment account. For more information, see Environment account connections in the Proton User guide.
|
17
17
|
*/
|
18
18
|
acceptEnvironmentAccountConnection(params: Proton.Types.AcceptEnvironmentAccountConnectionInput, callback?: (err: AWSError, data: Proton.Types.AcceptEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.AcceptEnvironmentAccountConnectionOutput, AWSError>;
|
19
19
|
/**
|
20
|
-
* In a management account, an environment account connection request is accepted. When the environment account connection request is accepted, Proton can use the associated IAM role to provision environment infrastructure resources in the associated environment account. For more information, see Environment account connections in the Proton
|
20
|
+
* In a management account, an environment account connection request is accepted. When the environment account connection request is accepted, Proton can use the associated IAM role to provision environment infrastructure resources in the associated environment account. For more information, see Environment account connections in the Proton User guide.
|
21
21
|
*/
|
22
22
|
acceptEnvironmentAccountConnection(callback?: (err: AWSError, data: Proton.Types.AcceptEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.AcceptEnvironmentAccountConnectionOutput, AWSError>;
|
23
23
|
/**
|
24
|
-
* Attempts to cancel a component deployment (for a component that is in the IN_PROGRESS deployment status). For more information about components, see Proton components in the Proton
|
24
|
+
* Attempts to cancel a component deployment (for a component that is in the IN_PROGRESS deployment status). For more information about components, see Proton components in the Proton User Guide.
|
25
25
|
*/
|
26
26
|
cancelComponentDeployment(params: Proton.Types.CancelComponentDeploymentInput, callback?: (err: AWSError, data: Proton.Types.CancelComponentDeploymentOutput) => void): Request<Proton.Types.CancelComponentDeploymentOutput, AWSError>;
|
27
27
|
/**
|
28
|
-
* Attempts to cancel a component deployment (for a component that is in the IN_PROGRESS deployment status). For more information about components, see Proton components in the Proton
|
28
|
+
* Attempts to cancel a component deployment (for a component that is in the IN_PROGRESS deployment status). For more information about components, see Proton components in the Proton User Guide.
|
29
29
|
*/
|
30
30
|
cancelComponentDeployment(callback?: (err: AWSError, data: Proton.Types.CancelComponentDeploymentOutput) => void): Request<Proton.Types.CancelComponentDeploymentOutput, AWSError>;
|
31
31
|
/**
|
32
|
-
* Attempts to cancel an environment deployment on an UpdateEnvironment action, if the deployment is IN_PROGRESS. For more information, see Update an environment in the Proton
|
32
|
+
* Attempts to cancel an environment deployment on an UpdateEnvironment action, if the deployment is IN_PROGRESS. For more information, see Update an environment in the Proton User guide. The following list includes potential cancellation scenarios. If the cancellation attempt succeeds, the resulting deployment state is CANCELLED. If the cancellation attempt fails, the resulting deployment state is FAILED. If the current UpdateEnvironment action succeeds before the cancellation attempt starts, the resulting deployment state is SUCCEEDED and the cancellation attempt has no effect.
|
33
33
|
*/
|
34
34
|
cancelEnvironmentDeployment(params: Proton.Types.CancelEnvironmentDeploymentInput, callback?: (err: AWSError, data: Proton.Types.CancelEnvironmentDeploymentOutput) => void): Request<Proton.Types.CancelEnvironmentDeploymentOutput, AWSError>;
|
35
35
|
/**
|
36
|
-
* Attempts to cancel an environment deployment on an UpdateEnvironment action, if the deployment is IN_PROGRESS. For more information, see Update an environment in the Proton
|
36
|
+
* Attempts to cancel an environment deployment on an UpdateEnvironment action, if the deployment is IN_PROGRESS. For more information, see Update an environment in the Proton User guide. The following list includes potential cancellation scenarios. If the cancellation attempt succeeds, the resulting deployment state is CANCELLED. If the cancellation attempt fails, the resulting deployment state is FAILED. If the current UpdateEnvironment action succeeds before the cancellation attempt starts, the resulting deployment state is SUCCEEDED and the cancellation attempt has no effect.
|
37
37
|
*/
|
38
38
|
cancelEnvironmentDeployment(callback?: (err: AWSError, data: Proton.Types.CancelEnvironmentDeploymentOutput) => void): Request<Proton.Types.CancelEnvironmentDeploymentOutput, AWSError>;
|
39
39
|
/**
|
40
|
-
* Attempts to cancel a service instance deployment on an UpdateServiceInstance action, if the deployment is IN_PROGRESS. For more information, see Update a service instance in the Proton
|
40
|
+
* Attempts to cancel a service instance deployment on an UpdateServiceInstance action, if the deployment is IN_PROGRESS. For more information, see Update a service instance in the Proton User guide. The following list includes potential cancellation scenarios. If the cancellation attempt succeeds, the resulting deployment state is CANCELLED. If the cancellation attempt fails, the resulting deployment state is FAILED. If the current UpdateServiceInstance action succeeds before the cancellation attempt starts, the resulting deployment state is SUCCEEDED and the cancellation attempt has no effect.
|
41
41
|
*/
|
42
42
|
cancelServiceInstanceDeployment(params: Proton.Types.CancelServiceInstanceDeploymentInput, callback?: (err: AWSError, data: Proton.Types.CancelServiceInstanceDeploymentOutput) => void): Request<Proton.Types.CancelServiceInstanceDeploymentOutput, AWSError>;
|
43
43
|
/**
|
44
|
-
* Attempts to cancel a service instance deployment on an UpdateServiceInstance action, if the deployment is IN_PROGRESS. For more information, see Update a service instance in the Proton
|
44
|
+
* Attempts to cancel a service instance deployment on an UpdateServiceInstance action, if the deployment is IN_PROGRESS. For more information, see Update a service instance in the Proton User guide. The following list includes potential cancellation scenarios. If the cancellation attempt succeeds, the resulting deployment state is CANCELLED. If the cancellation attempt fails, the resulting deployment state is FAILED. If the current UpdateServiceInstance action succeeds before the cancellation attempt starts, the resulting deployment state is SUCCEEDED and the cancellation attempt has no effect.
|
45
45
|
*/
|
46
46
|
cancelServiceInstanceDeployment(callback?: (err: AWSError, data: Proton.Types.CancelServiceInstanceDeploymentOutput) => void): Request<Proton.Types.CancelServiceInstanceDeploymentOutput, AWSError>;
|
47
47
|
/**
|
48
|
-
* Attempts to cancel a service pipeline deployment on an UpdateServicePipeline action, if the deployment is IN_PROGRESS. For more information, see Update a service pipeline in the Proton
|
48
|
+
* Attempts to cancel a service pipeline deployment on an UpdateServicePipeline action, if the deployment is IN_PROGRESS. For more information, see Update a service pipeline in the Proton User guide. The following list includes potential cancellation scenarios. If the cancellation attempt succeeds, the resulting deployment state is CANCELLED. If the cancellation attempt fails, the resulting deployment state is FAILED. If the current UpdateServicePipeline action succeeds before the cancellation attempt starts, the resulting deployment state is SUCCEEDED and the cancellation attempt has no effect.
|
49
49
|
*/
|
50
50
|
cancelServicePipelineDeployment(params: Proton.Types.CancelServicePipelineDeploymentInput, callback?: (err: AWSError, data: Proton.Types.CancelServicePipelineDeploymentOutput) => void): Request<Proton.Types.CancelServicePipelineDeploymentOutput, AWSError>;
|
51
51
|
/**
|
52
|
-
* Attempts to cancel a service pipeline deployment on an UpdateServicePipeline action, if the deployment is IN_PROGRESS. For more information, see Update a service pipeline in the Proton
|
52
|
+
* Attempts to cancel a service pipeline deployment on an UpdateServicePipeline action, if the deployment is IN_PROGRESS. For more information, see Update a service pipeline in the Proton User guide. The following list includes potential cancellation scenarios. If the cancellation attempt succeeds, the resulting deployment state is CANCELLED. If the cancellation attempt fails, the resulting deployment state is FAILED. If the current UpdateServicePipeline action succeeds before the cancellation attempt starts, the resulting deployment state is SUCCEEDED and the cancellation attempt has no effect.
|
53
53
|
*/
|
54
54
|
cancelServicePipelineDeployment(callback?: (err: AWSError, data: Proton.Types.CancelServicePipelineDeploymentOutput) => void): Request<Proton.Types.CancelServicePipelineDeploymentOutput, AWSError>;
|
55
55
|
/**
|
56
|
-
* Create an Proton component. A component is an infrastructure extension for a service instance. For more information about components, see Proton components in the Proton
|
56
|
+
* Create an Proton component. A component is an infrastructure extension for a service instance. For more information about components, see Proton components in the Proton User Guide.
|
57
57
|
*/
|
58
58
|
createComponent(params: Proton.Types.CreateComponentInput, callback?: (err: AWSError, data: Proton.Types.CreateComponentOutput) => void): Request<Proton.Types.CreateComponentOutput, AWSError>;
|
59
59
|
/**
|
60
|
-
* Create an Proton component. A component is an infrastructure extension for a service instance. For more information about components, see Proton components in the Proton
|
60
|
+
* Create an Proton component. A component is an infrastructure extension for a service instance. For more information about components, see Proton components in the Proton User Guide.
|
61
61
|
*/
|
62
62
|
createComponent(callback?: (err: AWSError, data: Proton.Types.CreateComponentOutput) => void): Request<Proton.Types.CreateComponentOutput, AWSError>;
|
63
63
|
/**
|
64
|
-
* Deploy a new environment. An Proton environment is created from an environment template that defines infrastructure and resources that can be shared across services. You can provision environments using the following methods: Amazon Web Services-managed provisioning: Proton makes direct calls to provision your resources. Self-managed provisioning: Proton makes pull requests on your repository to provide compiled infrastructure as code (IaC) files that your IaC engine uses to provision resources. For more information, see Environments and Provisioning methods in the Proton
|
64
|
+
* Deploy a new environment. An Proton environment is created from an environment template that defines infrastructure and resources that can be shared across services. You can provision environments using the following methods: Amazon Web Services-managed provisioning: Proton makes direct calls to provision your resources. Self-managed provisioning: Proton makes pull requests on your repository to provide compiled infrastructure as code (IaC) files that your IaC engine uses to provision resources. For more information, see Environments and Provisioning methods in the Proton User Guide.
|
65
65
|
*/
|
66
66
|
createEnvironment(params: Proton.Types.CreateEnvironmentInput, callback?: (err: AWSError, data: Proton.Types.CreateEnvironmentOutput) => void): Request<Proton.Types.CreateEnvironmentOutput, AWSError>;
|
67
67
|
/**
|
68
|
-
* Deploy a new environment. An Proton environment is created from an environment template that defines infrastructure and resources that can be shared across services. You can provision environments using the following methods: Amazon Web Services-managed provisioning: Proton makes direct calls to provision your resources. Self-managed provisioning: Proton makes pull requests on your repository to provide compiled infrastructure as code (IaC) files that your IaC engine uses to provision resources. For more information, see Environments and Provisioning methods in the Proton
|
68
|
+
* Deploy a new environment. An Proton environment is created from an environment template that defines infrastructure and resources that can be shared across services. You can provision environments using the following methods: Amazon Web Services-managed provisioning: Proton makes direct calls to provision your resources. Self-managed provisioning: Proton makes pull requests on your repository to provide compiled infrastructure as code (IaC) files that your IaC engine uses to provision resources. For more information, see Environments and Provisioning methods in the Proton User Guide.
|
69
69
|
*/
|
70
70
|
createEnvironment(callback?: (err: AWSError, data: Proton.Types.CreateEnvironmentOutput) => void): Request<Proton.Types.CreateEnvironmentOutput, AWSError>;
|
71
71
|
/**
|
72
|
-
* Create an environment account connection in an environment account so that environment infrastructure resources can be provisioned in the environment account from a management account. An environment account connection is a secure bi-directional connection between a management account and an environment account that maintains authorization and permissions. For more information, see Environment account connections in the Proton
|
72
|
+
* Create an environment account connection in an environment account so that environment infrastructure resources can be provisioned in the environment account from a management account. An environment account connection is a secure bi-directional connection between a management account and an environment account that maintains authorization and permissions. For more information, see Environment account connections in the Proton User guide.
|
73
73
|
*/
|
74
74
|
createEnvironmentAccountConnection(params: Proton.Types.CreateEnvironmentAccountConnectionInput, callback?: (err: AWSError, data: Proton.Types.CreateEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.CreateEnvironmentAccountConnectionOutput, AWSError>;
|
75
75
|
/**
|
76
|
-
* Create an environment account connection in an environment account so that environment infrastructure resources can be provisioned in the environment account from a management account. An environment account connection is a secure bi-directional connection between a management account and an environment account that maintains authorization and permissions. For more information, see Environment account connections in the Proton
|
76
|
+
* Create an environment account connection in an environment account so that environment infrastructure resources can be provisioned in the environment account from a management account. An environment account connection is a secure bi-directional connection between a management account and an environment account that maintains authorization and permissions. For more information, see Environment account connections in the Proton User guide.
|
77
77
|
*/
|
78
78
|
createEnvironmentAccountConnection(callback?: (err: AWSError, data: Proton.Types.CreateEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.CreateEnvironmentAccountConnectionOutput, AWSError>;
|
79
79
|
/**
|
80
|
-
* Create an environment template for Proton. For more information, see Environment Templates in the Proton
|
80
|
+
* Create an environment template for Proton. For more information, see Environment Templates in the Proton User Guide. You can create an environment template in one of the two following ways: Register and publish a standard environment template that instructs Proton to deploy and manage environment infrastructure. Register and publish a customer managed environment template that connects Proton to your existing provisioned infrastructure that you manage. Proton doesn't manage your existing provisioned infrastructure. To create an environment template for customer provisioned and managed infrastructure, include the provisioning parameter and set the value to CUSTOMER_MANAGED. For more information, see Register and publish an environment template in the Proton User Guide.
|
81
81
|
*/
|
82
82
|
createEnvironmentTemplate(params: Proton.Types.CreateEnvironmentTemplateInput, callback?: (err: AWSError, data: Proton.Types.CreateEnvironmentTemplateOutput) => void): Request<Proton.Types.CreateEnvironmentTemplateOutput, AWSError>;
|
83
83
|
/**
|
84
|
-
* Create an environment template for Proton. For more information, see Environment Templates in the Proton
|
84
|
+
* Create an environment template for Proton. For more information, see Environment Templates in the Proton User Guide. You can create an environment template in one of the two following ways: Register and publish a standard environment template that instructs Proton to deploy and manage environment infrastructure. Register and publish a customer managed environment template that connects Proton to your existing provisioned infrastructure that you manage. Proton doesn't manage your existing provisioned infrastructure. To create an environment template for customer provisioned and managed infrastructure, include the provisioning parameter and set the value to CUSTOMER_MANAGED. For more information, see Register and publish an environment template in the Proton User Guide.
|
85
85
|
*/
|
86
86
|
createEnvironmentTemplate(callback?: (err: AWSError, data: Proton.Types.CreateEnvironmentTemplateOutput) => void): Request<Proton.Types.CreateEnvironmentTemplateOutput, AWSError>;
|
87
87
|
/**
|
@@ -93,27 +93,27 @@ declare class Proton extends Service {
|
|
93
93
|
*/
|
94
94
|
createEnvironmentTemplateVersion(callback?: (err: AWSError, data: Proton.Types.CreateEnvironmentTemplateVersionOutput) => void): Request<Proton.Types.CreateEnvironmentTemplateVersionOutput, AWSError>;
|
95
95
|
/**
|
96
|
-
* Create and register a link to a repository
|
96
|
+
* Create and register a link to a repository. Proton uses the link to repeatedly access the repository, to either push to it (self-managed provisioning) or pull from it (template sync). You can share a linked repository across multiple resources (like environments using self-managed provisioning, or synced templates). When you create a repository link, Proton creates a service-linked role for you. For more information, see Self-managed provisioning, Template bundles, and Template sync configurations in the Proton User Guide.
|
97
97
|
*/
|
98
98
|
createRepository(params: Proton.Types.CreateRepositoryInput, callback?: (err: AWSError, data: Proton.Types.CreateRepositoryOutput) => void): Request<Proton.Types.CreateRepositoryOutput, AWSError>;
|
99
99
|
/**
|
100
|
-
* Create and register a link to a repository
|
100
|
+
* Create and register a link to a repository. Proton uses the link to repeatedly access the repository, to either push to it (self-managed provisioning) or pull from it (template sync). You can share a linked repository across multiple resources (like environments using self-managed provisioning, or synced templates). When you create a repository link, Proton creates a service-linked role for you. For more information, see Self-managed provisioning, Template bundles, and Template sync configurations in the Proton User Guide.
|
101
101
|
*/
|
102
102
|
createRepository(callback?: (err: AWSError, data: Proton.Types.CreateRepositoryOutput) => void): Request<Proton.Types.CreateRepositoryOutput, AWSError>;
|
103
103
|
/**
|
104
|
-
* Create an Proton service. An Proton service is an instantiation of a service template and often includes several service instances and pipeline. For more information, see Services in the Proton
|
104
|
+
* Create an Proton service. An Proton service is an instantiation of a service template and often includes several service instances and pipeline. For more information, see Services in the Proton User Guide.
|
105
105
|
*/
|
106
106
|
createService(params: Proton.Types.CreateServiceInput, callback?: (err: AWSError, data: Proton.Types.CreateServiceOutput) => void): Request<Proton.Types.CreateServiceOutput, AWSError>;
|
107
107
|
/**
|
108
|
-
* Create an Proton service. An Proton service is an instantiation of a service template and often includes several service instances and pipeline. For more information, see Services in the Proton
|
108
|
+
* Create an Proton service. An Proton service is an instantiation of a service template and often includes several service instances and pipeline. For more information, see Services in the Proton User Guide.
|
109
109
|
*/
|
110
110
|
createService(callback?: (err: AWSError, data: Proton.Types.CreateServiceOutput) => void): Request<Proton.Types.CreateServiceOutput, AWSError>;
|
111
111
|
/**
|
112
|
-
* Create a service template. The administrator creates a service template to define standardized infrastructure and an optional CI/CD service pipeline. Developers, in turn, select the service template from Proton. If the selected service template includes a service pipeline definition, they provide a link to their source code repository. Proton then deploys and manages the infrastructure defined by the selected service template. For more information, see
|
112
|
+
* Create a service template. The administrator creates a service template to define standardized infrastructure and an optional CI/CD service pipeline. Developers, in turn, select the service template from Proton. If the selected service template includes a service pipeline definition, they provide a link to their source code repository. Proton then deploys and manages the infrastructure defined by the selected service template. For more information, see Proton templates in the Proton User Guide.
|
113
113
|
*/
|
114
114
|
createServiceTemplate(params: Proton.Types.CreateServiceTemplateInput, callback?: (err: AWSError, data: Proton.Types.CreateServiceTemplateOutput) => void): Request<Proton.Types.CreateServiceTemplateOutput, AWSError>;
|
115
115
|
/**
|
116
|
-
* Create a service template. The administrator creates a service template to define standardized infrastructure and an optional CI/CD service pipeline. Developers, in turn, select the service template from Proton. If the selected service template includes a service pipeline definition, they provide a link to their source code repository. Proton then deploys and manages the infrastructure defined by the selected service template. For more information, see
|
116
|
+
* Create a service template. The administrator creates a service template to define standardized infrastructure and an optional CI/CD service pipeline. Developers, in turn, select the service template from Proton. If the selected service template includes a service pipeline definition, they provide a link to their source code repository. Proton then deploys and manages the infrastructure defined by the selected service template. For more information, see Proton templates in the Proton User Guide.
|
117
117
|
*/
|
118
118
|
createServiceTemplate(callback?: (err: AWSError, data: Proton.Types.CreateServiceTemplateOutput) => void): Request<Proton.Types.CreateServiceTemplateOutput, AWSError>;
|
119
119
|
/**
|
@@ -125,19 +125,19 @@ declare class Proton extends Service {
|
|
125
125
|
*/
|
126
126
|
createServiceTemplateVersion(callback?: (err: AWSError, data: Proton.Types.CreateServiceTemplateVersionOutput) => void): Request<Proton.Types.CreateServiceTemplateVersionOutput, AWSError>;
|
127
127
|
/**
|
128
|
-
* Set up a template to create new template versions automatically. When a commit is pushed to your
|
128
|
+
* Set up a template to create new template versions automatically by tracking a linked repository. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository. When a commit is pushed to your linked repository, Proton checks for changes to your repository template bundles. If it detects a template bundle change, a new major or minor version of its template is created, if the version doesn’t already exist. For more information, see Template sync configurations in the Proton User Guide.
|
129
129
|
*/
|
130
130
|
createTemplateSyncConfig(params: Proton.Types.CreateTemplateSyncConfigInput, callback?: (err: AWSError, data: Proton.Types.CreateTemplateSyncConfigOutput) => void): Request<Proton.Types.CreateTemplateSyncConfigOutput, AWSError>;
|
131
131
|
/**
|
132
|
-
* Set up a template to create new template versions automatically. When a commit is pushed to your
|
132
|
+
* Set up a template to create new template versions automatically by tracking a linked repository. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository. When a commit is pushed to your linked repository, Proton checks for changes to your repository template bundles. If it detects a template bundle change, a new major or minor version of its template is created, if the version doesn’t already exist. For more information, see Template sync configurations in the Proton User Guide.
|
133
133
|
*/
|
134
134
|
createTemplateSyncConfig(callback?: (err: AWSError, data: Proton.Types.CreateTemplateSyncConfigOutput) => void): Request<Proton.Types.CreateTemplateSyncConfigOutput, AWSError>;
|
135
135
|
/**
|
136
|
-
* Delete an Proton component resource. For more information about components, see Proton components in the Proton
|
136
|
+
* Delete an Proton component resource. For more information about components, see Proton components in the Proton User Guide.
|
137
137
|
*/
|
138
138
|
deleteComponent(params: Proton.Types.DeleteComponentInput, callback?: (err: AWSError, data: Proton.Types.DeleteComponentOutput) => void): Request<Proton.Types.DeleteComponentOutput, AWSError>;
|
139
139
|
/**
|
140
|
-
* Delete an Proton component resource. For more information about components, see Proton components in the Proton
|
140
|
+
* Delete an Proton component resource. For more information about components, see Proton components in the Proton User Guide.
|
141
141
|
*/
|
142
142
|
deleteComponent(callback?: (err: AWSError, data: Proton.Types.DeleteComponentOutput) => void): Request<Proton.Types.DeleteComponentOutput, AWSError>;
|
143
143
|
/**
|
@@ -149,11 +149,11 @@ declare class Proton extends Service {
|
|
149
149
|
*/
|
150
150
|
deleteEnvironment(callback?: (err: AWSError, data: Proton.Types.DeleteEnvironmentOutput) => void): Request<Proton.Types.DeleteEnvironmentOutput, AWSError>;
|
151
151
|
/**
|
152
|
-
* In an environment account, delete an environment account connection. After you delete an environment account connection that’s in use by an Proton environment, Proton can’t manage the environment infrastructure resources until a new environment account connection is accepted for the environment account and associated environment. You're responsible for cleaning up provisioned resources that remain without an environment connection. For more information, see Environment account connections in the Proton
|
152
|
+
* In an environment account, delete an environment account connection. After you delete an environment account connection that’s in use by an Proton environment, Proton can’t manage the environment infrastructure resources until a new environment account connection is accepted for the environment account and associated environment. You're responsible for cleaning up provisioned resources that remain without an environment connection. For more information, see Environment account connections in the Proton User guide.
|
153
153
|
*/
|
154
154
|
deleteEnvironmentAccountConnection(params: Proton.Types.DeleteEnvironmentAccountConnectionInput, callback?: (err: AWSError, data: Proton.Types.DeleteEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.DeleteEnvironmentAccountConnectionOutput, AWSError>;
|
155
155
|
/**
|
156
|
-
* In an environment account, delete an environment account connection. After you delete an environment account connection that’s in use by an Proton environment, Proton can’t manage the environment infrastructure resources until a new environment account connection is accepted for the environment account and associated environment. You're responsible for cleaning up provisioned resources that remain without an environment connection. For more information, see Environment account connections in the Proton
|
156
|
+
* In an environment account, delete an environment account connection. After you delete an environment account connection that’s in use by an Proton environment, Proton can’t manage the environment infrastructure resources until a new environment account connection is accepted for the environment account and associated environment. You're responsible for cleaning up provisioned resources that remain without an environment connection. For more information, see Environment account connections in the Proton User guide.
|
157
157
|
*/
|
158
158
|
deleteEnvironmentAccountConnection(callback?: (err: AWSError, data: Proton.Types.DeleteEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.DeleteEnvironmentAccountConnectionOutput, AWSError>;
|
159
159
|
/**
|
@@ -181,11 +181,11 @@ declare class Proton extends Service {
|
|
181
181
|
*/
|
182
182
|
deleteRepository(callback?: (err: AWSError, data: Proton.Types.DeleteRepositoryOutput) => void): Request<Proton.Types.DeleteRepositoryOutput, AWSError>;
|
183
183
|
/**
|
184
|
-
* Delete a service, with its instances and pipeline. You can't delete a service if it has any service instances that have components attached to them. For more information about components, see Proton components in the Proton
|
184
|
+
* Delete a service, with its instances and pipeline. You can't delete a service if it has any service instances that have components attached to them. For more information about components, see Proton components in the Proton User Guide.
|
185
185
|
*/
|
186
186
|
deleteService(params: Proton.Types.DeleteServiceInput, callback?: (err: AWSError, data: Proton.Types.DeleteServiceOutput) => void): Request<Proton.Types.DeleteServiceOutput, AWSError>;
|
187
187
|
/**
|
188
|
-
* Delete a service, with its instances and pipeline. You can't delete a service if it has any service instances that have components attached to them. For more information about components, see Proton components in the Proton
|
188
|
+
* Delete a service, with its instances and pipeline. You can't delete a service if it has any service instances that have components attached to them. For more information about components, see Proton components in the Proton User Guide.
|
189
189
|
*/
|
190
190
|
deleteService(callback?: (err: AWSError, data: Proton.Types.DeleteServiceOutput) => void): Request<Proton.Types.DeleteServiceOutput, AWSError>;
|
191
191
|
/**
|
@@ -213,19 +213,19 @@ declare class Proton extends Service {
|
|
213
213
|
*/
|
214
214
|
deleteTemplateSyncConfig(callback?: (err: AWSError, data: Proton.Types.DeleteTemplateSyncConfigOutput) => void): Request<Proton.Types.DeleteTemplateSyncConfigOutput, AWSError>;
|
215
215
|
/**
|
216
|
-
* Get detail data for
|
216
|
+
* Get detail data for Proton account-wide settings.
|
217
217
|
*/
|
218
218
|
getAccountSettings(params: Proton.Types.GetAccountSettingsInput, callback?: (err: AWSError, data: Proton.Types.GetAccountSettingsOutput) => void): Request<Proton.Types.GetAccountSettingsOutput, AWSError>;
|
219
219
|
/**
|
220
|
-
* Get detail data for
|
220
|
+
* Get detail data for Proton account-wide settings.
|
221
221
|
*/
|
222
222
|
getAccountSettings(callback?: (err: AWSError, data: Proton.Types.GetAccountSettingsOutput) => void): Request<Proton.Types.GetAccountSettingsOutput, AWSError>;
|
223
223
|
/**
|
224
|
-
* Get detailed data for a component. For more information about components, see Proton components in the Proton
|
224
|
+
* Get detailed data for a component. For more information about components, see Proton components in the Proton User Guide.
|
225
225
|
*/
|
226
226
|
getComponent(params: Proton.Types.GetComponentInput, callback?: (err: AWSError, data: Proton.Types.GetComponentOutput) => void): Request<Proton.Types.GetComponentOutput, AWSError>;
|
227
227
|
/**
|
228
|
-
* Get detailed data for a component. For more information about components, see Proton components in the Proton
|
228
|
+
* Get detailed data for a component. For more information about components, see Proton components in the Proton User Guide.
|
229
229
|
*/
|
230
230
|
getComponent(callback?: (err: AWSError, data: Proton.Types.GetComponentOutput) => void): Request<Proton.Types.GetComponentOutput, AWSError>;
|
231
231
|
/**
|
@@ -237,11 +237,11 @@ declare class Proton extends Service {
|
|
237
237
|
*/
|
238
238
|
getEnvironment(callback?: (err: AWSError, data: Proton.Types.GetEnvironmentOutput) => void): Request<Proton.Types.GetEnvironmentOutput, AWSError>;
|
239
239
|
/**
|
240
|
-
* In an environment account, get the detailed data for an environment account connection. For more information, see Environment account connections in the Proton
|
240
|
+
* In an environment account, get the detailed data for an environment account connection. For more information, see Environment account connections in the Proton User guide.
|
241
241
|
*/
|
242
242
|
getEnvironmentAccountConnection(params: Proton.Types.GetEnvironmentAccountConnectionInput, callback?: (err: AWSError, data: Proton.Types.GetEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.GetEnvironmentAccountConnectionOutput, AWSError>;
|
243
243
|
/**
|
244
|
-
* In an environment account, get the detailed data for an environment account connection. For more information, see Environment account connections in the Proton
|
244
|
+
* In an environment account, get the detailed data for an environment account connection. For more information, see Environment account connections in the Proton User guide.
|
245
245
|
*/
|
246
246
|
getEnvironmentAccountConnection(callback?: (err: AWSError, data: Proton.Types.GetEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.GetEnvironmentAccountConnectionOutput, AWSError>;
|
247
247
|
/**
|
@@ -261,19 +261,19 @@ declare class Proton extends Service {
|
|
261
261
|
*/
|
262
262
|
getEnvironmentTemplateVersion(callback?: (err: AWSError, data: Proton.Types.GetEnvironmentTemplateVersionOutput) => void): Request<Proton.Types.GetEnvironmentTemplateVersionOutput, AWSError>;
|
263
263
|
/**
|
264
|
-
* Get detail data for a repository.
|
264
|
+
* Get detail data for a linked repository.
|
265
265
|
*/
|
266
266
|
getRepository(params: Proton.Types.GetRepositoryInput, callback?: (err: AWSError, data: Proton.Types.GetRepositoryOutput) => void): Request<Proton.Types.GetRepositoryOutput, AWSError>;
|
267
267
|
/**
|
268
|
-
* Get detail data for a repository.
|
268
|
+
* Get detail data for a linked repository.
|
269
269
|
*/
|
270
270
|
getRepository(callback?: (err: AWSError, data: Proton.Types.GetRepositoryOutput) => void): Request<Proton.Types.GetRepositoryOutput, AWSError>;
|
271
271
|
/**
|
272
|
-
* Get the sync status of a repository used for Proton template sync. For more information about template sync, see . A repository sync status isn't tied to the Proton Repository resource (or any other Proton resource). Therefore, tags on an Proton Repository resource have no effect on this action. Specifically, you can't use these tags to control access to this action using Attribute-based access control (ABAC). For more information about ABAC, see ABAC in the Proton
|
272
|
+
* Get the sync status of a repository used for Proton template sync. For more information about template sync, see . A repository sync status isn't tied to the Proton Repository resource (or any other Proton resource). Therefore, tags on an Proton Repository resource have no effect on this action. Specifically, you can't use these tags to control access to this action using Attribute-based access control (ABAC). For more information about ABAC, see ABAC in the Proton User Guide.
|
273
273
|
*/
|
274
274
|
getRepositorySyncStatus(params: Proton.Types.GetRepositorySyncStatusInput, callback?: (err: AWSError, data: Proton.Types.GetRepositorySyncStatusOutput) => void): Request<Proton.Types.GetRepositorySyncStatusOutput, AWSError>;
|
275
275
|
/**
|
276
|
-
* Get the sync status of a repository used for Proton template sync. For more information about template sync, see . A repository sync status isn't tied to the Proton Repository resource (or any other Proton resource). Therefore, tags on an Proton Repository resource have no effect on this action. Specifically, you can't use these tags to control access to this action using Attribute-based access control (ABAC). For more information about ABAC, see ABAC in the Proton
|
276
|
+
* Get the sync status of a repository used for Proton template sync. For more information about template sync, see . A repository sync status isn't tied to the Proton Repository resource (or any other Proton resource). Therefore, tags on an Proton Repository resource have no effect on this action. Specifically, you can't use these tags to control access to this action using Attribute-based access control (ABAC). For more information about ABAC, see ABAC in the Proton User Guide.
|
277
277
|
*/
|
278
278
|
getRepositorySyncStatus(callback?: (err: AWSError, data: Proton.Types.GetRepositorySyncStatusOutput) => void): Request<Proton.Types.GetRepositorySyncStatusOutput, AWSError>;
|
279
279
|
/**
|
@@ -325,35 +325,35 @@ declare class Proton extends Service {
|
|
325
325
|
*/
|
326
326
|
getTemplateSyncStatus(callback?: (err: AWSError, data: Proton.Types.GetTemplateSyncStatusOutput) => void): Request<Proton.Types.GetTemplateSyncStatusOutput, AWSError>;
|
327
327
|
/**
|
328
|
-
* Get a list of component Infrastructure as Code (IaC) outputs. For more information about components, see Proton components in the Proton
|
328
|
+
* Get a list of component Infrastructure as Code (IaC) outputs. For more information about components, see Proton components in the Proton User Guide.
|
329
329
|
*/
|
330
330
|
listComponentOutputs(params: Proton.Types.ListComponentOutputsInput, callback?: (err: AWSError, data: Proton.Types.ListComponentOutputsOutput) => void): Request<Proton.Types.ListComponentOutputsOutput, AWSError>;
|
331
331
|
/**
|
332
|
-
* Get a list of component Infrastructure as Code (IaC) outputs. For more information about components, see Proton components in the Proton
|
332
|
+
* Get a list of component Infrastructure as Code (IaC) outputs. For more information about components, see Proton components in the Proton User Guide.
|
333
333
|
*/
|
334
334
|
listComponentOutputs(callback?: (err: AWSError, data: Proton.Types.ListComponentOutputsOutput) => void): Request<Proton.Types.ListComponentOutputsOutput, AWSError>;
|
335
335
|
/**
|
336
|
-
* List provisioned resources for a component with details. For more information about components, see Proton components in the Proton
|
336
|
+
* List provisioned resources for a component with details. For more information about components, see Proton components in the Proton User Guide.
|
337
337
|
*/
|
338
338
|
listComponentProvisionedResources(params: Proton.Types.ListComponentProvisionedResourcesInput, callback?: (err: AWSError, data: Proton.Types.ListComponentProvisionedResourcesOutput) => void): Request<Proton.Types.ListComponentProvisionedResourcesOutput, AWSError>;
|
339
339
|
/**
|
340
|
-
* List provisioned resources for a component with details. For more information about components, see Proton components in the Proton
|
340
|
+
* List provisioned resources for a component with details. For more information about components, see Proton components in the Proton User Guide.
|
341
341
|
*/
|
342
342
|
listComponentProvisionedResources(callback?: (err: AWSError, data: Proton.Types.ListComponentProvisionedResourcesOutput) => void): Request<Proton.Types.ListComponentProvisionedResourcesOutput, AWSError>;
|
343
343
|
/**
|
344
|
-
* List components with summary data. You can filter the result list by environment, service, or a single service instance. For more information about components, see Proton components in the Proton
|
344
|
+
* List components with summary data. You can filter the result list by environment, service, or a single service instance. For more information about components, see Proton components in the Proton User Guide.
|
345
345
|
*/
|
346
346
|
listComponents(params: Proton.Types.ListComponentsInput, callback?: (err: AWSError, data: Proton.Types.ListComponentsOutput) => void): Request<Proton.Types.ListComponentsOutput, AWSError>;
|
347
347
|
/**
|
348
|
-
* List components with summary data. You can filter the result list by environment, service, or a single service instance. For more information about components, see Proton components in the Proton
|
348
|
+
* List components with summary data. You can filter the result list by environment, service, or a single service instance. For more information about components, see Proton components in the Proton User Guide.
|
349
349
|
*/
|
350
350
|
listComponents(callback?: (err: AWSError, data: Proton.Types.ListComponentsOutput) => void): Request<Proton.Types.ListComponentsOutput, AWSError>;
|
351
351
|
/**
|
352
|
-
* View a list of environment account connections. For more information, see Environment account connections in the Proton
|
352
|
+
* View a list of environment account connections. For more information, see Environment account connections in the Proton User guide.
|
353
353
|
*/
|
354
354
|
listEnvironmentAccountConnections(params: Proton.Types.ListEnvironmentAccountConnectionsInput, callback?: (err: AWSError, data: Proton.Types.ListEnvironmentAccountConnectionsOutput) => void): Request<Proton.Types.ListEnvironmentAccountConnectionsOutput, AWSError>;
|
355
355
|
/**
|
356
|
-
* View a list of environment account connections. For more information, see Environment account connections in the Proton
|
356
|
+
* View a list of environment account connections. For more information, see Environment account connections in the Proton User guide.
|
357
357
|
*/
|
358
358
|
listEnvironmentAccountConnections(callback?: (err: AWSError, data: Proton.Types.ListEnvironmentAccountConnectionsOutput) => void): Request<Proton.Types.ListEnvironmentAccountConnectionsOutput, AWSError>;
|
359
359
|
/**
|
@@ -397,11 +397,11 @@ declare class Proton extends Service {
|
|
397
397
|
*/
|
398
398
|
listEnvironments(callback?: (err: AWSError, data: Proton.Types.ListEnvironmentsOutput) => void): Request<Proton.Types.ListEnvironmentsOutput, AWSError>;
|
399
399
|
/**
|
400
|
-
* List repositories with detail data.
|
400
|
+
* List linked repositories with detail data.
|
401
401
|
*/
|
402
402
|
listRepositories(params: Proton.Types.ListRepositoriesInput, callback?: (err: AWSError, data: Proton.Types.ListRepositoriesOutput) => void): Request<Proton.Types.ListRepositoriesOutput, AWSError>;
|
403
403
|
/**
|
404
|
-
* List repositories with detail data.
|
404
|
+
* List linked repositories with detail data.
|
405
405
|
*/
|
406
406
|
listRepositories(callback?: (err: AWSError, data: Proton.Types.ListRepositoriesOutput) => void): Request<Proton.Types.ListRepositoriesOutput, AWSError>;
|
407
407
|
/**
|
@@ -477,75 +477,75 @@ declare class Proton extends Service {
|
|
477
477
|
*/
|
478
478
|
listServices(callback?: (err: AWSError, data: Proton.Types.ListServicesOutput) => void): Request<Proton.Types.ListServicesOutput, AWSError>;
|
479
479
|
/**
|
480
|
-
* List tags for a resource. For more information, see Proton resources and tagging in the Proton
|
480
|
+
* List tags for a resource. For more information, see Proton resources and tagging in the Proton User Guide.
|
481
481
|
*/
|
482
482
|
listTagsForResource(params: Proton.Types.ListTagsForResourceInput, callback?: (err: AWSError, data: Proton.Types.ListTagsForResourceOutput) => void): Request<Proton.Types.ListTagsForResourceOutput, AWSError>;
|
483
483
|
/**
|
484
|
-
* List tags for a resource. For more information, see Proton resources and tagging in the Proton
|
484
|
+
* List tags for a resource. For more information, see Proton resources and tagging in the Proton User Guide.
|
485
485
|
*/
|
486
486
|
listTagsForResource(callback?: (err: AWSError, data: Proton.Types.ListTagsForResourceOutput) => void): Request<Proton.Types.ListTagsForResourceOutput, AWSError>;
|
487
487
|
/**
|
488
|
-
* Notify Proton of status changes to a provisioned resource when you use self-managed provisioning. For more information, see Self-managed provisioning in the Proton
|
488
|
+
* Notify Proton of status changes to a provisioned resource when you use self-managed provisioning. For more information, see Self-managed provisioning in the Proton User Guide.
|
489
489
|
*/
|
490
490
|
notifyResourceDeploymentStatusChange(params: Proton.Types.NotifyResourceDeploymentStatusChangeInput, callback?: (err: AWSError, data: Proton.Types.NotifyResourceDeploymentStatusChangeOutput) => void): Request<Proton.Types.NotifyResourceDeploymentStatusChangeOutput, AWSError>;
|
491
491
|
/**
|
492
|
-
* Notify Proton of status changes to a provisioned resource when you use self-managed provisioning. For more information, see Self-managed provisioning in the Proton
|
492
|
+
* Notify Proton of status changes to a provisioned resource when you use self-managed provisioning. For more information, see Self-managed provisioning in the Proton User Guide.
|
493
493
|
*/
|
494
494
|
notifyResourceDeploymentStatusChange(callback?: (err: AWSError, data: Proton.Types.NotifyResourceDeploymentStatusChangeOutput) => void): Request<Proton.Types.NotifyResourceDeploymentStatusChangeOutput, AWSError>;
|
495
495
|
/**
|
496
|
-
* In a management account, reject an environment account connection from another environment account. After you reject an environment account connection request, you can't accept or use the rejected environment account connection. You can’t reject an environment account connection that's connected to an environment. For more information, see Environment account connections in the Proton
|
496
|
+
* In a management account, reject an environment account connection from another environment account. After you reject an environment account connection request, you can't accept or use the rejected environment account connection. You can’t reject an environment account connection that's connected to an environment. For more information, see Environment account connections in the Proton User guide.
|
497
497
|
*/
|
498
498
|
rejectEnvironmentAccountConnection(params: Proton.Types.RejectEnvironmentAccountConnectionInput, callback?: (err: AWSError, data: Proton.Types.RejectEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.RejectEnvironmentAccountConnectionOutput, AWSError>;
|
499
499
|
/**
|
500
|
-
* In a management account, reject an environment account connection from another environment account. After you reject an environment account connection request, you can't accept or use the rejected environment account connection. You can’t reject an environment account connection that's connected to an environment. For more information, see Environment account connections in the Proton
|
500
|
+
* In a management account, reject an environment account connection from another environment account. After you reject an environment account connection request, you can't accept or use the rejected environment account connection. You can’t reject an environment account connection that's connected to an environment. For more information, see Environment account connections in the Proton User guide.
|
501
501
|
*/
|
502
502
|
rejectEnvironmentAccountConnection(callback?: (err: AWSError, data: Proton.Types.RejectEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.RejectEnvironmentAccountConnectionOutput, AWSError>;
|
503
503
|
/**
|
504
|
-
* Tag a resource. A tag is a key-value pair of metadata that you associate with an Proton resource. For more information, see Proton resources and tagging in the Proton
|
504
|
+
* Tag a resource. A tag is a key-value pair of metadata that you associate with an Proton resource. For more information, see Proton resources and tagging in the Proton User Guide.
|
505
505
|
*/
|
506
506
|
tagResource(params: Proton.Types.TagResourceInput, callback?: (err: AWSError, data: Proton.Types.TagResourceOutput) => void): Request<Proton.Types.TagResourceOutput, AWSError>;
|
507
507
|
/**
|
508
|
-
* Tag a resource. A tag is a key-value pair of metadata that you associate with an Proton resource. For more information, see Proton resources and tagging in the Proton
|
508
|
+
* Tag a resource. A tag is a key-value pair of metadata that you associate with an Proton resource. For more information, see Proton resources and tagging in the Proton User Guide.
|
509
509
|
*/
|
510
510
|
tagResource(callback?: (err: AWSError, data: Proton.Types.TagResourceOutput) => void): Request<Proton.Types.TagResourceOutput, AWSError>;
|
511
511
|
/**
|
512
|
-
* Remove a customer tag from a resource. A tag is a key-value pair of metadata associated with an Proton resource. For more information, see Proton resources and tagging in the Proton
|
512
|
+
* Remove a customer tag from a resource. A tag is a key-value pair of metadata associated with an Proton resource. For more information, see Proton resources and tagging in the Proton User Guide.
|
513
513
|
*/
|
514
514
|
untagResource(params: Proton.Types.UntagResourceInput, callback?: (err: AWSError, data: Proton.Types.UntagResourceOutput) => void): Request<Proton.Types.UntagResourceOutput, AWSError>;
|
515
515
|
/**
|
516
|
-
* Remove a customer tag from a resource. A tag is a key-value pair of metadata associated with an Proton resource. For more information, see Proton resources and tagging in the Proton
|
516
|
+
* Remove a customer tag from a resource. A tag is a key-value pair of metadata associated with an Proton resource. For more information, see Proton resources and tagging in the Proton User Guide.
|
517
517
|
*/
|
518
518
|
untagResource(callback?: (err: AWSError, data: Proton.Types.UntagResourceOutput) => void): Request<Proton.Types.UntagResourceOutput, AWSError>;
|
519
519
|
/**
|
520
|
-
* Update
|
520
|
+
* Update Proton settings that are used for multiple services in the Amazon Web Services account.
|
521
521
|
*/
|
522
522
|
updateAccountSettings(params: Proton.Types.UpdateAccountSettingsInput, callback?: (err: AWSError, data: Proton.Types.UpdateAccountSettingsOutput) => void): Request<Proton.Types.UpdateAccountSettingsOutput, AWSError>;
|
523
523
|
/**
|
524
|
-
* Update
|
524
|
+
* Update Proton settings that are used for multiple services in the Amazon Web Services account.
|
525
525
|
*/
|
526
526
|
updateAccountSettings(callback?: (err: AWSError, data: Proton.Types.UpdateAccountSettingsOutput) => void): Request<Proton.Types.UpdateAccountSettingsOutput, AWSError>;
|
527
527
|
/**
|
528
|
-
* Update a component. There are a few modes for updating a component. The deploymentType field defines the mode. You can't update a component while its deployment status, or the deployment status of a service instance attached to it, is IN_PROGRESS. For more information about components, see Proton components in the Proton
|
528
|
+
* Update a component. There are a few modes for updating a component. The deploymentType field defines the mode. You can't update a component while its deployment status, or the deployment status of a service instance attached to it, is IN_PROGRESS. For more information about components, see Proton components in the Proton User Guide.
|
529
529
|
*/
|
530
530
|
updateComponent(params: Proton.Types.UpdateComponentInput, callback?: (err: AWSError, data: Proton.Types.UpdateComponentOutput) => void): Request<Proton.Types.UpdateComponentOutput, AWSError>;
|
531
531
|
/**
|
532
|
-
* Update a component. There are a few modes for updating a component. The deploymentType field defines the mode. You can't update a component while its deployment status, or the deployment status of a service instance attached to it, is IN_PROGRESS. For more information about components, see Proton components in the Proton
|
532
|
+
* Update a component. There are a few modes for updating a component. The deploymentType field defines the mode. You can't update a component while its deployment status, or the deployment status of a service instance attached to it, is IN_PROGRESS. For more information about components, see Proton components in the Proton User Guide.
|
533
533
|
*/
|
534
534
|
updateComponent(callback?: (err: AWSError, data: Proton.Types.UpdateComponentOutput) => void): Request<Proton.Types.UpdateComponentOutput, AWSError>;
|
535
535
|
/**
|
536
|
-
* Update an environment. If the environment is associated with an environment account connection, don't update or include the protonServiceRoleArn and provisioningRepository parameter to update or connect to an environment account connection. You can only update to a new environment account connection if that connection was created in the same environment account that the current environment account connection was created in. The account connection must also be associated with the current environment. If the environment isn't associated with an environment account connection, don't update or include the environmentAccountConnectionId parameter. You can't update or connect the environment to an environment account connection if it isn't already associated with an environment connection. You can update either the environmentAccountConnectionId or protonServiceRoleArn parameter and value. You can’t update both. If the environment was configured for Amazon Web Services-managed provisioning, omit the provisioningRepository parameter. If the environment was configured for self-managed provisioning, specify the provisioningRepository parameter and omit the protonServiceRoleArn and environmentAccountConnectionId parameters. For more information, see Environments and Provisioning methods in the Proton
|
536
|
+
* Update an environment. If the environment is associated with an environment account connection, don't update or include the protonServiceRoleArn and provisioningRepository parameter to update or connect to an environment account connection. You can only update to a new environment account connection if that connection was created in the same environment account that the current environment account connection was created in. The account connection must also be associated with the current environment. If the environment isn't associated with an environment account connection, don't update or include the environmentAccountConnectionId parameter. You can't update or connect the environment to an environment account connection if it isn't already associated with an environment connection. You can update either the environmentAccountConnectionId or protonServiceRoleArn parameter and value. You can’t update both. If the environment was configured for Amazon Web Services-managed provisioning, omit the provisioningRepository parameter. If the environment was configured for self-managed provisioning, specify the provisioningRepository parameter and omit the protonServiceRoleArn and environmentAccountConnectionId parameters. For more information, see Environments and Provisioning methods in the Proton User Guide. There are four modes for updating an environment. The deploymentType field defines the mode. NONE In this mode, a deployment doesn't occur. Only the requested metadata parameters are updated. CURRENT_VERSION In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are updated. Don’t include minor or major version parameters when you use this deployment-type. MINOR_VERSION In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current major version in use, by default. You can also specify a different minor version of the current major version in use. MAJOR_VERSION In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of the current template, by default. You can also specify a different major version that's higher than the major version in use and a minor version.
|
537
537
|
*/
|
538
538
|
updateEnvironment(params: Proton.Types.UpdateEnvironmentInput, callback?: (err: AWSError, data: Proton.Types.UpdateEnvironmentOutput) => void): Request<Proton.Types.UpdateEnvironmentOutput, AWSError>;
|
539
539
|
/**
|
540
|
-
* Update an environment. If the environment is associated with an environment account connection, don't update or include the protonServiceRoleArn and provisioningRepository parameter to update or connect to an environment account connection. You can only update to a new environment account connection if that connection was created in the same environment account that the current environment account connection was created in. The account connection must also be associated with the current environment. If the environment isn't associated with an environment account connection, don't update or include the environmentAccountConnectionId parameter. You can't update or connect the environment to an environment account connection if it isn't already associated with an environment connection. You can update either the environmentAccountConnectionId or protonServiceRoleArn parameter and value. You can’t update both. If the environment was configured for Amazon Web Services-managed provisioning, omit the provisioningRepository parameter. If the environment was configured for self-managed provisioning, specify the provisioningRepository parameter and omit the protonServiceRoleArn and environmentAccountConnectionId parameters. For more information, see Environments and Provisioning methods in the Proton
|
540
|
+
* Update an environment. If the environment is associated with an environment account connection, don't update or include the protonServiceRoleArn and provisioningRepository parameter to update or connect to an environment account connection. You can only update to a new environment account connection if that connection was created in the same environment account that the current environment account connection was created in. The account connection must also be associated with the current environment. If the environment isn't associated with an environment account connection, don't update or include the environmentAccountConnectionId parameter. You can't update or connect the environment to an environment account connection if it isn't already associated with an environment connection. You can update either the environmentAccountConnectionId or protonServiceRoleArn parameter and value. You can’t update both. If the environment was configured for Amazon Web Services-managed provisioning, omit the provisioningRepository parameter. If the environment was configured for self-managed provisioning, specify the provisioningRepository parameter and omit the protonServiceRoleArn and environmentAccountConnectionId parameters. For more information, see Environments and Provisioning methods in the Proton User Guide. There are four modes for updating an environment. The deploymentType field defines the mode. NONE In this mode, a deployment doesn't occur. Only the requested metadata parameters are updated. CURRENT_VERSION In this mode, the environment is deployed and updated with the new spec that you provide. Only requested parameters are updated. Don’t include minor or major version parameters when you use this deployment-type. MINOR_VERSION In this mode, the environment is deployed and updated with the published, recommended (latest) minor version of the current major version in use, by default. You can also specify a different minor version of the current major version in use. MAJOR_VERSION In this mode, the environment is deployed and updated with the published, recommended (latest) major and minor version of the current template, by default. You can also specify a different major version that's higher than the major version in use and a minor version.
|
541
541
|
*/
|
542
542
|
updateEnvironment(callback?: (err: AWSError, data: Proton.Types.UpdateEnvironmentOutput) => void): Request<Proton.Types.UpdateEnvironmentOutput, AWSError>;
|
543
543
|
/**
|
544
|
-
* In an environment account, update an environment account connection to use a new IAM role. For more information, see Environment account connections in the Proton
|
544
|
+
* In an environment account, update an environment account connection to use a new IAM role. For more information, see Environment account connections in the Proton User guide.
|
545
545
|
*/
|
546
546
|
updateEnvironmentAccountConnection(params: Proton.Types.UpdateEnvironmentAccountConnectionInput, callback?: (err: AWSError, data: Proton.Types.UpdateEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.UpdateEnvironmentAccountConnectionOutput, AWSError>;
|
547
547
|
/**
|
548
|
-
* In an environment account, update an environment account connection to use a new IAM role. For more information, see Environment account connections in the Proton
|
548
|
+
* In an environment account, update an environment account connection to use a new IAM role. For more information, see Environment account connections in the Proton User guide.
|
549
549
|
*/
|
550
550
|
updateEnvironmentAccountConnection(callback?: (err: AWSError, data: Proton.Types.UpdateEnvironmentAccountConnectionOutput) => void): Request<Proton.Types.UpdateEnvironmentAccountConnectionOutput, AWSError>;
|
551
551
|
/**
|
@@ -565,19 +565,19 @@ declare class Proton extends Service {
|
|
565
565
|
*/
|
566
566
|
updateEnvironmentTemplateVersion(callback?: (err: AWSError, data: Proton.Types.UpdateEnvironmentTemplateVersionOutput) => void): Request<Proton.Types.UpdateEnvironmentTemplateVersionOutput, AWSError>;
|
567
567
|
/**
|
568
|
-
* Edit a service description or use a spec to add and delete service instances. Existing service instances and the service pipeline can't be edited using this API. They can only be deleted. Use the description parameter to modify the description. Edit the spec parameter to add or delete instances. You can't delete a service instance (remove it from the spec) if it has an attached component. For more information about components, see Proton components in the Proton
|
568
|
+
* Edit a service description or use a spec to add and delete service instances. Existing service instances and the service pipeline can't be edited using this API. They can only be deleted. Use the description parameter to modify the description. Edit the spec parameter to add or delete instances. You can't delete a service instance (remove it from the spec) if it has an attached component. For more information about components, see Proton components in the Proton User Guide.
|
569
569
|
*/
|
570
570
|
updateService(params: Proton.Types.UpdateServiceInput, callback?: (err: AWSError, data: Proton.Types.UpdateServiceOutput) => void): Request<Proton.Types.UpdateServiceOutput, AWSError>;
|
571
571
|
/**
|
572
|
-
* Edit a service description or use a spec to add and delete service instances. Existing service instances and the service pipeline can't be edited using this API. They can only be deleted. Use the description parameter to modify the description. Edit the spec parameter to add or delete instances. You can't delete a service instance (remove it from the spec) if it has an attached component. For more information about components, see Proton components in the Proton
|
572
|
+
* Edit a service description or use a spec to add and delete service instances. Existing service instances and the service pipeline can't be edited using this API. They can only be deleted. Use the description parameter to modify the description. Edit the spec parameter to add or delete instances. You can't delete a service instance (remove it from the spec) if it has an attached component. For more information about components, see Proton components in the Proton User Guide.
|
573
573
|
*/
|
574
574
|
updateService(callback?: (err: AWSError, data: Proton.Types.UpdateServiceOutput) => void): Request<Proton.Types.UpdateServiceOutput, AWSError>;
|
575
575
|
/**
|
576
|
-
* Update a service instance. There are a few modes for updating a service instance. The deploymentType field defines the mode. You can't update a service instance while its deployment status, or the deployment status of a component attached to it, is IN_PROGRESS. For more information about components, see Proton components in the Proton
|
576
|
+
* Update a service instance. There are a few modes for updating a service instance. The deploymentType field defines the mode. You can't update a service instance while its deployment status, or the deployment status of a component attached to it, is IN_PROGRESS. For more information about components, see Proton components in the Proton User Guide.
|
577
577
|
*/
|
578
578
|
updateServiceInstance(params: Proton.Types.UpdateServiceInstanceInput, callback?: (err: AWSError, data: Proton.Types.UpdateServiceInstanceOutput) => void): Request<Proton.Types.UpdateServiceInstanceOutput, AWSError>;
|
579
579
|
/**
|
580
|
-
* Update a service instance. There are a few modes for updating a service instance. The deploymentType field defines the mode. You can't update a service instance while its deployment status, or the deployment status of a component attached to it, is IN_PROGRESS. For more information about components, see Proton components in the Proton
|
580
|
+
* Update a service instance. There are a few modes for updating a service instance. The deploymentType field defines the mode. You can't update a service instance while its deployment status, or the deployment status of a component attached to it, is IN_PROGRESS. For more information about components, see Proton components in the Proton User Guide.
|
581
581
|
*/
|
582
582
|
updateServiceInstance(callback?: (err: AWSError, data: Proton.Types.UpdateServiceInstanceOutput) => void): Request<Proton.Types.UpdateServiceInstanceOutput, AWSError>;
|
583
583
|
/**
|
@@ -605,11 +605,11 @@ declare class Proton extends Service {
|
|
605
605
|
*/
|
606
606
|
updateServiceTemplateVersion(callback?: (err: AWSError, data: Proton.Types.UpdateServiceTemplateVersionOutput) => void): Request<Proton.Types.UpdateServiceTemplateVersionOutput, AWSError>;
|
607
607
|
/**
|
608
|
-
* Update template sync configuration parameters, except for the templateName and templateType.
|
608
|
+
* Update template sync configuration parameters, except for the templateName and templateType. Repository details (branch, name, and provider) should be of a linked repository. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.
|
609
609
|
*/
|
610
610
|
updateTemplateSyncConfig(params: Proton.Types.UpdateTemplateSyncConfigInput, callback?: (err: AWSError, data: Proton.Types.UpdateTemplateSyncConfigOutput) => void): Request<Proton.Types.UpdateTemplateSyncConfigOutput, AWSError>;
|
611
611
|
/**
|
612
|
-
* Update template sync configuration parameters, except for the templateName and templateType.
|
612
|
+
* Update template sync configuration parameters, except for the templateName and templateType. Repository details (branch, name, and provider) should be of a linked repository. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.
|
613
613
|
*/
|
614
614
|
updateTemplateSyncConfig(callback?: (err: AWSError, data: Proton.Types.UpdateTemplateSyncConfigOutput) => void): Request<Proton.Types.UpdateTemplateSyncConfigOutput, AWSError>;
|
615
615
|
/**
|
@@ -708,7 +708,7 @@ declare namespace Proton {
|
|
708
708
|
}
|
709
709
|
export interface AccountSettings {
|
710
710
|
/**
|
711
|
-
* The repository
|
711
|
+
* The linked repository for pipeline provisioning. Required if you have environments configured for self-managed provisioning with services that include pipelines. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.
|
712
712
|
*/
|
713
713
|
pipelineProvisioningRepository?: RepositoryBranch;
|
714
714
|
/**
|
@@ -718,6 +718,7 @@ declare namespace Proton {
|
|
718
718
|
}
|
719
719
|
export type Arn = string;
|
720
720
|
export type AwsAccountId = string;
|
721
|
+
export type Boolean = boolean;
|
721
722
|
export interface CancelComponentDeploymentInput {
|
722
723
|
/**
|
723
724
|
* The name of the component with the deployment to cancel.
|
@@ -926,7 +927,7 @@ declare namespace Proton {
|
|
926
927
|
*/
|
927
928
|
serviceSpec?: SpecContents;
|
928
929
|
/**
|
929
|
-
* An optional list of metadata items that you can associate with the Proton component. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton
|
930
|
+
* An optional list of metadata items that you can associate with the Proton component. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.
|
930
931
|
*/
|
931
932
|
tags?: TagList;
|
932
933
|
/**
|
@@ -946,7 +947,7 @@ declare namespace Proton {
|
|
946
947
|
*/
|
947
948
|
clientToken?: ClientToken;
|
948
949
|
/**
|
949
|
-
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account. You must specify componentRoleArn to allow directly defined components to be associated with any environments running in this account. For more information about components, see Proton components in the Proton
|
950
|
+
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account. You must specify componentRoleArn to allow directly defined components to be associated with any environments running in this account. For more information about components, see Proton components in the Proton User Guide.
|
950
951
|
*/
|
951
952
|
componentRoleArn?: Arn;
|
952
953
|
/**
|
@@ -962,7 +963,7 @@ declare namespace Proton {
|
|
962
963
|
*/
|
963
964
|
roleArn: Arn;
|
964
965
|
/**
|
965
|
-
* An optional list of metadata items that you can associate with the Proton environment account connection. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton
|
966
|
+
* An optional list of metadata items that you can associate with the Proton environment account connection. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.
|
966
967
|
*/
|
967
968
|
tags?: TagList;
|
968
969
|
}
|
@@ -974,7 +975,7 @@ declare namespace Proton {
|
|
974
975
|
}
|
975
976
|
export interface CreateEnvironmentInput {
|
976
977
|
/**
|
977
|
-
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision. You must specify componentRoleArn to allow directly defined components to be associated with this environment. For more information about components, see Proton components in the Proton
|
978
|
+
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision. You must specify componentRoleArn to allow directly defined components to be associated with this environment. For more information about components, see Proton components in the Proton User Guide.
|
978
979
|
*/
|
979
980
|
componentRoleArn?: Arn;
|
980
981
|
/**
|
@@ -982,7 +983,7 @@ declare namespace Proton {
|
|
982
983
|
*/
|
983
984
|
description?: Description;
|
984
985
|
/**
|
985
|
-
* The ID of the environment account connection that you provide if you're provisioning your environment infrastructure resources to an environment account. For more information, see Environment account connections in the Proton
|
986
|
+
* The ID of the environment account connection that you provide if you're provisioning your environment infrastructure resources to an environment account. For more information, see Environment account connections in the Proton User guide. To use Amazon Web Services-managed provisioning for the environment, specify either the environmentAccountConnectionId or protonServiceRoleArn parameter and omit the provisioningRepository parameter.
|
986
987
|
*/
|
987
988
|
environmentAccountConnectionId?: EnvironmentAccountConnectionId;
|
988
989
|
/**
|
@@ -994,15 +995,15 @@ declare namespace Proton {
|
|
994
995
|
*/
|
995
996
|
protonServiceRoleArn?: Arn;
|
996
997
|
/**
|
997
|
-
* The
|
998
|
+
* The linked repository that you use to host your rendered infrastructure templates for self-managed provisioning. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository. To use self-managed provisioning for the environment, specify this parameter and omit the environmentAccountConnectionId and protonServiceRoleArn parameters.
|
998
999
|
*/
|
999
1000
|
provisioningRepository?: RepositoryBranchInput;
|
1000
1001
|
/**
|
1001
|
-
* A YAML formatted string that provides inputs as defined in the environment template bundle schema file. For more information, see Environments in the Proton
|
1002
|
+
* A YAML formatted string that provides inputs as defined in the environment template bundle schema file. For more information, see Environments in the Proton User Guide.
|
1002
1003
|
*/
|
1003
1004
|
spec: SpecContents;
|
1004
1005
|
/**
|
1005
|
-
* An optional list of metadata items that you can associate with the Proton environment. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton
|
1006
|
+
* An optional list of metadata items that you can associate with the Proton environment. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.
|
1006
1007
|
*/
|
1007
1008
|
tags?: TagList;
|
1008
1009
|
/**
|
@@ -1014,7 +1015,7 @@ declare namespace Proton {
|
|
1014
1015
|
*/
|
1015
1016
|
templateMinorVersion?: TemplateVersionPart;
|
1016
1017
|
/**
|
1017
|
-
* The name of the environment template. For more information, see Environment Templates in the Proton
|
1018
|
+
* The name of the environment template. For more information, see Environment Templates in the Proton User Guide.
|
1018
1019
|
*/
|
1019
1020
|
templateName: ResourceName;
|
1020
1021
|
}
|
@@ -1046,7 +1047,7 @@ declare namespace Proton {
|
|
1046
1047
|
*/
|
1047
1048
|
provisioning?: Provisioning;
|
1048
1049
|
/**
|
1049
|
-
* An optional list of metadata items that you can associate with the Proton environment template. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton
|
1050
|
+
* An optional list of metadata items that you can associate with the Proton environment template. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.
|
1050
1051
|
*/
|
1051
1052
|
tags?: TagList;
|
1052
1053
|
}
|
@@ -1074,7 +1075,7 @@ declare namespace Proton {
|
|
1074
1075
|
*/
|
1075
1076
|
source: TemplateVersionSourceInput;
|
1076
1077
|
/**
|
1077
|
-
* An optional list of metadata items that you can associate with the Proton environment template version. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton
|
1078
|
+
* An optional list of metadata items that you can associate with the Proton environment template version. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.
|
1078
1079
|
*/
|
1079
1080
|
tags?: TagList;
|
1080
1081
|
/**
|
@@ -1090,7 +1091,7 @@ declare namespace Proton {
|
|
1090
1091
|
}
|
1091
1092
|
export interface CreateRepositoryInput {
|
1092
1093
|
/**
|
1093
|
-
* The Amazon Resource Name (ARN) of your
|
1094
|
+
* The Amazon Resource Name (ARN) of your AWS CodeStar connection that connects Proton to your repository provider account. For more information, see Setting up for Proton in the Proton User Guide.
|
1094
1095
|
*/
|
1095
1096
|
connectionArn: Arn;
|
1096
1097
|
/**
|
@@ -1106,13 +1107,13 @@ declare namespace Proton {
|
|
1106
1107
|
*/
|
1107
1108
|
provider: RepositoryProvider;
|
1108
1109
|
/**
|
1109
|
-
* An optional list of metadata items that you can associate with the Proton repository. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton
|
1110
|
+
* An optional list of metadata items that you can associate with the Proton repository. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.
|
1110
1111
|
*/
|
1111
1112
|
tags?: TagList;
|
1112
1113
|
}
|
1113
1114
|
export interface CreateRepositoryOutput {
|
1114
1115
|
/**
|
1115
|
-
* The repository detail data that's returned by Proton.
|
1116
|
+
* The repository link's detail data that's returned by Proton.
|
1116
1117
|
*/
|
1117
1118
|
repository: Repository;
|
1118
1119
|
}
|
@@ -1130,7 +1131,7 @@ declare namespace Proton {
|
|
1130
1131
|
*/
|
1131
1132
|
name: ResourceName;
|
1132
1133
|
/**
|
1133
|
-
* The Amazon Resource Name (ARN) of the repository connection. For more information, see
|
1134
|
+
* The Amazon Resource Name (ARN) of the repository connection. For more information, see Setting up an AWS CodeStar connection in the Proton User Guide. Don't include this parameter if your service template doesn't include a service pipeline.
|
1134
1135
|
*/
|
1135
1136
|
repositoryConnectionArn?: Arn;
|
1136
1137
|
/**
|
@@ -1138,11 +1139,11 @@ declare namespace Proton {
|
|
1138
1139
|
*/
|
1139
1140
|
repositoryId?: RepositoryId;
|
1140
1141
|
/**
|
1141
|
-
* A link to a spec file that provides inputs as defined in the service template bundle schema file. The spec file is in YAML format. Don’t include pipeline inputs in the spec if your service template doesn’t include a service pipeline. For more information, see Create a service in the Proton
|
1142
|
+
* A link to a spec file that provides inputs as defined in the service template bundle schema file. The spec file is in YAML format. Don’t include pipeline inputs in the spec if your service template doesn’t include a service pipeline. For more information, see Create a service in the Proton User Guide.
|
1142
1143
|
*/
|
1143
1144
|
spec: SpecContents;
|
1144
1145
|
/**
|
1145
|
-
* An optional list of metadata items that you can associate with the Proton service. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton
|
1146
|
+
* An optional list of metadata items that you can associate with the Proton service. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.
|
1146
1147
|
*/
|
1147
1148
|
tags?: TagList;
|
1148
1149
|
/**
|
@@ -1182,11 +1183,11 @@ declare namespace Proton {
|
|
1182
1183
|
*/
|
1183
1184
|
name: ResourceName;
|
1184
1185
|
/**
|
1185
|
-
* By default, Proton provides a service pipeline for your service. When this parameter is included, it indicates that an Proton service pipeline isn't provided for your service. After it's included, it can't be changed. For more information, see
|
1186
|
+
* By default, Proton provides a service pipeline for your service. When this parameter is included, it indicates that an Proton service pipeline isn't provided for your service. After it's included, it can't be changed. For more information, see Template bundles in the Proton User Guide.
|
1186
1187
|
*/
|
1187
1188
|
pipelineProvisioning?: Provisioning;
|
1188
1189
|
/**
|
1189
|
-
* An optional list of metadata items that you can associate with the Proton service template. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton
|
1190
|
+
* An optional list of metadata items that you can associate with the Proton service template. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.
|
1190
1191
|
*/
|
1191
1192
|
tags?: TagList;
|
1192
1193
|
}
|
@@ -1218,11 +1219,11 @@ declare namespace Proton {
|
|
1218
1219
|
*/
|
1219
1220
|
source: TemplateVersionSourceInput;
|
1220
1221
|
/**
|
1221
|
-
* An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version. For more information about components, see Proton components in the Proton
|
1222
|
+
* An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version. For more information about components, see Proton components in the Proton User Guide.
|
1222
1223
|
*/
|
1223
1224
|
supportedComponentSources?: ServiceTemplateSupportedComponentSourceInputList;
|
1224
1225
|
/**
|
1225
|
-
* An optional list of metadata items that you can associate with the Proton service template version. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton
|
1226
|
+
* An optional list of metadata items that you can associate with the Proton service template version. A tag is a key-value pair. For more information, see Proton resources and tagging in the Proton User Guide.
|
1226
1227
|
*/
|
1227
1228
|
tags?: TagList;
|
1228
1229
|
/**
|
@@ -1238,11 +1239,11 @@ declare namespace Proton {
|
|
1238
1239
|
}
|
1239
1240
|
export interface CreateTemplateSyncConfigInput {
|
1240
1241
|
/**
|
1241
|
-
* The branch
|
1242
|
+
* The repository branch for your template.
|
1242
1243
|
*/
|
1243
1244
|
branch: GitBranchName;
|
1244
1245
|
/**
|
1245
|
-
* The name
|
1246
|
+
* The repository name (for example, myrepos/myrepo).
|
1246
1247
|
*/
|
1247
1248
|
repositoryName: RepositoryName;
|
1248
1249
|
/**
|
@@ -1338,7 +1339,7 @@ declare namespace Proton {
|
|
1338
1339
|
}
|
1339
1340
|
export interface DeleteRepositoryInput {
|
1340
1341
|
/**
|
1341
|
-
* The name
|
1342
|
+
* The repository name.
|
1342
1343
|
*/
|
1343
1344
|
name: RepositoryName;
|
1344
1345
|
/**
|
@@ -1348,7 +1349,7 @@ declare namespace Proton {
|
|
1348
1349
|
}
|
1349
1350
|
export interface DeleteRepositoryOutput {
|
1350
1351
|
/**
|
1351
|
-
* The repository detail data that's returned by Proton.
|
1352
|
+
* The deleted repository link's detail data that's returned by Proton.
|
1352
1353
|
*/
|
1353
1354
|
repository?: Repository;
|
1354
1355
|
}
|
@@ -1424,7 +1425,7 @@ declare namespace Proton {
|
|
1424
1425
|
*/
|
1425
1426
|
arn: EnvironmentArn;
|
1426
1427
|
/**
|
1427
|
-
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision. The environment must have a componentRoleArn to allow directly defined components to be associated with the environment. For more information about components, see Proton components in the Proton
|
1428
|
+
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision. The environment must have a componentRoleArn to allow directly defined components to be associated with the environment. For more information about components, see Proton components in the Proton User Guide.
|
1428
1429
|
*/
|
1429
1430
|
componentRoleArn?: Arn;
|
1430
1431
|
/**
|
@@ -1472,7 +1473,7 @@ declare namespace Proton {
|
|
1472
1473
|
*/
|
1473
1474
|
provisioning?: Provisioning;
|
1474
1475
|
/**
|
1475
|
-
* The
|
1476
|
+
* The linked repository that you use to host your rendered infrastructure templates for self-managed provisioning. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.
|
1476
1477
|
*/
|
1477
1478
|
provisioningRepository?: RepositoryBranch;
|
1478
1479
|
/**
|
@@ -1498,7 +1499,7 @@ declare namespace Proton {
|
|
1498
1499
|
*/
|
1499
1500
|
arn: EnvironmentAccountConnectionArn;
|
1500
1501
|
/**
|
1501
|
-
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account. The environment account connection must have a componentRoleArn to allow directly defined components to be associated with any environments running in the account. For more information about components, see Proton components in the Proton
|
1502
|
+
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account. The environment account connection must have a componentRoleArn to allow directly defined components to be associated with any environments running in the account. For more information about components, see Proton components in the Proton User Guide.
|
1502
1503
|
*/
|
1503
1504
|
componentRoleArn?: Arn;
|
1504
1505
|
/**
|
@@ -1545,7 +1546,7 @@ declare namespace Proton {
|
|
1545
1546
|
*/
|
1546
1547
|
arn: EnvironmentAccountConnectionArn;
|
1547
1548
|
/**
|
1548
|
-
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account. The environment account connection must have a componentRoleArn to allow directly defined components to be associated with any environments running in the account. For more information about components, see Proton components in the Proton
|
1549
|
+
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account. The environment account connection must have a componentRoleArn to allow directly defined components to be associated with any environments running in the account. For more information about components, see Proton components in the Proton User Guide.
|
1549
1550
|
*/
|
1550
1551
|
componentRoleArn?: Arn;
|
1551
1552
|
/**
|
@@ -1589,7 +1590,7 @@ declare namespace Proton {
|
|
1589
1590
|
*/
|
1590
1591
|
arn: EnvironmentArn;
|
1591
1592
|
/**
|
1592
|
-
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision. The environment must have a componentRoleArn to allow directly defined components to be associated with the environment. For more information about components, see Proton components in the Proton
|
1593
|
+
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision. The environment must have a componentRoleArn to allow directly defined components to be associated with the environment. For more information about components, see Proton components in the Proton User Guide.
|
1593
1594
|
*/
|
1594
1595
|
componentRoleArn?: Arn;
|
1595
1596
|
/**
|
@@ -1892,7 +1893,7 @@ declare namespace Proton {
|
|
1892
1893
|
*/
|
1893
1894
|
minorVersion: TemplateVersionPart;
|
1894
1895
|
/**
|
1895
|
-
* The name of the environment template a version of which you want to get detailed data for
|
1896
|
+
* The name of the environment template a version of which you want to get detailed data for.
|
1896
1897
|
*/
|
1897
1898
|
templateName: ResourceName;
|
1898
1899
|
}
|
@@ -1914,7 +1915,7 @@ declare namespace Proton {
|
|
1914
1915
|
}
|
1915
1916
|
export interface GetRepositoryOutput {
|
1916
1917
|
/**
|
1917
|
-
* The repository detail data that's returned by Proton.
|
1918
|
+
* The repository link's detail data that's returned by Proton.
|
1918
1919
|
*/
|
1919
1920
|
repository: Repository;
|
1920
1921
|
}
|
@@ -2279,7 +2280,7 @@ declare namespace Proton {
|
|
2279
2280
|
*/
|
2280
2281
|
nextToken?: NextToken;
|
2281
2282
|
/**
|
2282
|
-
* An array of
|
2283
|
+
* An array of repository links.
|
2283
2284
|
*/
|
2284
2285
|
repositories: RepositorySummaryList;
|
2285
2286
|
}
|
@@ -2567,7 +2568,7 @@ declare namespace Proton {
|
|
2567
2568
|
*/
|
2568
2569
|
name?: ProvisionedResourceName;
|
2569
2570
|
/**
|
2570
|
-
* The resource provisioning engine. At this time, CLOUDFORMATION can be used for Amazon Web Services-managed provisioning, and TERRAFORM can be used for self-managed provisioning. For more information, see Self-managed provisioning in the Proton
|
2571
|
+
* The resource provisioning engine. At this time, CLOUDFORMATION can be used for Amazon Web Services-managed provisioning, and TERRAFORM can be used for self-managed provisioning. For more information, see Self-managed provisioning in the Proton User Guide.
|
2571
2572
|
*/
|
2572
2573
|
provisioningEngine?: ProvisionedResourceEngine;
|
2573
2574
|
}
|
@@ -2590,11 +2591,11 @@ declare namespace Proton {
|
|
2590
2591
|
}
|
2591
2592
|
export interface Repository {
|
2592
2593
|
/**
|
2593
|
-
* The
|
2594
|
+
* The Amazon Resource Name (ARN) of the linked repository.
|
2594
2595
|
*/
|
2595
2596
|
arn: RepositoryArn;
|
2596
2597
|
/**
|
2597
|
-
* The
|
2598
|
+
* The Amazon Resource Name (ARN) of your AWS CodeStar connection that connects Proton to your repository provider account.
|
2598
2599
|
*/
|
2599
2600
|
connectionArn: Arn;
|
2600
2601
|
/**
|
@@ -2613,7 +2614,7 @@ declare namespace Proton {
|
|
2613
2614
|
export type RepositoryArn = string;
|
2614
2615
|
export interface RepositoryBranch {
|
2615
2616
|
/**
|
2616
|
-
* The Amazon Resource Name (ARN) of the repository
|
2617
|
+
* The Amazon Resource Name (ARN) of the linked repository.
|
2617
2618
|
*/
|
2618
2619
|
arn: RepositoryArn;
|
2619
2620
|
/**
|
@@ -2648,7 +2649,7 @@ declare namespace Proton {
|
|
2648
2649
|
export type RepositoryProvider = "GITHUB"|"GITHUB_ENTERPRISE"|"BITBUCKET"|string;
|
2649
2650
|
export interface RepositorySummary {
|
2650
2651
|
/**
|
2651
|
-
* The Amazon Resource Name (ARN)
|
2652
|
+
* The Amazon Resource Name (ARN) of the linked repository.
|
2652
2653
|
*/
|
2653
2654
|
arn: RepositoryArn;
|
2654
2655
|
/**
|
@@ -2828,7 +2829,7 @@ declare namespace Proton {
|
|
2828
2829
|
*/
|
2829
2830
|
pipeline?: ServicePipeline;
|
2830
2831
|
/**
|
2831
|
-
* The Amazon Resource Name (ARN) of the repository connection. For more information, see
|
2832
|
+
* The Amazon Resource Name (ARN) of the repository connection. For more information, see Setting up an AWS CodeStar connection in the Proton User Guide.
|
2832
2833
|
*/
|
2833
2834
|
repositoryConnectionArn?: Arn;
|
2834
2835
|
/**
|
@@ -3159,7 +3160,7 @@ declare namespace Proton {
|
|
3159
3160
|
*/
|
3160
3161
|
statusMessage?: StatusMessage;
|
3161
3162
|
/**
|
3162
|
-
* An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version. For more information about components, see Proton components in the Proton
|
3163
|
+
* An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version. For more information about components, see Proton components in the Proton User Guide.
|
3163
3164
|
*/
|
3164
3165
|
supportedComponentSources?: ServiceTemplateSupportedComponentSourceInputList;
|
3165
3166
|
/**
|
@@ -3251,7 +3252,7 @@ declare namespace Proton {
|
|
3251
3252
|
*/
|
3252
3253
|
branch: GitBranchName;
|
3253
3254
|
/**
|
3254
|
-
* The name
|
3255
|
+
* The repository name (for example, myrepos/myrepo).
|
3255
3256
|
*/
|
3256
3257
|
repositoryName: RepositoryName;
|
3257
3258
|
/**
|
@@ -3295,11 +3296,15 @@ declare namespace Proton {
|
|
3295
3296
|
}
|
3296
3297
|
export interface UpdateAccountSettingsInput {
|
3297
3298
|
/**
|
3298
|
-
*
|
3299
|
+
* Set to true to remove a configured pipeline repository from the account settings. Don't set this field if you are updating the configured pipeline repository.
|
3300
|
+
*/
|
3301
|
+
deletePipelineProvisioningRepository?: Boolean;
|
3302
|
+
/**
|
3303
|
+
* A linked repository for pipeline provisioning. Specify it if you have environments configured for self-managed provisioning with services that include pipelines. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository. To remove a previously configured repository, set deletePipelineProvisioningRepository to true, and don't set pipelineProvisioningRepository.
|
3299
3304
|
*/
|
3300
3305
|
pipelineProvisioningRepository?: RepositoryBranchInput;
|
3301
3306
|
/**
|
3302
|
-
* The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Assumed by Proton for Amazon Web Services-managed provisioning, and by customer-owned automation for self-managed provisioning.
|
3307
|
+
* The Amazon Resource Name (ARN) of the service role you want to use for provisioning pipelines. Assumed by Proton for Amazon Web Services-managed provisioning, and by customer-owned automation for self-managed provisioning. To remove a previously configured ARN, specify an empty string.
|
3303
3308
|
*/
|
3304
3309
|
pipelineServiceRoleArn?: PipelineRoleArn;
|
3305
3310
|
}
|
@@ -3347,7 +3352,7 @@ declare namespace Proton {
|
|
3347
3352
|
}
|
3348
3353
|
export interface UpdateEnvironmentAccountConnectionInput {
|
3349
3354
|
/**
|
3350
|
-
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account. The environment account connection must have a componentRoleArn to allow directly defined components to be associated with any environments running in the account. For more information about components, see Proton components in the Proton
|
3355
|
+
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account. The environment account connection must have a componentRoleArn to allow directly defined components to be associated with any environments running in the account. For more information about components, see Proton components in the Proton User Guide.
|
3351
3356
|
*/
|
3352
3357
|
componentRoleArn?: Arn;
|
3353
3358
|
/**
|
@@ -3367,7 +3372,7 @@ declare namespace Proton {
|
|
3367
3372
|
}
|
3368
3373
|
export interface UpdateEnvironmentInput {
|
3369
3374
|
/**
|
3370
|
-
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision. The environment must have a componentRoleArn to allow directly defined components to be associated with the environment. For more information about components, see Proton components in the Proton
|
3375
|
+
* The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in this environment. It determines the scope of infrastructure that a component can provision. The environment must have a componentRoleArn to allow directly defined components to be associated with the environment. For more information about components, see Proton components in the Proton User Guide.
|
3371
3376
|
*/
|
3372
3377
|
componentRoleArn?: Arn;
|
3373
3378
|
/**
|
@@ -3391,7 +3396,7 @@ declare namespace Proton {
|
|
3391
3396
|
*/
|
3392
3397
|
protonServiceRoleArn?: Arn;
|
3393
3398
|
/**
|
3394
|
-
* The
|
3399
|
+
* The linked repository that you use to host your rendered infrastructure templates for self-managed provisioning. A linked repository is a repository that has been registered with Proton. For more information, see CreateRepository.
|
3395
3400
|
*/
|
3396
3401
|
provisioningRepository?: RepositoryBranchInput;
|
3397
3402
|
/**
|
@@ -3471,7 +3476,7 @@ declare namespace Proton {
|
|
3471
3476
|
*/
|
3472
3477
|
name: ResourceName;
|
3473
3478
|
/**
|
3474
|
-
* Lists the service instances to add and the existing service instances to remain. Omit the existing service instances to delete from the list. Don't include edits to the existing service instances or pipeline. For more information, see Edit a service in the Proton
|
3479
|
+
* Lists the service instances to add and the existing service instances to remain. Omit the existing service instances to delete from the list. Don't include edits to the existing service instances or pipeline. For more information, see Edit a service in the Proton User Guide.
|
3475
3480
|
*/
|
3476
3481
|
spec?: SpecContents;
|
3477
3482
|
}
|
@@ -3583,7 +3588,7 @@ declare namespace Proton {
|
|
3583
3588
|
*/
|
3584
3589
|
status?: TemplateVersionStatus;
|
3585
3590
|
/**
|
3586
|
-
* An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version. A change to supportedComponentSources doesn't impact existing component attachments to instances based on this template version. A change only affects later associations. For more information about components, see Proton components in the Proton
|
3591
|
+
* An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version. A change to supportedComponentSources doesn't impact existing component attachments to instances based on this template version. A change only affects later associations. For more information about components, see Proton components in the Proton User Guide.
|
3587
3592
|
*/
|
3588
3593
|
supportedComponentSources?: ServiceTemplateSupportedComponentSourceInputList;
|
3589
3594
|
/**
|
@@ -3599,11 +3604,11 @@ declare namespace Proton {
|
|
3599
3604
|
}
|
3600
3605
|
export interface UpdateTemplateSyncConfigInput {
|
3601
3606
|
/**
|
3602
|
-
* The repository branch.
|
3607
|
+
* The repository branch for your template.
|
3603
3608
|
*/
|
3604
3609
|
branch: GitBranchName;
|
3605
3610
|
/**
|
3606
|
-
* The name
|
3611
|
+
* The repository name (for example, myrepos/myrepo).
|
3607
3612
|
*/
|
3608
3613
|
repositoryName: RepositoryName;
|
3609
3614
|
/**
|