Interface ProtonAsyncClient
- All Superinterfaces:
AutoCloseable
,AwsClient
,SdkAutoCloseable
,SdkClient
builder()
method.The asynchronous client performs non-blocking I/O when configured with any SdkAsyncHttpClient
supported in the SDK. However, full non-blocking is not guaranteed as the async client may perform blocking calls in
some cases such as credentials retrieval and endpoint discovery as part of the async API call.
This is the Proton Service API Reference. It provides descriptions, syntax and usage examples for each of the actions and data types for the Proton service.
The documentation for each action shows the Query API request parameters and the XML response.
Alternatively, you can use the Amazon Web Services CLI to access an API. For more information, see the Amazon Web Services Command Line Interface User Guide.
The Proton service is a two-pronged automation framework. Administrators create service templates to provide standardized infrastructure and deployment tooling for serverless and container based applications. Developers, in turn, select from the available service templates to automate their application or service deployments.
Because administrators define the infrastructure and tooling that Proton deploys and manages, they need permissions to use all of the listed API operations.
When developers select a specific infrastructure and tooling set, Proton deploys their applications. To monitor their applications that are running on Proton, developers need permissions to the service create, list, update and delete API operations and the service instance list and update API operations.
To learn more about Proton, see the Proton User Guide.
Ensuring Idempotency
When you make a mutating API request, the request typically returns a result before the asynchronous workflows of the operation are complete. Operations might also time out or encounter other server issues before they're complete, even if the request already returned a result. This might make it difficult to determine whether the request succeeded. Moreover, you might need to retry the request multiple times to ensure that the operation completes successfully. However, if the original request and the subsequent retries are successful, the operation occurs multiple times. This means that you might create more resources than you intended.
Idempotency ensures that an API request action completes no more than one time. With an idempotent request, if the original request action completes successfully, any subsequent retries complete successfully without performing any further actions. However, the result might contain updated information, such as the current creation status.
The following lists of APIs are grouped according to methods that ensure idempotency.
Idempotent create APIs with a client token
The API actions in this list support idempotency with the use of a client token. The corresponding Amazon Web Services CLI commands also support idempotency using a client token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. To make an idempotent API request using one of these actions, specify a client token in the request. We recommend that you don't reuse the same client token for other API requests. If you don’t provide a client token for these APIs, a default client token is automatically provided by SDKs.
Given a request action that has succeeded:
If you retry the request using the same client token and the same parameters, the retry succeeds without performing any further actions other than returning the original resource detail data in the response.
If you retry the request using the same client token, but one or more of the parameters are different, the retry
throws a ValidationException
with an IdempotentParameterMismatch
error.
Client tokens expire eight hours after a request is made. If you retry the request with the expired token, a new resource is created.
If the original resource is deleted and you retry the request, a new resource is created.
Idempotent create APIs with a client token:
-
CreateEnvironmentTemplateVersion
-
CreateServiceTemplateVersion
-
CreateEnvironmentAccountConnection
Idempotent create APIs
Given a request action that has succeeded:
If you retry the request with an API from this group, and the original resource hasn't been modified, the retry succeeds without performing any further actions other than returning the original resource detail data in the response.
If the original resource has been modified, the retry throws a ConflictException
.
If you retry with different input parameters, the retry throws a ValidationException
with an
IdempotentParameterMismatch
error.
Idempotent create APIs:
-
CreateEnvironmentTemplate
-
CreateServiceTemplate
-
CreateEnvironment
-
CreateService
Idempotent delete APIs
Given a request action that has succeeded:
When you retry the request with an API from this group and the resource was deleted, its metadata is returned in the response.
If you retry and the resource doesn't exist, the response is empty.
In both cases, the retry succeeds.
Idempotent delete APIs:
-
DeleteEnvironmentTemplate
-
DeleteEnvironmentTemplateVersion
-
DeleteServiceTemplate
-
DeleteServiceTemplateVersion
-
DeleteEnvironmentAccountConnection
Asynchronous idempotent delete APIs
Given a request action that has succeeded:
If you retry the request with an API from this group, if the original request delete operation status is
DELETE_IN_PROGRESS
, the retry returns the resource detail data in the response without performing any
further actions.
If the original request delete operation is complete, a retry returns an empty response.
Asynchronous idempotent delete APIs:
-
DeleteEnvironment
-
DeleteService
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Value for looking up the service's metadata from theServiceMetadataProvider
.static final String
-
Method Summary
Modifier and TypeMethodDescriptionacceptEnvironmentAccountConnection
(Consumer<AcceptEnvironmentAccountConnectionRequest.Builder> acceptEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.acceptEnvironmentAccountConnection
(AcceptEnvironmentAccountConnectionRequest acceptEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.static ProtonAsyncClientBuilder
builder()
Create a builder that can be used to configure and create aProtonAsyncClient
.cancelComponentDeployment
(Consumer<CancelComponentDeploymentRequest.Builder> cancelComponentDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.cancelComponentDeployment
(CancelComponentDeploymentRequest cancelComponentDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.cancelEnvironmentDeployment
(Consumer<CancelEnvironmentDeploymentRequest.Builder> cancelEnvironmentDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.cancelEnvironmentDeployment
(CancelEnvironmentDeploymentRequest cancelEnvironmentDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.cancelServiceInstanceDeployment
(Consumer<CancelServiceInstanceDeploymentRequest.Builder> cancelServiceInstanceDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.cancelServiceInstanceDeployment
(CancelServiceInstanceDeploymentRequest cancelServiceInstanceDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.cancelServicePipelineDeployment
(Consumer<CancelServicePipelineDeploymentRequest.Builder> cancelServicePipelineDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.cancelServicePipelineDeployment
(CancelServicePipelineDeploymentRequest cancelServicePipelineDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.static ProtonAsyncClient
create()
Create aProtonAsyncClient
with the region loaded from theDefaultAwsRegionProviderChain
and credentials loaded from theDefaultCredentialsProvider
.default CompletableFuture
<CreateComponentResponse> createComponent
(Consumer<CreateComponentRequest.Builder> createComponentRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<CreateComponentResponse> createComponent
(CreateComponentRequest createComponentRequest) Deprecated.AWS Proton is not accepting new customers.createEnvironment
(Consumer<CreateEnvironmentRequest.Builder> createEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.createEnvironment
(CreateEnvironmentRequest createEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.createEnvironmentAccountConnection
(Consumer<CreateEnvironmentAccountConnectionRequest.Builder> createEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.createEnvironmentAccountConnection
(CreateEnvironmentAccountConnectionRequest createEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.createEnvironmentTemplate
(Consumer<CreateEnvironmentTemplateRequest.Builder> createEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.createEnvironmentTemplate
(CreateEnvironmentTemplateRequest createEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.createEnvironmentTemplateVersion
(Consumer<CreateEnvironmentTemplateVersionRequest.Builder> createEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.createEnvironmentTemplateVersion
(CreateEnvironmentTemplateVersionRequest createEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.createRepository
(Consumer<CreateRepositoryRequest.Builder> createRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.createRepository
(CreateRepositoryRequest createRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<CreateServiceResponse> createService
(Consumer<CreateServiceRequest.Builder> createServiceRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<CreateServiceResponse> createService
(CreateServiceRequest createServiceRequest) Deprecated.AWS Proton is not accepting new customers.createServiceInstance
(Consumer<CreateServiceInstanceRequest.Builder> createServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.createServiceInstance
(CreateServiceInstanceRequest createServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.createServiceSyncConfig
(Consumer<CreateServiceSyncConfigRequest.Builder> createServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.createServiceSyncConfig
(CreateServiceSyncConfigRequest createServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.createServiceTemplate
(Consumer<CreateServiceTemplateRequest.Builder> createServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.createServiceTemplate
(CreateServiceTemplateRequest createServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.createServiceTemplateVersion
(Consumer<CreateServiceTemplateVersionRequest.Builder> createServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.createServiceTemplateVersion
(CreateServiceTemplateVersionRequest createServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.createTemplateSyncConfig
(Consumer<CreateTemplateSyncConfigRequest.Builder> createTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.createTemplateSyncConfig
(CreateTemplateSyncConfigRequest createTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<DeleteComponentResponse> deleteComponent
(Consumer<DeleteComponentRequest.Builder> deleteComponentRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<DeleteComponentResponse> deleteComponent
(DeleteComponentRequest deleteComponentRequest) Deprecated.AWS Proton is not accepting new customers.deleteDeployment
(Consumer<DeleteDeploymentRequest.Builder> deleteDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.deleteDeployment
(DeleteDeploymentRequest deleteDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.deleteEnvironment
(Consumer<DeleteEnvironmentRequest.Builder> deleteEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.deleteEnvironment
(DeleteEnvironmentRequest deleteEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.deleteEnvironmentAccountConnection
(Consumer<DeleteEnvironmentAccountConnectionRequest.Builder> deleteEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.deleteEnvironmentAccountConnection
(DeleteEnvironmentAccountConnectionRequest deleteEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.deleteEnvironmentTemplate
(Consumer<DeleteEnvironmentTemplateRequest.Builder> deleteEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.deleteEnvironmentTemplate
(DeleteEnvironmentTemplateRequest deleteEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.deleteEnvironmentTemplateVersion
(Consumer<DeleteEnvironmentTemplateVersionRequest.Builder> deleteEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.deleteEnvironmentTemplateVersion
(DeleteEnvironmentTemplateVersionRequest deleteEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.deleteRepository
(Consumer<DeleteRepositoryRequest.Builder> deleteRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.deleteRepository
(DeleteRepositoryRequest deleteRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<DeleteServiceResponse> deleteService
(Consumer<DeleteServiceRequest.Builder> deleteServiceRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<DeleteServiceResponse> deleteService
(DeleteServiceRequest deleteServiceRequest) Deprecated.AWS Proton is not accepting new customers.deleteServiceSyncConfig
(Consumer<DeleteServiceSyncConfigRequest.Builder> deleteServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.deleteServiceSyncConfig
(DeleteServiceSyncConfigRequest deleteServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.deleteServiceTemplate
(Consumer<DeleteServiceTemplateRequest.Builder> deleteServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.deleteServiceTemplate
(DeleteServiceTemplateRequest deleteServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.deleteServiceTemplateVersion
(Consumer<DeleteServiceTemplateVersionRequest.Builder> deleteServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.deleteServiceTemplateVersion
(DeleteServiceTemplateVersionRequest deleteServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.deleteTemplateSyncConfig
(Consumer<DeleteTemplateSyncConfigRequest.Builder> deleteTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.deleteTemplateSyncConfig
(DeleteTemplateSyncConfigRequest deleteTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.getAccountSettings
(Consumer<GetAccountSettingsRequest.Builder> getAccountSettingsRequest) Deprecated.AWS Proton is not accepting new customers.getAccountSettings
(GetAccountSettingsRequest getAccountSettingsRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<GetComponentResponse> getComponent
(Consumer<GetComponentRequest.Builder> getComponentRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<GetComponentResponse> getComponent
(GetComponentRequest getComponentRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<GetDeploymentResponse> getDeployment
(Consumer<GetDeploymentRequest.Builder> getDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<GetDeploymentResponse> getDeployment
(GetDeploymentRequest getDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<GetEnvironmentResponse> getEnvironment
(Consumer<GetEnvironmentRequest.Builder> getEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<GetEnvironmentResponse> getEnvironment
(GetEnvironmentRequest getEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.getEnvironmentAccountConnection
(Consumer<GetEnvironmentAccountConnectionRequest.Builder> getEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.getEnvironmentAccountConnection
(GetEnvironmentAccountConnectionRequest getEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.getEnvironmentTemplate
(Consumer<GetEnvironmentTemplateRequest.Builder> getEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.getEnvironmentTemplate
(GetEnvironmentTemplateRequest getEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.getEnvironmentTemplateVersion
(Consumer<GetEnvironmentTemplateVersionRequest.Builder> getEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.getEnvironmentTemplateVersion
(GetEnvironmentTemplateVersionRequest getEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<GetRepositoryResponse> getRepository
(Consumer<GetRepositoryRequest.Builder> getRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<GetRepositoryResponse> getRepository
(GetRepositoryRequest getRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.getRepositorySyncStatus
(Consumer<GetRepositorySyncStatusRequest.Builder> getRepositorySyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.getRepositorySyncStatus
(GetRepositorySyncStatusRequest getRepositorySyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.getResourcesSummary
(Consumer<GetResourcesSummaryRequest.Builder> getResourcesSummaryRequest) Deprecated.AWS Proton is not accepting new customers.getResourcesSummary
(GetResourcesSummaryRequest getResourcesSummaryRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<GetServiceResponse> getService
(Consumer<GetServiceRequest.Builder> getServiceRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<GetServiceResponse> getService
(GetServiceRequest getServiceRequest) Deprecated.AWS Proton is not accepting new customers.getServiceInstance
(Consumer<GetServiceInstanceRequest.Builder> getServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.getServiceInstance
(GetServiceInstanceRequest getServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.getServiceInstanceSyncStatus
(Consumer<GetServiceInstanceSyncStatusRequest.Builder> getServiceInstanceSyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.getServiceInstanceSyncStatus
(GetServiceInstanceSyncStatusRequest getServiceInstanceSyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.getServiceSyncBlockerSummary
(Consumer<GetServiceSyncBlockerSummaryRequest.Builder> getServiceSyncBlockerSummaryRequest) Deprecated.AWS Proton is not accepting new customers.getServiceSyncBlockerSummary
(GetServiceSyncBlockerSummaryRequest getServiceSyncBlockerSummaryRequest) Deprecated.AWS Proton is not accepting new customers.getServiceSyncConfig
(Consumer<GetServiceSyncConfigRequest.Builder> getServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.getServiceSyncConfig
(GetServiceSyncConfigRequest getServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.getServiceTemplate
(Consumer<GetServiceTemplateRequest.Builder> getServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.getServiceTemplate
(GetServiceTemplateRequest getServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.getServiceTemplateVersion
(Consumer<GetServiceTemplateVersionRequest.Builder> getServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.getServiceTemplateVersion
(GetServiceTemplateVersionRequest getServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.getTemplateSyncConfig
(Consumer<GetTemplateSyncConfigRequest.Builder> getTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.getTemplateSyncConfig
(GetTemplateSyncConfigRequest getTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.getTemplateSyncStatus
(Consumer<GetTemplateSyncStatusRequest.Builder> getTemplateSyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.getTemplateSyncStatus
(GetTemplateSyncStatusRequest getTemplateSyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.listComponentOutputs
(Consumer<ListComponentOutputsRequest.Builder> listComponentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listComponentOutputs
(ListComponentOutputsRequest listComponentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.default ListComponentOutputsPublisher
listComponentOutputsPaginator
(Consumer<ListComponentOutputsRequest.Builder> listComponentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.default ListComponentOutputsPublisher
listComponentOutputsPaginator
(ListComponentOutputsRequest listComponentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listComponentProvisionedResources
(Consumer<ListComponentProvisionedResourcesRequest.Builder> listComponentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listComponentProvisionedResources
(ListComponentProvisionedResourcesRequest listComponentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listComponentProvisionedResourcesPaginator
(Consumer<ListComponentProvisionedResourcesRequest.Builder> listComponentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listComponentProvisionedResourcesPaginator
(ListComponentProvisionedResourcesRequest listComponentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<ListComponentsResponse> listComponents
(Consumer<ListComponentsRequest.Builder> listComponentsRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<ListComponentsResponse> listComponents
(ListComponentsRequest listComponentsRequest) Deprecated.AWS Proton is not accepting new customers.default ListComponentsPublisher
listComponentsPaginator
(Consumer<ListComponentsRequest.Builder> listComponentsRequest) Deprecated.AWS Proton is not accepting new customers.default ListComponentsPublisher
listComponentsPaginator
(ListComponentsRequest listComponentsRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<ListDeploymentsResponse> listDeployments
(Consumer<ListDeploymentsRequest.Builder> listDeploymentsRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<ListDeploymentsResponse> listDeployments
(ListDeploymentsRequest listDeploymentsRequest) Deprecated.AWS Proton is not accepting new customers.default ListDeploymentsPublisher
listDeploymentsPaginator
(Consumer<ListDeploymentsRequest.Builder> listDeploymentsRequest) Deprecated.AWS Proton is not accepting new customers.default ListDeploymentsPublisher
listDeploymentsPaginator
(ListDeploymentsRequest listDeploymentsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentAccountConnections
(Consumer<ListEnvironmentAccountConnectionsRequest.Builder> listEnvironmentAccountConnectionsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentAccountConnections
(ListEnvironmentAccountConnectionsRequest listEnvironmentAccountConnectionsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentAccountConnectionsPaginator
(Consumer<ListEnvironmentAccountConnectionsRequest.Builder> listEnvironmentAccountConnectionsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentAccountConnectionsPaginator
(ListEnvironmentAccountConnectionsRequest listEnvironmentAccountConnectionsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentOutputs
(Consumer<ListEnvironmentOutputsRequest.Builder> listEnvironmentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentOutputs
(ListEnvironmentOutputsRequest listEnvironmentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.default ListEnvironmentOutputsPublisher
listEnvironmentOutputsPaginator
(Consumer<ListEnvironmentOutputsRequest.Builder> listEnvironmentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.default ListEnvironmentOutputsPublisher
listEnvironmentOutputsPaginator
(ListEnvironmentOutputsRequest listEnvironmentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentProvisionedResources
(Consumer<ListEnvironmentProvisionedResourcesRequest.Builder> listEnvironmentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentProvisionedResources
(ListEnvironmentProvisionedResourcesRequest listEnvironmentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentProvisionedResourcesPaginator
(Consumer<ListEnvironmentProvisionedResourcesRequest.Builder> listEnvironmentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentProvisionedResourcesPaginator
(ListEnvironmentProvisionedResourcesRequest listEnvironmentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironments
(Consumer<ListEnvironmentsRequest.Builder> listEnvironmentsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironments
(ListEnvironmentsRequest listEnvironmentsRequest) Deprecated.AWS Proton is not accepting new customers.default ListEnvironmentsPublisher
listEnvironmentsPaginator
(Consumer<ListEnvironmentsRequest.Builder> listEnvironmentsRequest) Deprecated.AWS Proton is not accepting new customers.default ListEnvironmentsPublisher
listEnvironmentsPaginator
(ListEnvironmentsRequest listEnvironmentsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentTemplates
(Consumer<ListEnvironmentTemplatesRequest.Builder> listEnvironmentTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentTemplates
(ListEnvironmentTemplatesRequest listEnvironmentTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentTemplatesPaginator
(Consumer<ListEnvironmentTemplatesRequest.Builder> listEnvironmentTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentTemplatesPaginator
(ListEnvironmentTemplatesRequest listEnvironmentTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentTemplateVersions
(Consumer<ListEnvironmentTemplateVersionsRequest.Builder> listEnvironmentTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentTemplateVersions
(ListEnvironmentTemplateVersionsRequest listEnvironmentTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentTemplateVersionsPaginator
(Consumer<ListEnvironmentTemplateVersionsRequest.Builder> listEnvironmentTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.listEnvironmentTemplateVersionsPaginator
(ListEnvironmentTemplateVersionsRequest listEnvironmentTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.listRepositories
(Consumer<ListRepositoriesRequest.Builder> listRepositoriesRequest) Deprecated.AWS Proton is not accepting new customers.listRepositories
(ListRepositoriesRequest listRepositoriesRequest) Deprecated.AWS Proton is not accepting new customers.default ListRepositoriesPublisher
listRepositoriesPaginator
(Consumer<ListRepositoriesRequest.Builder> listRepositoriesRequest) Deprecated.AWS Proton is not accepting new customers.default ListRepositoriesPublisher
listRepositoriesPaginator
(ListRepositoriesRequest listRepositoriesRequest) Deprecated.AWS Proton is not accepting new customers.listRepositorySyncDefinitions
(Consumer<ListRepositorySyncDefinitionsRequest.Builder> listRepositorySyncDefinitionsRequest) Deprecated.AWS Proton is not accepting new customers.listRepositorySyncDefinitions
(ListRepositorySyncDefinitionsRequest listRepositorySyncDefinitionsRequest) Deprecated.AWS Proton is not accepting new customers.listRepositorySyncDefinitionsPaginator
(Consumer<ListRepositorySyncDefinitionsRequest.Builder> listRepositorySyncDefinitionsRequest) Deprecated.AWS Proton is not accepting new customers.listRepositorySyncDefinitionsPaginator
(ListRepositorySyncDefinitionsRequest listRepositorySyncDefinitionsRequest) Deprecated.AWS Proton is not accepting new customers.listServiceInstanceOutputs
(Consumer<ListServiceInstanceOutputsRequest.Builder> listServiceInstanceOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listServiceInstanceOutputs
(ListServiceInstanceOutputsRequest listServiceInstanceOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listServiceInstanceOutputsPaginator
(Consumer<ListServiceInstanceOutputsRequest.Builder> listServiceInstanceOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listServiceInstanceOutputsPaginator
(ListServiceInstanceOutputsRequest listServiceInstanceOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listServiceInstanceProvisionedResources
(Consumer<ListServiceInstanceProvisionedResourcesRequest.Builder> listServiceInstanceProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listServiceInstanceProvisionedResources
(ListServiceInstanceProvisionedResourcesRequest listServiceInstanceProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listServiceInstanceProvisionedResourcesPaginator
(Consumer<ListServiceInstanceProvisionedResourcesRequest.Builder> listServiceInstanceProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listServiceInstanceProvisionedResourcesPaginator
(ListServiceInstanceProvisionedResourcesRequest listServiceInstanceProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listServiceInstances
(Consumer<ListServiceInstancesRequest.Builder> listServiceInstancesRequest) Deprecated.AWS Proton is not accepting new customers.listServiceInstances
(ListServiceInstancesRequest listServiceInstancesRequest) Deprecated.AWS Proton is not accepting new customers.default ListServiceInstancesPublisher
listServiceInstancesPaginator
(Consumer<ListServiceInstancesRequest.Builder> listServiceInstancesRequest) Deprecated.AWS Proton is not accepting new customers.default ListServiceInstancesPublisher
listServiceInstancesPaginator
(ListServiceInstancesRequest listServiceInstancesRequest) Deprecated.AWS Proton is not accepting new customers.listServicePipelineOutputs
(Consumer<ListServicePipelineOutputsRequest.Builder> listServicePipelineOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listServicePipelineOutputs
(ListServicePipelineOutputsRequest listServicePipelineOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listServicePipelineOutputsPaginator
(Consumer<ListServicePipelineOutputsRequest.Builder> listServicePipelineOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listServicePipelineOutputsPaginator
(ListServicePipelineOutputsRequest listServicePipelineOutputsRequest) Deprecated.AWS Proton is not accepting new customers.listServicePipelineProvisionedResources
(Consumer<ListServicePipelineProvisionedResourcesRequest.Builder> listServicePipelineProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listServicePipelineProvisionedResources
(ListServicePipelineProvisionedResourcesRequest listServicePipelineProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listServicePipelineProvisionedResourcesPaginator
(Consumer<ListServicePipelineProvisionedResourcesRequest.Builder> listServicePipelineProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.listServicePipelineProvisionedResourcesPaginator
(ListServicePipelineProvisionedResourcesRequest listServicePipelineProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<ListServicesResponse> listServices
(Consumer<ListServicesRequest.Builder> listServicesRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<ListServicesResponse> listServices
(ListServicesRequest listServicesRequest) Deprecated.AWS Proton is not accepting new customers.default ListServicesPublisher
listServicesPaginator
(Consumer<ListServicesRequest.Builder> listServicesRequest) Deprecated.AWS Proton is not accepting new customers.default ListServicesPublisher
listServicesPaginator
(ListServicesRequest listServicesRequest) Deprecated.AWS Proton is not accepting new customers.listServiceTemplates
(Consumer<ListServiceTemplatesRequest.Builder> listServiceTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.listServiceTemplates
(ListServiceTemplatesRequest listServiceTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.default ListServiceTemplatesPublisher
listServiceTemplatesPaginator
(Consumer<ListServiceTemplatesRequest.Builder> listServiceTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.default ListServiceTemplatesPublisher
listServiceTemplatesPaginator
(ListServiceTemplatesRequest listServiceTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.listServiceTemplateVersions
(Consumer<ListServiceTemplateVersionsRequest.Builder> listServiceTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.listServiceTemplateVersions
(ListServiceTemplateVersionsRequest listServiceTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.listServiceTemplateVersionsPaginator
(Consumer<ListServiceTemplateVersionsRequest.Builder> listServiceTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.listServiceTemplateVersionsPaginator
(ListServiceTemplateVersionsRequest listServiceTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.listTagsForResource
(Consumer<ListTagsForResourceRequest.Builder> listTagsForResourceRequest) Deprecated.AWS Proton is not accepting new customers.listTagsForResource
(ListTagsForResourceRequest listTagsForResourceRequest) Deprecated.AWS Proton is not accepting new customers.default ListTagsForResourcePublisher
listTagsForResourcePaginator
(Consumer<ListTagsForResourceRequest.Builder> listTagsForResourceRequest) Deprecated.AWS Proton is not accepting new customers.default ListTagsForResourcePublisher
listTagsForResourcePaginator
(ListTagsForResourceRequest listTagsForResourceRequest) Deprecated.AWS Proton is not accepting new customers.notifyResourceDeploymentStatusChange
(Consumer<NotifyResourceDeploymentStatusChangeRequest.Builder> notifyResourceDeploymentStatusChangeRequest) Deprecated.AWS Proton is not accepting new customers.notifyResourceDeploymentStatusChange
(NotifyResourceDeploymentStatusChangeRequest notifyResourceDeploymentStatusChangeRequest) Deprecated.AWS Proton is not accepting new customers.rejectEnvironmentAccountConnection
(Consumer<RejectEnvironmentAccountConnectionRequest.Builder> rejectEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.rejectEnvironmentAccountConnection
(RejectEnvironmentAccountConnectionRequest rejectEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.default ProtonServiceClientConfiguration
The SDK service client configuration exposes client settings to the user, e.g., ClientOverrideConfigurationdefault CompletableFuture
<TagResourceResponse> tagResource
(Consumer<TagResourceRequest.Builder> tagResourceRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<TagResourceResponse> tagResource
(TagResourceRequest tagResourceRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<UntagResourceResponse> untagResource
(Consumer<UntagResourceRequest.Builder> untagResourceRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<UntagResourceResponse> untagResource
(UntagResourceRequest untagResourceRequest) Deprecated.AWS Proton is not accepting new customers.updateAccountSettings
(Consumer<UpdateAccountSettingsRequest.Builder> updateAccountSettingsRequest) Deprecated.AWS Proton is not accepting new customers.updateAccountSettings
(UpdateAccountSettingsRequest updateAccountSettingsRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<UpdateComponentResponse> updateComponent
(Consumer<UpdateComponentRequest.Builder> updateComponentRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<UpdateComponentResponse> updateComponent
(UpdateComponentRequest updateComponentRequest) Deprecated.AWS Proton is not accepting new customers.updateEnvironment
(Consumer<UpdateEnvironmentRequest.Builder> updateEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.updateEnvironment
(UpdateEnvironmentRequest updateEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.updateEnvironmentAccountConnection
(Consumer<UpdateEnvironmentAccountConnectionRequest.Builder> updateEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.updateEnvironmentAccountConnection
(UpdateEnvironmentAccountConnectionRequest updateEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.updateEnvironmentTemplate
(Consumer<UpdateEnvironmentTemplateRequest.Builder> updateEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.updateEnvironmentTemplate
(UpdateEnvironmentTemplateRequest updateEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.updateEnvironmentTemplateVersion
(Consumer<UpdateEnvironmentTemplateVersionRequest.Builder> updateEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.updateEnvironmentTemplateVersion
(UpdateEnvironmentTemplateVersionRequest updateEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<UpdateServiceResponse> updateService
(Consumer<UpdateServiceRequest.Builder> updateServiceRequest) Deprecated.AWS Proton is not accepting new customers.default CompletableFuture
<UpdateServiceResponse> updateService
(UpdateServiceRequest updateServiceRequest) Deprecated.AWS Proton is not accepting new customers.updateServiceInstance
(Consumer<UpdateServiceInstanceRequest.Builder> updateServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.updateServiceInstance
(UpdateServiceInstanceRequest updateServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.updateServicePipeline
(Consumer<UpdateServicePipelineRequest.Builder> updateServicePipelineRequest) Deprecated.AWS Proton is not accepting new customers.updateServicePipeline
(UpdateServicePipelineRequest updateServicePipelineRequest) Deprecated.AWS Proton is not accepting new customers.updateServiceSyncBlocker
(Consumer<UpdateServiceSyncBlockerRequest.Builder> updateServiceSyncBlockerRequest) Deprecated.AWS Proton is not accepting new customers.updateServiceSyncBlocker
(UpdateServiceSyncBlockerRequest updateServiceSyncBlockerRequest) Deprecated.AWS Proton is not accepting new customers.updateServiceSyncConfig
(Consumer<UpdateServiceSyncConfigRequest.Builder> updateServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.updateServiceSyncConfig
(UpdateServiceSyncConfigRequest updateServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.updateServiceTemplate
(Consumer<UpdateServiceTemplateRequest.Builder> updateServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.updateServiceTemplate
(UpdateServiceTemplateRequest updateServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.updateServiceTemplateVersion
(Consumer<UpdateServiceTemplateVersionRequest.Builder> updateServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.updateServiceTemplateVersion
(UpdateServiceTemplateVersionRequest updateServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.updateTemplateSyncConfig
(Consumer<UpdateTemplateSyncConfigRequest.Builder> updateTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.updateTemplateSyncConfig
(UpdateTemplateSyncConfigRequest updateTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.default ProtonAsyncWaiter
waiter()
Create an instance ofProtonAsyncWaiter
using this client.Methods inherited from interface software.amazon.awssdk.utils.SdkAutoCloseable
close
Methods inherited from interface software.amazon.awssdk.core.SdkClient
serviceName
-
Field Details
-
SERVICE_NAME
- See Also:
-
SERVICE_METADATA_ID
Value for looking up the service's metadata from theServiceMetadataProvider
.- See Also:
-
-
Method Details
-
acceptEnvironmentAccountConnection
@Deprecated default CompletableFuture<AcceptEnvironmentAccountConnectionResponse> acceptEnvironmentAccountConnection(AcceptEnvironmentAccountConnectionRequest acceptEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
acceptEnvironmentAccountConnectionRequest
-- Returns:
- A Java Future containing the result of the AcceptEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
acceptEnvironmentAccountConnection
@Deprecated default CompletableFuture<AcceptEnvironmentAccountConnectionResponse> acceptEnvironmentAccountConnection(Consumer<AcceptEnvironmentAccountConnectionRequest.Builder> acceptEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
AcceptEnvironmentAccountConnectionRequest.Builder
avoiding the need to create one manually viaAcceptEnvironmentAccountConnectionRequest.builder()
- Parameters:
acceptEnvironmentAccountConnectionRequest
- AConsumer
that will call methods onAcceptEnvironmentAccountConnectionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the AcceptEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
cancelComponentDeployment
@Deprecated default CompletableFuture<CancelComponentDeploymentResponse> cancelComponentDeployment(CancelComponentDeploymentRequest cancelComponentDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
cancelComponentDeploymentRequest
-- Returns:
- A Java Future containing the result of the CancelComponentDeployment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
cancelComponentDeployment
@Deprecated default CompletableFuture<CancelComponentDeploymentResponse> cancelComponentDeployment(Consumer<CancelComponentDeploymentRequest.Builder> cancelComponentDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
CancelComponentDeploymentRequest.Builder
avoiding the need to create one manually viaCancelComponentDeploymentRequest.builder()
- Parameters:
cancelComponentDeploymentRequest
- AConsumer
that will call methods onCancelComponentDeploymentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CancelComponentDeployment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
cancelEnvironmentDeployment
@Deprecated default CompletableFuture<CancelEnvironmentDeploymentResponse> cancelEnvironmentDeployment(CancelEnvironmentDeploymentRequest cancelEnvironmentDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
cancelEnvironmentDeploymentRequest
-- Returns:
- A Java Future containing the result of the CancelEnvironmentDeployment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
cancelEnvironmentDeployment
@Deprecated default CompletableFuture<CancelEnvironmentDeploymentResponse> cancelEnvironmentDeployment(Consumer<CancelEnvironmentDeploymentRequest.Builder> cancelEnvironmentDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
CancelEnvironmentDeploymentRequest.Builder
avoiding the need to create one manually viaCancelEnvironmentDeploymentRequest.builder()
- Parameters:
cancelEnvironmentDeploymentRequest
- AConsumer
that will call methods onCancelEnvironmentDeploymentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CancelEnvironmentDeployment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
cancelServiceInstanceDeployment
@Deprecated default CompletableFuture<CancelServiceInstanceDeploymentResponse> cancelServiceInstanceDeployment(CancelServiceInstanceDeploymentRequest cancelServiceInstanceDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
cancelServiceInstanceDeploymentRequest
-- Returns:
- A Java Future containing the result of the CancelServiceInstanceDeployment operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
cancelServiceInstanceDeployment
@Deprecated default CompletableFuture<CancelServiceInstanceDeploymentResponse> cancelServiceInstanceDeployment(Consumer<CancelServiceInstanceDeploymentRequest.Builder> cancelServiceInstanceDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
CancelServiceInstanceDeploymentRequest.Builder
avoiding the need to create one manually viaCancelServiceInstanceDeploymentRequest.builder()
- Parameters:
cancelServiceInstanceDeploymentRequest
- AConsumer
that will call methods onCancelServiceInstanceDeploymentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CancelServiceInstanceDeployment operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
cancelServicePipelineDeployment
@Deprecated default CompletableFuture<CancelServicePipelineDeploymentResponse> cancelServicePipelineDeployment(CancelServicePipelineDeploymentRequest cancelServicePipelineDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
cancelServicePipelineDeploymentRequest
-- Returns:
- A Java Future containing the result of the CancelServicePipelineDeployment operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
cancelServicePipelineDeployment
@Deprecated default CompletableFuture<CancelServicePipelineDeploymentResponse> cancelServicePipelineDeployment(Consumer<CancelServicePipelineDeploymentRequest.Builder> cancelServicePipelineDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
CancelServicePipelineDeploymentRequest.Builder
avoiding the need to create one manually viaCancelServicePipelineDeploymentRequest.builder()
- Parameters:
cancelServicePipelineDeploymentRequest
- AConsumer
that will call methods onCancelServicePipelineDeploymentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CancelServicePipelineDeployment operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
createComponent
@Deprecated default CompletableFuture<CreateComponentResponse> createComponent(CreateComponentRequest createComponentRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
createComponentRequest
-- Returns:
- A Java Future containing the result of the CreateComponent operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createComponent
@Deprecated default CompletableFuture<CreateComponentResponse> createComponent(Consumer<CreateComponentRequest.Builder> createComponentRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
CreateComponentRequest.Builder
avoiding the need to create one manually viaCreateComponentRequest.builder()
- Parameters:
createComponentRequest
- AConsumer
that will call methods onCreateComponentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateComponent operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createEnvironment
@Deprecated default CompletableFuture<CreateEnvironmentResponse> createEnvironment(CreateEnvironmentRequest createEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
createEnvironmentRequest
-- Returns:
- A Java Future containing the result of the CreateEnvironment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
createEnvironment
@Deprecated default CompletableFuture<CreateEnvironmentResponse> createEnvironment(Consumer<CreateEnvironmentRequest.Builder> createEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
CreateEnvironmentRequest.Builder
avoiding the need to create one manually viaCreateEnvironmentRequest.builder()
- Parameters:
createEnvironmentRequest
- AConsumer
that will call methods onCreateEnvironmentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateEnvironment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
createEnvironmentAccountConnection
@Deprecated default CompletableFuture<CreateEnvironmentAccountConnectionResponse> createEnvironmentAccountConnection(CreateEnvironmentAccountConnectionRequest createEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
createEnvironmentAccountConnectionRequest
-- Returns:
- A Java Future containing the result of the CreateEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createEnvironmentAccountConnection
@Deprecated default CompletableFuture<CreateEnvironmentAccountConnectionResponse> createEnvironmentAccountConnection(Consumer<CreateEnvironmentAccountConnectionRequest.Builder> createEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
CreateEnvironmentAccountConnectionRequest.Builder
avoiding the need to create one manually viaCreateEnvironmentAccountConnectionRequest.builder()
- Parameters:
createEnvironmentAccountConnectionRequest
- AConsumer
that will call methods onCreateEnvironmentAccountConnectionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createEnvironmentTemplate
@Deprecated default CompletableFuture<CreateEnvironmentTemplateResponse> createEnvironmentTemplate(CreateEnvironmentTemplateRequest createEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.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 toCUSTOMER_MANAGED
. For more information, see Register and publish an environment template in the Proton User Guide.
- Parameters:
createEnvironmentTemplateRequest
-- Returns:
- A Java Future containing the result of the CreateEnvironmentTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
createEnvironmentTemplate
@Deprecated default CompletableFuture<CreateEnvironmentTemplateResponse> createEnvironmentTemplate(Consumer<CreateEnvironmentTemplateRequest.Builder> createEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.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 toCUSTOMER_MANAGED
. For more information, see Register and publish an environment template in the Proton User Guide.
This is a convenience which creates an instance of the
CreateEnvironmentTemplateRequest.Builder
avoiding the need to create one manually viaCreateEnvironmentTemplateRequest.builder()
- Parameters:
createEnvironmentTemplateRequest
- AConsumer
that will call methods onCreateEnvironmentTemplateRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateEnvironmentTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
createEnvironmentTemplateVersion
@Deprecated default CompletableFuture<CreateEnvironmentTemplateVersionResponse> createEnvironmentTemplateVersion(CreateEnvironmentTemplateVersionRequest createEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Create a new major or minor version of an environment template. A major version of an environment template is a version that isn't backwards compatible. A minor version of an environment template is a version that's backwards compatible within its major version.
- Parameters:
createEnvironmentTemplateVersionRequest
-- Returns:
- A Java Future containing the result of the CreateEnvironmentTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createEnvironmentTemplateVersion
@Deprecated default CompletableFuture<CreateEnvironmentTemplateVersionResponse> createEnvironmentTemplateVersion(Consumer<CreateEnvironmentTemplateVersionRequest.Builder> createEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Create a new major or minor version of an environment template. A major version of an environment template is a version that isn't backwards compatible. A minor version of an environment template is a version that's backwards compatible within its major version.
This is a convenience which creates an instance of the
CreateEnvironmentTemplateVersionRequest.Builder
avoiding the need to create one manually viaCreateEnvironmentTemplateVersionRequest.builder()
- Parameters:
createEnvironmentTemplateVersionRequest
- AConsumer
that will call methods onCreateEnvironmentTemplateVersionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateEnvironmentTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createRepository
@Deprecated default CompletableFuture<CreateRepositoryResponse> createRepository(CreateRepositoryRequest createRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
createRepositoryRequest
-- Returns:
- A Java Future containing the result of the CreateRepository operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createRepository
@Deprecated default CompletableFuture<CreateRepositoryResponse> createRepository(Consumer<CreateRepositoryRequest.Builder> createRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
CreateRepositoryRequest.Builder
avoiding the need to create one manually viaCreateRepositoryRequest.builder()
- Parameters:
createRepositoryRequest
- AConsumer
that will call methods onCreateRepositoryRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateRepository operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createService
@Deprecated default CompletableFuture<CreateServiceResponse> createService(CreateServiceRequest createServiceRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
createServiceRequest
-- Returns:
- A Java Future containing the result of the CreateService operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createService
@Deprecated default CompletableFuture<CreateServiceResponse> createService(Consumer<CreateServiceRequest.Builder> createServiceRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
CreateServiceRequest.Builder
avoiding the need to create one manually viaCreateServiceRequest.builder()
- Parameters:
createServiceRequest
- AConsumer
that will call methods onCreateServiceRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateService operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createServiceInstance
@Deprecated default CompletableFuture<CreateServiceInstanceResponse> createServiceInstance(CreateServiceInstanceRequest createServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.Create a service instance.
- Parameters:
createServiceInstanceRequest
-- Returns:
- A Java Future containing the result of the CreateServiceInstance operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createServiceInstance
@Deprecated default CompletableFuture<CreateServiceInstanceResponse> createServiceInstance(Consumer<CreateServiceInstanceRequest.Builder> createServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.Create a service instance.
This is a convenience which creates an instance of the
CreateServiceInstanceRequest.Builder
avoiding the need to create one manually viaCreateServiceInstanceRequest.builder()
- Parameters:
createServiceInstanceRequest
- AConsumer
that will call methods onCreateServiceInstanceRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateServiceInstance operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createServiceSyncConfig
@Deprecated default CompletableFuture<CreateServiceSyncConfigResponse> createServiceSyncConfig(CreateServiceSyncConfigRequest createServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Create the Proton Ops configuration file.
- Parameters:
createServiceSyncConfigRequest
-- Returns:
- A Java Future containing the result of the CreateServiceSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createServiceSyncConfig
@Deprecated default CompletableFuture<CreateServiceSyncConfigResponse> createServiceSyncConfig(Consumer<CreateServiceSyncConfigRequest.Builder> createServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Create the Proton Ops configuration file.
This is a convenience which creates an instance of the
CreateServiceSyncConfigRequest.Builder
avoiding the need to create one manually viaCreateServiceSyncConfigRequest.builder()
- Parameters:
createServiceSyncConfigRequest
- AConsumer
that will call methods onCreateServiceSyncConfigRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateServiceSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createServiceTemplate
@Deprecated default CompletableFuture<CreateServiceTemplateResponse> createServiceTemplate(CreateServiceTemplateRequest createServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
createServiceTemplateRequest
-- Returns:
- A Java Future containing the result of the CreateServiceTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createServiceTemplate
@Deprecated default CompletableFuture<CreateServiceTemplateResponse> createServiceTemplate(Consumer<CreateServiceTemplateRequest.Builder> createServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
CreateServiceTemplateRequest.Builder
avoiding the need to create one manually viaCreateServiceTemplateRequest.builder()
- Parameters:
createServiceTemplateRequest
- AConsumer
that will call methods onCreateServiceTemplateRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateServiceTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createServiceTemplateVersion
@Deprecated default CompletableFuture<CreateServiceTemplateVersionResponse> createServiceTemplateVersion(CreateServiceTemplateVersionRequest createServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Create a new major or minor version of a service template. A major version of a service template is a version that isn't backward compatible. A minor version of a service template is a version that's backward compatible within its major version.
- Parameters:
createServiceTemplateVersionRequest
-- Returns:
- A Java Future containing the result of the CreateServiceTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createServiceTemplateVersion
@Deprecated default CompletableFuture<CreateServiceTemplateVersionResponse> createServiceTemplateVersion(Consumer<CreateServiceTemplateVersionRequest.Builder> createServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Create a new major or minor version of a service template. A major version of a service template is a version that isn't backward compatible. A minor version of a service template is a version that's backward compatible within its major version.
This is a convenience which creates an instance of the
CreateServiceTemplateVersionRequest.Builder
avoiding the need to create one manually viaCreateServiceTemplateVersionRequest.builder()
- Parameters:
createServiceTemplateVersionRequest
- AConsumer
that will call methods onCreateServiceTemplateVersionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateServiceTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createTemplateSyncConfig
@Deprecated default CompletableFuture<CreateTemplateSyncConfigResponse> createTemplateSyncConfig(CreateTemplateSyncConfigRequest createTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
createTemplateSyncConfigRequest
-- Returns:
- A Java Future containing the result of the CreateTemplateSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
createTemplateSyncConfig
@Deprecated default CompletableFuture<CreateTemplateSyncConfigResponse> createTemplateSyncConfig(Consumer<CreateTemplateSyncConfigRequest.Builder> createTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
CreateTemplateSyncConfigRequest.Builder
avoiding the need to create one manually viaCreateTemplateSyncConfigRequest.builder()
- Parameters:
createTemplateSyncConfigRequest
- AConsumer
that will call methods onCreateTemplateSyncConfigRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the CreateTemplateSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteComponent
@Deprecated default CompletableFuture<DeleteComponentResponse> deleteComponent(DeleteComponentRequest deleteComponentRequest) Deprecated.AWS Proton is not accepting new customers.Delete an Proton component resource.
For more information about components, see Proton components in the Proton User Guide.
- Parameters:
deleteComponentRequest
-- Returns:
- A Java Future containing the result of the DeleteComponent operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteComponent
@Deprecated default CompletableFuture<DeleteComponentResponse> deleteComponent(Consumer<DeleteComponentRequest.Builder> deleteComponentRequest) Deprecated.AWS Proton is not accepting new customers.Delete an Proton component resource.
For more information about components, see Proton components in the Proton User Guide.
This is a convenience which creates an instance of the
DeleteComponentRequest.Builder
avoiding the need to create one manually viaDeleteComponentRequest.builder()
- Parameters:
deleteComponentRequest
- AConsumer
that will call methods onDeleteComponentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteComponent operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteDeployment
@Deprecated default CompletableFuture<DeleteDeploymentResponse> deleteDeployment(DeleteDeploymentRequest deleteDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.Delete the deployment.
- Parameters:
deleteDeploymentRequest
-- Returns:
- A Java Future containing the result of the DeleteDeployment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteDeployment
@Deprecated default CompletableFuture<DeleteDeploymentResponse> deleteDeployment(Consumer<DeleteDeploymentRequest.Builder> deleteDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.Delete the deployment.
This is a convenience which creates an instance of the
DeleteDeploymentRequest.Builder
avoiding the need to create one manually viaDeleteDeploymentRequest.builder()
- Parameters:
deleteDeploymentRequest
- AConsumer
that will call methods onDeleteDeploymentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteDeployment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteEnvironment
@Deprecated default CompletableFuture<DeleteEnvironmentResponse> deleteEnvironment(DeleteEnvironmentRequest deleteEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.Delete an environment.
- Parameters:
deleteEnvironmentRequest
-- Returns:
- A Java Future containing the result of the DeleteEnvironment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteEnvironment
@Deprecated default CompletableFuture<DeleteEnvironmentResponse> deleteEnvironment(Consumer<DeleteEnvironmentRequest.Builder> deleteEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.Delete an environment.
This is a convenience which creates an instance of the
DeleteEnvironmentRequest.Builder
avoiding the need to create one manually viaDeleteEnvironmentRequest.builder()
- Parameters:
deleteEnvironmentRequest
- AConsumer
that will call methods onDeleteEnvironmentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteEnvironment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteEnvironmentAccountConnection
@Deprecated default CompletableFuture<DeleteEnvironmentAccountConnectionResponse> deleteEnvironmentAccountConnection(DeleteEnvironmentAccountConnectionRequest deleteEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
deleteEnvironmentAccountConnectionRequest
-- Returns:
- A Java Future containing the result of the DeleteEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteEnvironmentAccountConnection
@Deprecated default CompletableFuture<DeleteEnvironmentAccountConnectionResponse> deleteEnvironmentAccountConnection(Consumer<DeleteEnvironmentAccountConnectionRequest.Builder> deleteEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
DeleteEnvironmentAccountConnectionRequest.Builder
avoiding the need to create one manually viaDeleteEnvironmentAccountConnectionRequest.builder()
- Parameters:
deleteEnvironmentAccountConnectionRequest
- AConsumer
that will call methods onDeleteEnvironmentAccountConnectionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteEnvironmentTemplate
@Deprecated default CompletableFuture<DeleteEnvironmentTemplateResponse> deleteEnvironmentTemplate(DeleteEnvironmentTemplateRequest deleteEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.If no other major or minor versions of an environment template exist, delete the environment template.
- Parameters:
deleteEnvironmentTemplateRequest
-- Returns:
- A Java Future containing the result of the DeleteEnvironmentTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteEnvironmentTemplate
@Deprecated default CompletableFuture<DeleteEnvironmentTemplateResponse> deleteEnvironmentTemplate(Consumer<DeleteEnvironmentTemplateRequest.Builder> deleteEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.If no other major or minor versions of an environment template exist, delete the environment template.
This is a convenience which creates an instance of the
DeleteEnvironmentTemplateRequest.Builder
avoiding the need to create one manually viaDeleteEnvironmentTemplateRequest.builder()
- Parameters:
deleteEnvironmentTemplateRequest
- AConsumer
that will call methods onDeleteEnvironmentTemplateRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteEnvironmentTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteEnvironmentTemplateVersion
@Deprecated default CompletableFuture<DeleteEnvironmentTemplateVersionResponse> deleteEnvironmentTemplateVersion(DeleteEnvironmentTemplateVersionRequest deleteEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.If no other minor versions of an environment template exist, delete a major version of the environment template if it's not the
Recommended
version. Delete theRecommended
version of the environment template if no other major versions or minor versions of the environment template exist. A major version of an environment template is a version that's not backward compatible.Delete a minor version of an environment template if it isn't the
Recommended
version. Delete aRecommended
minor version of the environment template if no other minor versions of the environment template exist. A minor version of an environment template is a version that's backward compatible.- Parameters:
deleteEnvironmentTemplateVersionRequest
-- Returns:
- A Java Future containing the result of the DeleteEnvironmentTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteEnvironmentTemplateVersion
@Deprecated default CompletableFuture<DeleteEnvironmentTemplateVersionResponse> deleteEnvironmentTemplateVersion(Consumer<DeleteEnvironmentTemplateVersionRequest.Builder> deleteEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.If no other minor versions of an environment template exist, delete a major version of the environment template if it's not the
Recommended
version. Delete theRecommended
version of the environment template if no other major versions or minor versions of the environment template exist. A major version of an environment template is a version that's not backward compatible.Delete a minor version of an environment template if it isn't the
Recommended
version. Delete aRecommended
minor version of the environment template if no other minor versions of the environment template exist. A minor version of an environment template is a version that's backward compatible.
This is a convenience which creates an instance of the
DeleteEnvironmentTemplateVersionRequest.Builder
avoiding the need to create one manually viaDeleteEnvironmentTemplateVersionRequest.builder()
- Parameters:
deleteEnvironmentTemplateVersionRequest
- AConsumer
that will call methods onDeleteEnvironmentTemplateVersionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteEnvironmentTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteRepository
@Deprecated default CompletableFuture<DeleteRepositoryResponse> deleteRepository(DeleteRepositoryRequest deleteRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.De-register and unlink your repository.
- Parameters:
deleteRepositoryRequest
-- Returns:
- A Java Future containing the result of the DeleteRepository operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteRepository
@Deprecated default CompletableFuture<DeleteRepositoryResponse> deleteRepository(Consumer<DeleteRepositoryRequest.Builder> deleteRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.De-register and unlink your repository.
This is a convenience which creates an instance of the
DeleteRepositoryRequest.Builder
avoiding the need to create one manually viaDeleteRepositoryRequest.builder()
- Parameters:
deleteRepositoryRequest
- AConsumer
that will call methods onDeleteRepositoryRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteRepository operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteService
@Deprecated default CompletableFuture<DeleteServiceResponse> deleteService(DeleteServiceRequest deleteServiceRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
deleteServiceRequest
-- Returns:
- A Java Future containing the result of the DeleteService operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteService
@Deprecated default CompletableFuture<DeleteServiceResponse> deleteService(Consumer<DeleteServiceRequest.Builder> deleteServiceRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
DeleteServiceRequest.Builder
avoiding the need to create one manually viaDeleteServiceRequest.builder()
- Parameters:
deleteServiceRequest
- AConsumer
that will call methods onDeleteServiceRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteService operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteServiceSyncConfig
@Deprecated default CompletableFuture<DeleteServiceSyncConfigResponse> deleteServiceSyncConfig(DeleteServiceSyncConfigRequest deleteServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Delete the Proton Ops file.
- Parameters:
deleteServiceSyncConfigRequest
-- Returns:
- A Java Future containing the result of the DeleteServiceSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteServiceSyncConfig
@Deprecated default CompletableFuture<DeleteServiceSyncConfigResponse> deleteServiceSyncConfig(Consumer<DeleteServiceSyncConfigRequest.Builder> deleteServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Delete the Proton Ops file.
This is a convenience which creates an instance of the
DeleteServiceSyncConfigRequest.Builder
avoiding the need to create one manually viaDeleteServiceSyncConfigRequest.builder()
- Parameters:
deleteServiceSyncConfigRequest
- AConsumer
that will call methods onDeleteServiceSyncConfigRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteServiceSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteServiceTemplate
@Deprecated default CompletableFuture<DeleteServiceTemplateResponse> deleteServiceTemplate(DeleteServiceTemplateRequest deleteServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.If no other major or minor versions of the service template exist, delete the service template.
- Parameters:
deleteServiceTemplateRequest
-- Returns:
- A Java Future containing the result of the DeleteServiceTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteServiceTemplate
@Deprecated default CompletableFuture<DeleteServiceTemplateResponse> deleteServiceTemplate(Consumer<DeleteServiceTemplateRequest.Builder> deleteServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.If no other major or minor versions of the service template exist, delete the service template.
This is a convenience which creates an instance of the
DeleteServiceTemplateRequest.Builder
avoiding the need to create one manually viaDeleteServiceTemplateRequest.builder()
- Parameters:
deleteServiceTemplateRequest
- AConsumer
that will call methods onDeleteServiceTemplateRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteServiceTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteServiceTemplateVersion
@Deprecated default CompletableFuture<DeleteServiceTemplateVersionResponse> deleteServiceTemplateVersion(DeleteServiceTemplateVersionRequest deleteServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.If no other minor versions of a service template exist, delete a major version of the service template if it's not the
Recommended
version. Delete theRecommended
version of the service template if no other major versions or minor versions of the service template exist. A major version of a service template is a version that isn't backwards compatible.Delete a minor version of a service template if it's not the
Recommended
version. Delete aRecommended
minor version of the service template if no other minor versions of the service template exist. A minor version of a service template is a version that's backwards compatible.- Parameters:
deleteServiceTemplateVersionRequest
-- Returns:
- A Java Future containing the result of the DeleteServiceTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteServiceTemplateVersion
@Deprecated default CompletableFuture<DeleteServiceTemplateVersionResponse> deleteServiceTemplateVersion(Consumer<DeleteServiceTemplateVersionRequest.Builder> deleteServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.If no other minor versions of a service template exist, delete a major version of the service template if it's not the
Recommended
version. Delete theRecommended
version of the service template if no other major versions or minor versions of the service template exist. A major version of a service template is a version that isn't backwards compatible.Delete a minor version of a service template if it's not the
Recommended
version. Delete aRecommended
minor version of the service template if no other minor versions of the service template exist. A minor version of a service template is a version that's backwards compatible.
This is a convenience which creates an instance of the
DeleteServiceTemplateVersionRequest.Builder
avoiding the need to create one manually viaDeleteServiceTemplateVersionRequest.builder()
- Parameters:
deleteServiceTemplateVersionRequest
- AConsumer
that will call methods onDeleteServiceTemplateVersionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteServiceTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteTemplateSyncConfig
@Deprecated default CompletableFuture<DeleteTemplateSyncConfigResponse> deleteTemplateSyncConfig(DeleteTemplateSyncConfigRequest deleteTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Delete a template sync configuration.
- Parameters:
deleteTemplateSyncConfigRequest
-- Returns:
- A Java Future containing the result of the DeleteTemplateSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
deleteTemplateSyncConfig
@Deprecated default CompletableFuture<DeleteTemplateSyncConfigResponse> deleteTemplateSyncConfig(Consumer<DeleteTemplateSyncConfigRequest.Builder> deleteTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Delete a template sync configuration.
This is a convenience which creates an instance of the
DeleteTemplateSyncConfigRequest.Builder
avoiding the need to create one manually viaDeleteTemplateSyncConfigRequest.builder()
- Parameters:
deleteTemplateSyncConfigRequest
- AConsumer
that will call methods onDeleteTemplateSyncConfigRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the DeleteTemplateSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getAccountSettings
@Deprecated default CompletableFuture<GetAccountSettingsResponse> getAccountSettings(GetAccountSettingsRequest getAccountSettingsRequest) Deprecated.AWS Proton is not accepting new customers.Get detail data for Proton account-wide settings.
- Parameters:
getAccountSettingsRequest
-- Returns:
- A Java Future containing the result of the GetAccountSettings operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getAccountSettings
@Deprecated default CompletableFuture<GetAccountSettingsResponse> getAccountSettings(Consumer<GetAccountSettingsRequest.Builder> getAccountSettingsRequest) Deprecated.AWS Proton is not accepting new customers.Get detail data for Proton account-wide settings.
This is a convenience which creates an instance of the
GetAccountSettingsRequest.Builder
avoiding the need to create one manually viaGetAccountSettingsRequest.builder()
- Parameters:
getAccountSettingsRequest
- AConsumer
that will call methods onGetAccountSettingsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetAccountSettings operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getComponent
@Deprecated default CompletableFuture<GetComponentResponse> getComponent(GetComponentRequest getComponentRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a component.
For more information about components, see Proton components in the Proton User Guide.
- Parameters:
getComponentRequest
-- Returns:
- A Java Future containing the result of the GetComponent operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getComponent
@Deprecated default CompletableFuture<GetComponentResponse> getComponent(Consumer<GetComponentRequest.Builder> getComponentRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a component.
For more information about components, see Proton components in the Proton User Guide.
This is a convenience which creates an instance of the
GetComponentRequest.Builder
avoiding the need to create one manually viaGetComponentRequest.builder()
- Parameters:
getComponentRequest
- AConsumer
that will call methods onGetComponentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetComponent operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getDeployment
@Deprecated default CompletableFuture<GetDeploymentResponse> getDeployment(GetDeploymentRequest getDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a deployment.
- Parameters:
getDeploymentRequest
-- Returns:
- A Java Future containing the result of the GetDeployment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getDeployment
@Deprecated default CompletableFuture<GetDeploymentResponse> getDeployment(Consumer<GetDeploymentRequest.Builder> getDeploymentRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a deployment.
This is a convenience which creates an instance of the
GetDeploymentRequest.Builder
avoiding the need to create one manually viaGetDeploymentRequest.builder()
- Parameters:
getDeploymentRequest
- AConsumer
that will call methods onGetDeploymentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetDeployment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getEnvironment
@Deprecated default CompletableFuture<GetEnvironmentResponse> getEnvironment(GetEnvironmentRequest getEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for an environment.
- Parameters:
getEnvironmentRequest
-- Returns:
- A Java Future containing the result of the GetEnvironment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getEnvironment
@Deprecated default CompletableFuture<GetEnvironmentResponse> getEnvironment(Consumer<GetEnvironmentRequest.Builder> getEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for an environment.
This is a convenience which creates an instance of the
GetEnvironmentRequest.Builder
avoiding the need to create one manually viaGetEnvironmentRequest.builder()
- Parameters:
getEnvironmentRequest
- AConsumer
that will call methods onGetEnvironmentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetEnvironment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getEnvironmentAccountConnection
@Deprecated default CompletableFuture<GetEnvironmentAccountConnectionResponse> getEnvironmentAccountConnection(GetEnvironmentAccountConnectionRequest getEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
getEnvironmentAccountConnectionRequest
-- Returns:
- A Java Future containing the result of the GetEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getEnvironmentAccountConnection
@Deprecated default CompletableFuture<GetEnvironmentAccountConnectionResponse> getEnvironmentAccountConnection(Consumer<GetEnvironmentAccountConnectionRequest.Builder> getEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
GetEnvironmentAccountConnectionRequest.Builder
avoiding the need to create one manually viaGetEnvironmentAccountConnectionRequest.builder()
- Parameters:
getEnvironmentAccountConnectionRequest
- AConsumer
that will call methods onGetEnvironmentAccountConnectionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getEnvironmentTemplate
@Deprecated default CompletableFuture<GetEnvironmentTemplateResponse> getEnvironmentTemplate(GetEnvironmentTemplateRequest getEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for an environment template.
- Parameters:
getEnvironmentTemplateRequest
-- Returns:
- A Java Future containing the result of the GetEnvironmentTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getEnvironmentTemplate
@Deprecated default CompletableFuture<GetEnvironmentTemplateResponse> getEnvironmentTemplate(Consumer<GetEnvironmentTemplateRequest.Builder> getEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for an environment template.
This is a convenience which creates an instance of the
GetEnvironmentTemplateRequest.Builder
avoiding the need to create one manually viaGetEnvironmentTemplateRequest.builder()
- Parameters:
getEnvironmentTemplateRequest
- AConsumer
that will call methods onGetEnvironmentTemplateRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetEnvironmentTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getEnvironmentTemplateVersion
@Deprecated default CompletableFuture<GetEnvironmentTemplateVersionResponse> getEnvironmentTemplateVersion(GetEnvironmentTemplateVersionRequest getEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a major or minor version of an environment template.
- Parameters:
getEnvironmentTemplateVersionRequest
-- Returns:
- A Java Future containing the result of the GetEnvironmentTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getEnvironmentTemplateVersion
@Deprecated default CompletableFuture<GetEnvironmentTemplateVersionResponse> getEnvironmentTemplateVersion(Consumer<GetEnvironmentTemplateVersionRequest.Builder> getEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a major or minor version of an environment template.
This is a convenience which creates an instance of the
GetEnvironmentTemplateVersionRequest.Builder
avoiding the need to create one manually viaGetEnvironmentTemplateVersionRequest.builder()
- Parameters:
getEnvironmentTemplateVersionRequest
- AConsumer
that will call methods onGetEnvironmentTemplateVersionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetEnvironmentTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getRepository
@Deprecated default CompletableFuture<GetRepositoryResponse> getRepository(GetRepositoryRequest getRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.Get detail data for a linked repository.
- Parameters:
getRepositoryRequest
-- Returns:
- A Java Future containing the result of the GetRepository operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getRepository
@Deprecated default CompletableFuture<GetRepositoryResponse> getRepository(Consumer<GetRepositoryRequest.Builder> getRepositoryRequest) Deprecated.AWS Proton is not accepting new customers.Get detail data for a linked repository.
This is a convenience which creates an instance of the
GetRepositoryRequest.Builder
avoiding the need to create one manually viaGetRepositoryRequest.builder()
- Parameters:
getRepositoryRequest
- AConsumer
that will call methods onGetRepositoryRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetRepository operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getRepositorySyncStatus
@Deprecated default CompletableFuture<GetRepositorySyncStatusResponse> getRepositorySyncStatus(GetRepositorySyncStatusRequest getRepositorySyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
getRepositorySyncStatusRequest
-- Returns:
- A Java Future containing the result of the GetRepositorySyncStatus operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getRepositorySyncStatus
@Deprecated default CompletableFuture<GetRepositorySyncStatusResponse> getRepositorySyncStatus(Consumer<GetRepositorySyncStatusRequest.Builder> getRepositorySyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
GetRepositorySyncStatusRequest.Builder
avoiding the need to create one manually viaGetRepositorySyncStatusRequest.builder()
- Parameters:
getRepositorySyncStatusRequest
- AConsumer
that will call methods onGetRepositorySyncStatusRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetRepositorySyncStatus operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getResourcesSummary
@Deprecated default CompletableFuture<GetResourcesSummaryResponse> getResourcesSummary(GetResourcesSummaryRequest getResourcesSummaryRequest) Deprecated.AWS Proton is not accepting new customers.Get counts of Proton resources.
For infrastructure-provisioning resources (environments, services, service instances, pipelines), the action returns staleness counts. A resource is stale when it's behind the recommended version of the Proton template that it uses and it needs an update to become current.
The action returns staleness counts (counts of resources that are up-to-date, behind a template major version, or behind a template minor version), the total number of resources, and the number of resources that are in a failed state, grouped by resource type. Components, environments, and service templates return less information - see the
components
,environments
, andserviceTemplates
field descriptions.For context, the action also returns the total number of each type of Proton template in the Amazon Web Services account.
For more information, see Proton dashboard in the Proton User Guide.
- Parameters:
getResourcesSummaryRequest
-- Returns:
- A Java Future containing the result of the GetResourcesSummary operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getResourcesSummary
@Deprecated default CompletableFuture<GetResourcesSummaryResponse> getResourcesSummary(Consumer<GetResourcesSummaryRequest.Builder> getResourcesSummaryRequest) Deprecated.AWS Proton is not accepting new customers.Get counts of Proton resources.
For infrastructure-provisioning resources (environments, services, service instances, pipelines), the action returns staleness counts. A resource is stale when it's behind the recommended version of the Proton template that it uses and it needs an update to become current.
The action returns staleness counts (counts of resources that are up-to-date, behind a template major version, or behind a template minor version), the total number of resources, and the number of resources that are in a failed state, grouped by resource type. Components, environments, and service templates return less information - see the
components
,environments
, andserviceTemplates
field descriptions.For context, the action also returns the total number of each type of Proton template in the Amazon Web Services account.
For more information, see Proton dashboard in the Proton User Guide.
This is a convenience which creates an instance of the
GetResourcesSummaryRequest.Builder
avoiding the need to create one manually viaGetResourcesSummaryRequest.builder()
- Parameters:
getResourcesSummaryRequest
- AConsumer
that will call methods onGetResourcesSummaryRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetResourcesSummary operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getService
@Deprecated default CompletableFuture<GetServiceResponse> getService(GetServiceRequest getServiceRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a service.
- Parameters:
getServiceRequest
-- Returns:
- A Java Future containing the result of the GetService operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getService
@Deprecated default CompletableFuture<GetServiceResponse> getService(Consumer<GetServiceRequest.Builder> getServiceRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a service.
This is a convenience which creates an instance of the
GetServiceRequest.Builder
avoiding the need to create one manually viaGetServiceRequest.builder()
- Parameters:
getServiceRequest
- AConsumer
that will call methods onGetServiceRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetService operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceInstance
@Deprecated default CompletableFuture<GetServiceInstanceResponse> getServiceInstance(GetServiceInstanceRequest getServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a service instance. A service instance is an instantiation of service template and it runs in a specific environment.
- Parameters:
getServiceInstanceRequest
-- Returns:
- A Java Future containing the result of the GetServiceInstance operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceInstance
@Deprecated default CompletableFuture<GetServiceInstanceResponse> getServiceInstance(Consumer<GetServiceInstanceRequest.Builder> getServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a service instance. A service instance is an instantiation of service template and it runs in a specific environment.
This is a convenience which creates an instance of the
GetServiceInstanceRequest.Builder
avoiding the need to create one manually viaGetServiceInstanceRequest.builder()
- Parameters:
getServiceInstanceRequest
- AConsumer
that will call methods onGetServiceInstanceRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetServiceInstance operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceInstanceSyncStatus
@Deprecated default CompletableFuture<GetServiceInstanceSyncStatusResponse> getServiceInstanceSyncStatus(GetServiceInstanceSyncStatusRequest getServiceInstanceSyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.Get the status of the synced service instance.
- Parameters:
getServiceInstanceSyncStatusRequest
-- Returns:
- A Java Future containing the result of the GetServiceInstanceSyncStatus operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceInstanceSyncStatus
@Deprecated default CompletableFuture<GetServiceInstanceSyncStatusResponse> getServiceInstanceSyncStatus(Consumer<GetServiceInstanceSyncStatusRequest.Builder> getServiceInstanceSyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.Get the status of the synced service instance.
This is a convenience which creates an instance of the
GetServiceInstanceSyncStatusRequest.Builder
avoiding the need to create one manually viaGetServiceInstanceSyncStatusRequest.builder()
- Parameters:
getServiceInstanceSyncStatusRequest
- AConsumer
that will call methods onGetServiceInstanceSyncStatusRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetServiceInstanceSyncStatus operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceSyncBlockerSummary
@Deprecated default CompletableFuture<GetServiceSyncBlockerSummaryResponse> getServiceSyncBlockerSummary(GetServiceSyncBlockerSummaryRequest getServiceSyncBlockerSummaryRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for the service sync blocker summary.
- Parameters:
getServiceSyncBlockerSummaryRequest
-- Returns:
- A Java Future containing the result of the GetServiceSyncBlockerSummary operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceSyncBlockerSummary
@Deprecated default CompletableFuture<GetServiceSyncBlockerSummaryResponse> getServiceSyncBlockerSummary(Consumer<GetServiceSyncBlockerSummaryRequest.Builder> getServiceSyncBlockerSummaryRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for the service sync blocker summary.
This is a convenience which creates an instance of the
GetServiceSyncBlockerSummaryRequest.Builder
avoiding the need to create one manually viaGetServiceSyncBlockerSummaryRequest.builder()
- Parameters:
getServiceSyncBlockerSummaryRequest
- AConsumer
that will call methods onGetServiceSyncBlockerSummaryRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetServiceSyncBlockerSummary operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceSyncConfig
@Deprecated default CompletableFuture<GetServiceSyncConfigResponse> getServiceSyncConfig(GetServiceSyncConfigRequest getServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed information for the service sync configuration.
- Parameters:
getServiceSyncConfigRequest
-- Returns:
- A Java Future containing the result of the GetServiceSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceSyncConfig
@Deprecated default CompletableFuture<GetServiceSyncConfigResponse> getServiceSyncConfig(Consumer<GetServiceSyncConfigRequest.Builder> getServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed information for the service sync configuration.
This is a convenience which creates an instance of the
GetServiceSyncConfigRequest.Builder
avoiding the need to create one manually viaGetServiceSyncConfigRequest.builder()
- Parameters:
getServiceSyncConfigRequest
- AConsumer
that will call methods onGetServiceSyncConfigRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetServiceSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceTemplate
@Deprecated default CompletableFuture<GetServiceTemplateResponse> getServiceTemplate(GetServiceTemplateRequest getServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a service template.
- Parameters:
getServiceTemplateRequest
-- Returns:
- A Java Future containing the result of the GetServiceTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceTemplate
@Deprecated default CompletableFuture<GetServiceTemplateResponse> getServiceTemplate(Consumer<GetServiceTemplateRequest.Builder> getServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a service template.
This is a convenience which creates an instance of the
GetServiceTemplateRequest.Builder
avoiding the need to create one manually viaGetServiceTemplateRequest.builder()
- Parameters:
getServiceTemplateRequest
- AConsumer
that will call methods onGetServiceTemplateRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetServiceTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceTemplateVersion
@Deprecated default CompletableFuture<GetServiceTemplateVersionResponse> getServiceTemplateVersion(GetServiceTemplateVersionRequest getServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a major or minor version of a service template.
- Parameters:
getServiceTemplateVersionRequest
-- Returns:
- A Java Future containing the result of the GetServiceTemplateVersion operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getServiceTemplateVersion
@Deprecated default CompletableFuture<GetServiceTemplateVersionResponse> getServiceTemplateVersion(Consumer<GetServiceTemplateVersionRequest.Builder> getServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Get detailed data for a major or minor version of a service template.
This is a convenience which creates an instance of the
GetServiceTemplateVersionRequest.Builder
avoiding the need to create one manually viaGetServiceTemplateVersionRequest.builder()
- Parameters:
getServiceTemplateVersionRequest
- AConsumer
that will call methods onGetServiceTemplateVersionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetServiceTemplateVersion operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getTemplateSyncConfig
@Deprecated default CompletableFuture<GetTemplateSyncConfigResponse> getTemplateSyncConfig(GetTemplateSyncConfigRequest getTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Get detail data for a template sync configuration.
- Parameters:
getTemplateSyncConfigRequest
-- Returns:
- A Java Future containing the result of the GetTemplateSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getTemplateSyncConfig
@Deprecated default CompletableFuture<GetTemplateSyncConfigResponse> getTemplateSyncConfig(Consumer<GetTemplateSyncConfigRequest.Builder> getTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Get detail data for a template sync configuration.
This is a convenience which creates an instance of the
GetTemplateSyncConfigRequest.Builder
avoiding the need to create one manually viaGetTemplateSyncConfigRequest.builder()
- Parameters:
getTemplateSyncConfigRequest
- AConsumer
that will call methods onGetTemplateSyncConfigRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetTemplateSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getTemplateSyncStatus
@Deprecated default CompletableFuture<GetTemplateSyncStatusResponse> getTemplateSyncStatus(GetTemplateSyncStatusRequest getTemplateSyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.Get the status of a template sync.
- Parameters:
getTemplateSyncStatusRequest
-- Returns:
- A Java Future containing the result of the GetTemplateSyncStatus operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
getTemplateSyncStatus
@Deprecated default CompletableFuture<GetTemplateSyncStatusResponse> getTemplateSyncStatus(Consumer<GetTemplateSyncStatusRequest.Builder> getTemplateSyncStatusRequest) Deprecated.AWS Proton is not accepting new customers.Get the status of a template sync.
This is a convenience which creates an instance of the
GetTemplateSyncStatusRequest.Builder
avoiding the need to create one manually viaGetTemplateSyncStatusRequest.builder()
- Parameters:
getTemplateSyncStatusRequest
- AConsumer
that will call methods onGetTemplateSyncStatusRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the GetTemplateSyncStatus operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponentOutputs
@Deprecated default CompletableFuture<ListComponentOutputsResponse> listComponentOutputs(ListComponentOutputsRequest listComponentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.Get a list of component Infrastructure as Code (IaC) outputs.
For more information about components, see Proton components in the Proton User Guide.
- Parameters:
listComponentOutputsRequest
-- Returns:
- A Java Future containing the result of the ListComponentOutputs operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponentOutputs
@Deprecated default CompletableFuture<ListComponentOutputsResponse> listComponentOutputs(Consumer<ListComponentOutputsRequest.Builder> listComponentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.Get a list of component Infrastructure as Code (IaC) outputs.
For more information about components, see Proton components in the Proton User Guide.
This is a convenience which creates an instance of the
ListComponentOutputsRequest.Builder
avoiding the need to create one manually viaListComponentOutputsRequest.builder()
- Parameters:
listComponentOutputsRequest
- AConsumer
that will call methods onListComponentOutputsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListComponentOutputs operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponentOutputsPaginator
@Deprecated default ListComponentOutputsPublisher listComponentOutputsPaginator(ListComponentOutputsRequest listComponentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listComponentOutputs(software.amazon.awssdk.services.proton.model.ListComponentOutputsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListComponentOutputsPublisher publisher = client.listComponentOutputsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListComponentOutputsPublisher publisher = client.listComponentOutputsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListComponentOutputsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListComponentOutputsResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listComponentOutputs(software.amazon.awssdk.services.proton.model.ListComponentOutputsRequest)
operation.- Parameters:
listComponentOutputsRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponentOutputsPaginator
@Deprecated default ListComponentOutputsPublisher listComponentOutputsPaginator(Consumer<ListComponentOutputsRequest.Builder> listComponentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listComponentOutputs(software.amazon.awssdk.services.proton.model.ListComponentOutputsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListComponentOutputsPublisher publisher = client.listComponentOutputsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListComponentOutputsPublisher publisher = client.listComponentOutputsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListComponentOutputsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListComponentOutputsResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listComponentOutputs(software.amazon.awssdk.services.proton.model.ListComponentOutputsRequest)
operation.
This is a convenience which creates an instance of the
ListComponentOutputsRequest.Builder
avoiding the need to create one manually viaListComponentOutputsRequest.builder()
- Parameters:
listComponentOutputsRequest
- AConsumer
that will call methods onListComponentOutputsRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponentProvisionedResources
@Deprecated default CompletableFuture<ListComponentProvisionedResourcesResponse> listComponentProvisionedResources(ListComponentProvisionedResourcesRequest listComponentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.List provisioned resources for a component with details.
For more information about components, see Proton components in the Proton User Guide.
- Parameters:
listComponentProvisionedResourcesRequest
-- Returns:
- A Java Future containing the result of the ListComponentProvisionedResources operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponentProvisionedResources
@Deprecated default CompletableFuture<ListComponentProvisionedResourcesResponse> listComponentProvisionedResources(Consumer<ListComponentProvisionedResourcesRequest.Builder> listComponentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.List provisioned resources for a component with details.
For more information about components, see Proton components in the Proton User Guide.
This is a convenience which creates an instance of the
ListComponentProvisionedResourcesRequest.Builder
avoiding the need to create one manually viaListComponentProvisionedResourcesRequest.builder()
- Parameters:
listComponentProvisionedResourcesRequest
- AConsumer
that will call methods onListComponentProvisionedResourcesRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListComponentProvisionedResources operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponentProvisionedResourcesPaginator
@Deprecated default ListComponentProvisionedResourcesPublisher listComponentProvisionedResourcesPaginator(ListComponentProvisionedResourcesRequest listComponentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listComponentProvisionedResources(software.amazon.awssdk.services.proton.model.ListComponentProvisionedResourcesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListComponentProvisionedResourcesPublisher publisher = client.listComponentProvisionedResourcesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListComponentProvisionedResourcesPublisher publisher = client.listComponentProvisionedResourcesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListComponentProvisionedResourcesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListComponentProvisionedResourcesResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listComponentProvisionedResources(software.amazon.awssdk.services.proton.model.ListComponentProvisionedResourcesRequest)
operation.- Parameters:
listComponentProvisionedResourcesRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponentProvisionedResourcesPaginator
@Deprecated default ListComponentProvisionedResourcesPublisher listComponentProvisionedResourcesPaginator(Consumer<ListComponentProvisionedResourcesRequest.Builder> listComponentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listComponentProvisionedResources(software.amazon.awssdk.services.proton.model.ListComponentProvisionedResourcesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListComponentProvisionedResourcesPublisher publisher = client.listComponentProvisionedResourcesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListComponentProvisionedResourcesPublisher publisher = client.listComponentProvisionedResourcesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListComponentProvisionedResourcesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListComponentProvisionedResourcesResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listComponentProvisionedResources(software.amazon.awssdk.services.proton.model.ListComponentProvisionedResourcesRequest)
operation.
This is a convenience which creates an instance of the
ListComponentProvisionedResourcesRequest.Builder
avoiding the need to create one manually viaListComponentProvisionedResourcesRequest.builder()
- Parameters:
listComponentProvisionedResourcesRequest
- AConsumer
that will call methods onListComponentProvisionedResourcesRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponents
@Deprecated default CompletableFuture<ListComponentsResponse> listComponents(ListComponentsRequest listComponentsRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
listComponentsRequest
-- Returns:
- A Java Future containing the result of the ListComponents operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponents
@Deprecated default CompletableFuture<ListComponentsResponse> listComponents(Consumer<ListComponentsRequest.Builder> listComponentsRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
ListComponentsRequest.Builder
avoiding the need to create one manually viaListComponentsRequest.builder()
- Parameters:
listComponentsRequest
- AConsumer
that will call methods onListComponentsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListComponents operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponentsPaginator
@Deprecated default ListComponentsPublisher listComponentsPaginator(ListComponentsRequest listComponentsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listComponents(software.amazon.awssdk.services.proton.model.ListComponentsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListComponentsPublisher publisher = client.listComponentsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListComponentsPublisher publisher = client.listComponentsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListComponentsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListComponentsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listComponents(software.amazon.awssdk.services.proton.model.ListComponentsRequest)
operation.- Parameters:
listComponentsRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listComponentsPaginator
@Deprecated default ListComponentsPublisher listComponentsPaginator(Consumer<ListComponentsRequest.Builder> listComponentsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listComponents(software.amazon.awssdk.services.proton.model.ListComponentsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListComponentsPublisher publisher = client.listComponentsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListComponentsPublisher publisher = client.listComponentsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListComponentsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListComponentsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listComponents(software.amazon.awssdk.services.proton.model.ListComponentsRequest)
operation.
This is a convenience which creates an instance of the
ListComponentsRequest.Builder
avoiding the need to create one manually viaListComponentsRequest.builder()
- Parameters:
listComponentsRequest
- AConsumer
that will call methods onListComponentsRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listDeployments
@Deprecated default CompletableFuture<ListDeploymentsResponse> listDeployments(ListDeploymentsRequest listDeploymentsRequest) Deprecated.AWS Proton is not accepting new customers.List deployments. You can filter the result list by environment, service, or a single service instance.
- Parameters:
listDeploymentsRequest
-- Returns:
- A Java Future containing the result of the ListDeployments operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listDeployments
@Deprecated default CompletableFuture<ListDeploymentsResponse> listDeployments(Consumer<ListDeploymentsRequest.Builder> listDeploymentsRequest) Deprecated.AWS Proton is not accepting new customers.List deployments. You can filter the result list by environment, service, or a single service instance.
This is a convenience which creates an instance of the
ListDeploymentsRequest.Builder
avoiding the need to create one manually viaListDeploymentsRequest.builder()
- Parameters:
listDeploymentsRequest
- AConsumer
that will call methods onListDeploymentsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListDeployments operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listDeploymentsPaginator
@Deprecated default ListDeploymentsPublisher listDeploymentsPaginator(ListDeploymentsRequest listDeploymentsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listDeployments(software.amazon.awssdk.services.proton.model.ListDeploymentsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListDeploymentsPublisher publisher = client.listDeploymentsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListDeploymentsPublisher publisher = client.listDeploymentsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListDeploymentsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListDeploymentsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listDeployments(software.amazon.awssdk.services.proton.model.ListDeploymentsRequest)
operation.- Parameters:
listDeploymentsRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listDeploymentsPaginator
@Deprecated default ListDeploymentsPublisher listDeploymentsPaginator(Consumer<ListDeploymentsRequest.Builder> listDeploymentsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listDeployments(software.amazon.awssdk.services.proton.model.ListDeploymentsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListDeploymentsPublisher publisher = client.listDeploymentsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListDeploymentsPublisher publisher = client.listDeploymentsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListDeploymentsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListDeploymentsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listDeployments(software.amazon.awssdk.services.proton.model.ListDeploymentsRequest)
operation.
This is a convenience which creates an instance of the
ListDeploymentsRequest.Builder
avoiding the need to create one manually viaListDeploymentsRequest.builder()
- Parameters:
listDeploymentsRequest
- AConsumer
that will call methods onListDeploymentsRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentAccountConnections
@Deprecated default CompletableFuture<ListEnvironmentAccountConnectionsResponse> listEnvironmentAccountConnections(ListEnvironmentAccountConnectionsRequest listEnvironmentAccountConnectionsRequest) Deprecated.AWS Proton is not accepting new customers.View a list of environment account connections.
For more information, see Environment account connections in the Proton User guide.
- Parameters:
listEnvironmentAccountConnectionsRequest
-- Returns:
- A Java Future containing the result of the ListEnvironmentAccountConnections operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentAccountConnections
@Deprecated default CompletableFuture<ListEnvironmentAccountConnectionsResponse> listEnvironmentAccountConnections(Consumer<ListEnvironmentAccountConnectionsRequest.Builder> listEnvironmentAccountConnectionsRequest) Deprecated.AWS Proton is not accepting new customers.View a list of environment account connections.
For more information, see Environment account connections in the Proton User guide.
This is a convenience which creates an instance of the
ListEnvironmentAccountConnectionsRequest.Builder
avoiding the need to create one manually viaListEnvironmentAccountConnectionsRequest.builder()
- Parameters:
listEnvironmentAccountConnectionsRequest
- AConsumer
that will call methods onListEnvironmentAccountConnectionsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListEnvironmentAccountConnections operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentAccountConnectionsPaginator
@Deprecated default ListEnvironmentAccountConnectionsPublisher listEnvironmentAccountConnectionsPaginator(ListEnvironmentAccountConnectionsRequest listEnvironmentAccountConnectionsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironmentAccountConnections(software.amazon.awssdk.services.proton.model.ListEnvironmentAccountConnectionsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentAccountConnectionsPublisher publisher = client.listEnvironmentAccountConnectionsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentAccountConnectionsPublisher publisher = client.listEnvironmentAccountConnectionsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentAccountConnectionsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentAccountConnectionsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironmentAccountConnections(software.amazon.awssdk.services.proton.model.ListEnvironmentAccountConnectionsRequest)
operation.- Parameters:
listEnvironmentAccountConnectionsRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentAccountConnectionsPaginator
@Deprecated default ListEnvironmentAccountConnectionsPublisher listEnvironmentAccountConnectionsPaginator(Consumer<ListEnvironmentAccountConnectionsRequest.Builder> listEnvironmentAccountConnectionsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironmentAccountConnections(software.amazon.awssdk.services.proton.model.ListEnvironmentAccountConnectionsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentAccountConnectionsPublisher publisher = client.listEnvironmentAccountConnectionsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentAccountConnectionsPublisher publisher = client.listEnvironmentAccountConnectionsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentAccountConnectionsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentAccountConnectionsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironmentAccountConnections(software.amazon.awssdk.services.proton.model.ListEnvironmentAccountConnectionsRequest)
operation.
This is a convenience which creates an instance of the
ListEnvironmentAccountConnectionsRequest.Builder
avoiding the need to create one manually viaListEnvironmentAccountConnectionsRequest.builder()
- Parameters:
listEnvironmentAccountConnectionsRequest
- AConsumer
that will call methods onListEnvironmentAccountConnectionsRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentOutputs
@Deprecated default CompletableFuture<ListEnvironmentOutputsResponse> listEnvironmentOutputs(ListEnvironmentOutputsRequest listEnvironmentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.List the infrastructure as code outputs for your environment.
- Parameters:
listEnvironmentOutputsRequest
-- Returns:
- A Java Future containing the result of the ListEnvironmentOutputs operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentOutputs
@Deprecated default CompletableFuture<ListEnvironmentOutputsResponse> listEnvironmentOutputs(Consumer<ListEnvironmentOutputsRequest.Builder> listEnvironmentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.List the infrastructure as code outputs for your environment.
This is a convenience which creates an instance of the
ListEnvironmentOutputsRequest.Builder
avoiding the need to create one manually viaListEnvironmentOutputsRequest.builder()
- Parameters:
listEnvironmentOutputsRequest
- AConsumer
that will call methods onListEnvironmentOutputsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListEnvironmentOutputs operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentOutputsPaginator
@Deprecated default ListEnvironmentOutputsPublisher listEnvironmentOutputsPaginator(ListEnvironmentOutputsRequest listEnvironmentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironmentOutputs(software.amazon.awssdk.services.proton.model.ListEnvironmentOutputsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentOutputsPublisher publisher = client.listEnvironmentOutputsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentOutputsPublisher publisher = client.listEnvironmentOutputsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentOutputsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentOutputsResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironmentOutputs(software.amazon.awssdk.services.proton.model.ListEnvironmentOutputsRequest)
operation.- Parameters:
listEnvironmentOutputsRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentOutputsPaginator
@Deprecated default ListEnvironmentOutputsPublisher listEnvironmentOutputsPaginator(Consumer<ListEnvironmentOutputsRequest.Builder> listEnvironmentOutputsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironmentOutputs(software.amazon.awssdk.services.proton.model.ListEnvironmentOutputsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentOutputsPublisher publisher = client.listEnvironmentOutputsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentOutputsPublisher publisher = client.listEnvironmentOutputsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentOutputsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentOutputsResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironmentOutputs(software.amazon.awssdk.services.proton.model.ListEnvironmentOutputsRequest)
operation.
This is a convenience which creates an instance of the
ListEnvironmentOutputsRequest.Builder
avoiding the need to create one manually viaListEnvironmentOutputsRequest.builder()
- Parameters:
listEnvironmentOutputsRequest
- AConsumer
that will call methods onListEnvironmentOutputsRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentProvisionedResources
@Deprecated default CompletableFuture<ListEnvironmentProvisionedResourcesResponse> listEnvironmentProvisionedResources(ListEnvironmentProvisionedResourcesRequest listEnvironmentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.List the provisioned resources for your environment.
- Parameters:
listEnvironmentProvisionedResourcesRequest
-- Returns:
- A Java Future containing the result of the ListEnvironmentProvisionedResources operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentProvisionedResources
@Deprecated default CompletableFuture<ListEnvironmentProvisionedResourcesResponse> listEnvironmentProvisionedResources(Consumer<ListEnvironmentProvisionedResourcesRequest.Builder> listEnvironmentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.List the provisioned resources for your environment.
This is a convenience which creates an instance of the
ListEnvironmentProvisionedResourcesRequest.Builder
avoiding the need to create one manually viaListEnvironmentProvisionedResourcesRequest.builder()
- Parameters:
listEnvironmentProvisionedResourcesRequest
- AConsumer
that will call methods onListEnvironmentProvisionedResourcesRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListEnvironmentProvisionedResources operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentProvisionedResourcesPaginator
@Deprecated default ListEnvironmentProvisionedResourcesPublisher listEnvironmentProvisionedResourcesPaginator(ListEnvironmentProvisionedResourcesRequest listEnvironmentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironmentProvisionedResources(software.amazon.awssdk.services.proton.model.ListEnvironmentProvisionedResourcesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentProvisionedResourcesPublisher publisher = client.listEnvironmentProvisionedResourcesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentProvisionedResourcesPublisher publisher = client.listEnvironmentProvisionedResourcesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentProvisionedResourcesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentProvisionedResourcesResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironmentProvisionedResources(software.amazon.awssdk.services.proton.model.ListEnvironmentProvisionedResourcesRequest)
operation.- Parameters:
listEnvironmentProvisionedResourcesRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentProvisionedResourcesPaginator
@Deprecated default ListEnvironmentProvisionedResourcesPublisher listEnvironmentProvisionedResourcesPaginator(Consumer<ListEnvironmentProvisionedResourcesRequest.Builder> listEnvironmentProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironmentProvisionedResources(software.amazon.awssdk.services.proton.model.ListEnvironmentProvisionedResourcesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentProvisionedResourcesPublisher publisher = client.listEnvironmentProvisionedResourcesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentProvisionedResourcesPublisher publisher = client.listEnvironmentProvisionedResourcesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentProvisionedResourcesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentProvisionedResourcesResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironmentProvisionedResources(software.amazon.awssdk.services.proton.model.ListEnvironmentProvisionedResourcesRequest)
operation.
This is a convenience which creates an instance of the
ListEnvironmentProvisionedResourcesRequest.Builder
avoiding the need to create one manually viaListEnvironmentProvisionedResourcesRequest.builder()
- Parameters:
listEnvironmentProvisionedResourcesRequest
- AConsumer
that will call methods onListEnvironmentProvisionedResourcesRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentTemplateVersions
@Deprecated default CompletableFuture<ListEnvironmentTemplateVersionsResponse> listEnvironmentTemplateVersions(ListEnvironmentTemplateVersionsRequest listEnvironmentTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.List major or minor versions of an environment template with detail data.
- Parameters:
listEnvironmentTemplateVersionsRequest
-- Returns:
- A Java Future containing the result of the ListEnvironmentTemplateVersions operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentTemplateVersions
@Deprecated default CompletableFuture<ListEnvironmentTemplateVersionsResponse> listEnvironmentTemplateVersions(Consumer<ListEnvironmentTemplateVersionsRequest.Builder> listEnvironmentTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.List major or minor versions of an environment template with detail data.
This is a convenience which creates an instance of the
ListEnvironmentTemplateVersionsRequest.Builder
avoiding the need to create one manually viaListEnvironmentTemplateVersionsRequest.builder()
- Parameters:
listEnvironmentTemplateVersionsRequest
- AConsumer
that will call methods onListEnvironmentTemplateVersionsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListEnvironmentTemplateVersions operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentTemplateVersionsPaginator
@Deprecated default ListEnvironmentTemplateVersionsPublisher listEnvironmentTemplateVersionsPaginator(ListEnvironmentTemplateVersionsRequest listEnvironmentTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironmentTemplateVersions(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplateVersionsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentTemplateVersionsPublisher publisher = client.listEnvironmentTemplateVersionsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentTemplateVersionsPublisher publisher = client.listEnvironmentTemplateVersionsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentTemplateVersionsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplateVersionsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironmentTemplateVersions(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplateVersionsRequest)
operation.- Parameters:
listEnvironmentTemplateVersionsRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentTemplateVersionsPaginator
@Deprecated default ListEnvironmentTemplateVersionsPublisher listEnvironmentTemplateVersionsPaginator(Consumer<ListEnvironmentTemplateVersionsRequest.Builder> listEnvironmentTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironmentTemplateVersions(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplateVersionsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentTemplateVersionsPublisher publisher = client.listEnvironmentTemplateVersionsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentTemplateVersionsPublisher publisher = client.listEnvironmentTemplateVersionsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentTemplateVersionsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplateVersionsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironmentTemplateVersions(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplateVersionsRequest)
operation.
This is a convenience which creates an instance of the
ListEnvironmentTemplateVersionsRequest.Builder
avoiding the need to create one manually viaListEnvironmentTemplateVersionsRequest.builder()
- Parameters:
listEnvironmentTemplateVersionsRequest
- AConsumer
that will call methods onListEnvironmentTemplateVersionsRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentTemplates
@Deprecated default CompletableFuture<ListEnvironmentTemplatesResponse> listEnvironmentTemplates(ListEnvironmentTemplatesRequest listEnvironmentTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.List environment templates.
- Parameters:
listEnvironmentTemplatesRequest
-- Returns:
- A Java Future containing the result of the ListEnvironmentTemplates operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentTemplates
@Deprecated default CompletableFuture<ListEnvironmentTemplatesResponse> listEnvironmentTemplates(Consumer<ListEnvironmentTemplatesRequest.Builder> listEnvironmentTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.List environment templates.
This is a convenience which creates an instance of the
ListEnvironmentTemplatesRequest.Builder
avoiding the need to create one manually viaListEnvironmentTemplatesRequest.builder()
- Parameters:
listEnvironmentTemplatesRequest
- AConsumer
that will call methods onListEnvironmentTemplatesRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListEnvironmentTemplates operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentTemplatesPaginator
@Deprecated default ListEnvironmentTemplatesPublisher listEnvironmentTemplatesPaginator(ListEnvironmentTemplatesRequest listEnvironmentTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironmentTemplates(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplatesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentTemplatesPublisher publisher = client.listEnvironmentTemplatesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentTemplatesPublisher publisher = client.listEnvironmentTemplatesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentTemplatesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplatesResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironmentTemplates(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplatesRequest)
operation.- Parameters:
listEnvironmentTemplatesRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentTemplatesPaginator
@Deprecated default ListEnvironmentTemplatesPublisher listEnvironmentTemplatesPaginator(Consumer<ListEnvironmentTemplatesRequest.Builder> listEnvironmentTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironmentTemplates(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplatesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentTemplatesPublisher publisher = client.listEnvironmentTemplatesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentTemplatesPublisher publisher = client.listEnvironmentTemplatesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentTemplatesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplatesResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironmentTemplates(software.amazon.awssdk.services.proton.model.ListEnvironmentTemplatesRequest)
operation.
This is a convenience which creates an instance of the
ListEnvironmentTemplatesRequest.Builder
avoiding the need to create one manually viaListEnvironmentTemplatesRequest.builder()
- Parameters:
listEnvironmentTemplatesRequest
- AConsumer
that will call methods onListEnvironmentTemplatesRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironments
@Deprecated default CompletableFuture<ListEnvironmentsResponse> listEnvironments(ListEnvironmentsRequest listEnvironmentsRequest) Deprecated.AWS Proton is not accepting new customers.List environments with detail data summaries.
- Parameters:
listEnvironmentsRequest
-- Returns:
- A Java Future containing the result of the ListEnvironments operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironments
@Deprecated default CompletableFuture<ListEnvironmentsResponse> listEnvironments(Consumer<ListEnvironmentsRequest.Builder> listEnvironmentsRequest) Deprecated.AWS Proton is not accepting new customers.List environments with detail data summaries.
This is a convenience which creates an instance of the
ListEnvironmentsRequest.Builder
avoiding the need to create one manually viaListEnvironmentsRequest.builder()
- Parameters:
listEnvironmentsRequest
- AConsumer
that will call methods onListEnvironmentsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListEnvironments operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentsPaginator
@Deprecated default ListEnvironmentsPublisher listEnvironmentsPaginator(ListEnvironmentsRequest listEnvironmentsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironments(software.amazon.awssdk.services.proton.model.ListEnvironmentsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentsPublisher publisher = client.listEnvironmentsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentsPublisher publisher = client.listEnvironmentsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironments(software.amazon.awssdk.services.proton.model.ListEnvironmentsRequest)
operation.- Parameters:
listEnvironmentsRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listEnvironmentsPaginator
@Deprecated default ListEnvironmentsPublisher listEnvironmentsPaginator(Consumer<ListEnvironmentsRequest.Builder> listEnvironmentsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listEnvironments(software.amazon.awssdk.services.proton.model.ListEnvironmentsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListEnvironmentsPublisher publisher = client.listEnvironmentsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListEnvironmentsPublisher publisher = client.listEnvironmentsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListEnvironmentsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListEnvironmentsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listEnvironments(software.amazon.awssdk.services.proton.model.ListEnvironmentsRequest)
operation.
This is a convenience which creates an instance of the
ListEnvironmentsRequest.Builder
avoiding the need to create one manually viaListEnvironmentsRequest.builder()
- Parameters:
listEnvironmentsRequest
- AConsumer
that will call methods onListEnvironmentsRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listRepositories
@Deprecated default CompletableFuture<ListRepositoriesResponse> listRepositories(ListRepositoriesRequest listRepositoriesRequest) Deprecated.AWS Proton is not accepting new customers.List linked repositories with detail data.
- Parameters:
listRepositoriesRequest
-- Returns:
- A Java Future containing the result of the ListRepositories operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listRepositories
@Deprecated default CompletableFuture<ListRepositoriesResponse> listRepositories(Consumer<ListRepositoriesRequest.Builder> listRepositoriesRequest) Deprecated.AWS Proton is not accepting new customers.List linked repositories with detail data.
This is a convenience which creates an instance of the
ListRepositoriesRequest.Builder
avoiding the need to create one manually viaListRepositoriesRequest.builder()
- Parameters:
listRepositoriesRequest
- AConsumer
that will call methods onListRepositoriesRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListRepositories operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listRepositoriesPaginator
@Deprecated default ListRepositoriesPublisher listRepositoriesPaginator(ListRepositoriesRequest listRepositoriesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listRepositories(software.amazon.awssdk.services.proton.model.ListRepositoriesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListRepositoriesPublisher publisher = client.listRepositoriesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListRepositoriesPublisher publisher = client.listRepositoriesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListRepositoriesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListRepositoriesResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listRepositories(software.amazon.awssdk.services.proton.model.ListRepositoriesRequest)
operation.- Parameters:
listRepositoriesRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listRepositoriesPaginator
@Deprecated default ListRepositoriesPublisher listRepositoriesPaginator(Consumer<ListRepositoriesRequest.Builder> listRepositoriesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listRepositories(software.amazon.awssdk.services.proton.model.ListRepositoriesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListRepositoriesPublisher publisher = client.listRepositoriesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListRepositoriesPublisher publisher = client.listRepositoriesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListRepositoriesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListRepositoriesResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listRepositories(software.amazon.awssdk.services.proton.model.ListRepositoriesRequest)
operation.
This is a convenience which creates an instance of the
ListRepositoriesRequest.Builder
avoiding the need to create one manually viaListRepositoriesRequest.builder()
- Parameters:
listRepositoriesRequest
- AConsumer
that will call methods onListRepositoriesRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listRepositorySyncDefinitions
@Deprecated default CompletableFuture<ListRepositorySyncDefinitionsResponse> listRepositorySyncDefinitions(ListRepositorySyncDefinitionsRequest listRepositorySyncDefinitionsRequest) Deprecated.AWS Proton is not accepting new customers.List repository sync definitions with detail data.
- Parameters:
listRepositorySyncDefinitionsRequest
-- Returns:
- A Java Future containing the result of the ListRepositorySyncDefinitions operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listRepositorySyncDefinitions
@Deprecated default CompletableFuture<ListRepositorySyncDefinitionsResponse> listRepositorySyncDefinitions(Consumer<ListRepositorySyncDefinitionsRequest.Builder> listRepositorySyncDefinitionsRequest) Deprecated.AWS Proton is not accepting new customers.List repository sync definitions with detail data.
This is a convenience which creates an instance of the
ListRepositorySyncDefinitionsRequest.Builder
avoiding the need to create one manually viaListRepositorySyncDefinitionsRequest.builder()
- Parameters:
listRepositorySyncDefinitionsRequest
- AConsumer
that will call methods onListRepositorySyncDefinitionsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListRepositorySyncDefinitions operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listRepositorySyncDefinitionsPaginator
@Deprecated default ListRepositorySyncDefinitionsPublisher listRepositorySyncDefinitionsPaginator(ListRepositorySyncDefinitionsRequest listRepositorySyncDefinitionsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listRepositorySyncDefinitions(software.amazon.awssdk.services.proton.model.ListRepositorySyncDefinitionsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListRepositorySyncDefinitionsPublisher publisher = client.listRepositorySyncDefinitionsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListRepositorySyncDefinitionsPublisher publisher = client.listRepositorySyncDefinitionsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListRepositorySyncDefinitionsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListRepositorySyncDefinitionsResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listRepositorySyncDefinitions(software.amazon.awssdk.services.proton.model.ListRepositorySyncDefinitionsRequest)
operation.- Parameters:
listRepositorySyncDefinitionsRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listRepositorySyncDefinitionsPaginator
@Deprecated default ListRepositorySyncDefinitionsPublisher listRepositorySyncDefinitionsPaginator(Consumer<ListRepositorySyncDefinitionsRequest.Builder> listRepositorySyncDefinitionsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listRepositorySyncDefinitions(software.amazon.awssdk.services.proton.model.ListRepositorySyncDefinitionsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListRepositorySyncDefinitionsPublisher publisher = client.listRepositorySyncDefinitionsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListRepositorySyncDefinitionsPublisher publisher = client.listRepositorySyncDefinitionsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListRepositorySyncDefinitionsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListRepositorySyncDefinitionsResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listRepositorySyncDefinitions(software.amazon.awssdk.services.proton.model.ListRepositorySyncDefinitionsRequest)
operation.
This is a convenience which creates an instance of the
ListRepositorySyncDefinitionsRequest.Builder
avoiding the need to create one manually viaListRepositorySyncDefinitionsRequest.builder()
- Parameters:
listRepositorySyncDefinitionsRequest
- AConsumer
that will call methods onListRepositorySyncDefinitionsRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstanceOutputs
@Deprecated default CompletableFuture<ListServiceInstanceOutputsResponse> listServiceInstanceOutputs(ListServiceInstanceOutputsRequest listServiceInstanceOutputsRequest) Deprecated.AWS Proton is not accepting new customers.Get a list service of instance Infrastructure as Code (IaC) outputs.
- Parameters:
listServiceInstanceOutputsRequest
-- Returns:
- A Java Future containing the result of the ListServiceInstanceOutputs operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstanceOutputs
@Deprecated default CompletableFuture<ListServiceInstanceOutputsResponse> listServiceInstanceOutputs(Consumer<ListServiceInstanceOutputsRequest.Builder> listServiceInstanceOutputsRequest) Deprecated.AWS Proton is not accepting new customers.Get a list service of instance Infrastructure as Code (IaC) outputs.
This is a convenience which creates an instance of the
ListServiceInstanceOutputsRequest.Builder
avoiding the need to create one manually viaListServiceInstanceOutputsRequest.builder()
- Parameters:
listServiceInstanceOutputsRequest
- AConsumer
that will call methods onListServiceInstanceOutputsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListServiceInstanceOutputs operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstanceOutputsPaginator
@Deprecated default ListServiceInstanceOutputsPublisher listServiceInstanceOutputsPaginator(ListServiceInstanceOutputsRequest listServiceInstanceOutputsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServiceInstanceOutputs(software.amazon.awssdk.services.proton.model.ListServiceInstanceOutputsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServiceInstanceOutputsPublisher publisher = client.listServiceInstanceOutputsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServiceInstanceOutputsPublisher publisher = client.listServiceInstanceOutputsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServiceInstanceOutputsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServiceInstanceOutputsResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServiceInstanceOutputs(software.amazon.awssdk.services.proton.model.ListServiceInstanceOutputsRequest)
operation.- Parameters:
listServiceInstanceOutputsRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstanceOutputsPaginator
@Deprecated default ListServiceInstanceOutputsPublisher listServiceInstanceOutputsPaginator(Consumer<ListServiceInstanceOutputsRequest.Builder> listServiceInstanceOutputsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServiceInstanceOutputs(software.amazon.awssdk.services.proton.model.ListServiceInstanceOutputsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServiceInstanceOutputsPublisher publisher = client.listServiceInstanceOutputsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServiceInstanceOutputsPublisher publisher = client.listServiceInstanceOutputsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServiceInstanceOutputsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServiceInstanceOutputsResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServiceInstanceOutputs(software.amazon.awssdk.services.proton.model.ListServiceInstanceOutputsRequest)
operation.
This is a convenience which creates an instance of the
ListServiceInstanceOutputsRequest.Builder
avoiding the need to create one manually viaListServiceInstanceOutputsRequest.builder()
- Parameters:
listServiceInstanceOutputsRequest
- AConsumer
that will call methods onListServiceInstanceOutputsRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstanceProvisionedResources
@Deprecated default CompletableFuture<ListServiceInstanceProvisionedResourcesResponse> listServiceInstanceProvisionedResources(ListServiceInstanceProvisionedResourcesRequest listServiceInstanceProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.List provisioned resources for a service instance with details.
- Parameters:
listServiceInstanceProvisionedResourcesRequest
-- Returns:
- A Java Future containing the result of the ListServiceInstanceProvisionedResources operation returned by
the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstanceProvisionedResources
@Deprecated default CompletableFuture<ListServiceInstanceProvisionedResourcesResponse> listServiceInstanceProvisionedResources(Consumer<ListServiceInstanceProvisionedResourcesRequest.Builder> listServiceInstanceProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.List provisioned resources for a service instance with details.
This is a convenience which creates an instance of the
ListServiceInstanceProvisionedResourcesRequest.Builder
avoiding the need to create one manually viaListServiceInstanceProvisionedResourcesRequest.builder()
- Parameters:
listServiceInstanceProvisionedResourcesRequest
- AConsumer
that will call methods onListServiceInstanceProvisionedResourcesRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListServiceInstanceProvisionedResources operation returned by
the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstanceProvisionedResourcesPaginator
@Deprecated default ListServiceInstanceProvisionedResourcesPublisher listServiceInstanceProvisionedResourcesPaginator(ListServiceInstanceProvisionedResourcesRequest listServiceInstanceProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServiceInstanceProvisionedResources(software.amazon.awssdk.services.proton.model.ListServiceInstanceProvisionedResourcesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServiceInstanceProvisionedResourcesPublisher publisher = client.listServiceInstanceProvisionedResourcesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServiceInstanceProvisionedResourcesPublisher publisher = client.listServiceInstanceProvisionedResourcesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServiceInstanceProvisionedResourcesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServiceInstanceProvisionedResourcesResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServiceInstanceProvisionedResources(software.amazon.awssdk.services.proton.model.ListServiceInstanceProvisionedResourcesRequest)
operation.- Parameters:
listServiceInstanceProvisionedResourcesRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstanceProvisionedResourcesPaginator
@Deprecated default ListServiceInstanceProvisionedResourcesPublisher listServiceInstanceProvisionedResourcesPaginator(Consumer<ListServiceInstanceProvisionedResourcesRequest.Builder> listServiceInstanceProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServiceInstanceProvisionedResources(software.amazon.awssdk.services.proton.model.ListServiceInstanceProvisionedResourcesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServiceInstanceProvisionedResourcesPublisher publisher = client.listServiceInstanceProvisionedResourcesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServiceInstanceProvisionedResourcesPublisher publisher = client.listServiceInstanceProvisionedResourcesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServiceInstanceProvisionedResourcesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServiceInstanceProvisionedResourcesResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServiceInstanceProvisionedResources(software.amazon.awssdk.services.proton.model.ListServiceInstanceProvisionedResourcesRequest)
operation.
This is a convenience which creates an instance of the
ListServiceInstanceProvisionedResourcesRequest.Builder
avoiding the need to create one manually viaListServiceInstanceProvisionedResourcesRequest.builder()
- Parameters:
listServiceInstanceProvisionedResourcesRequest
- AConsumer
that will call methods onListServiceInstanceProvisionedResourcesRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstances
@Deprecated default CompletableFuture<ListServiceInstancesResponse> listServiceInstances(ListServiceInstancesRequest listServiceInstancesRequest) Deprecated.AWS Proton is not accepting new customers.List service instances with summary data. This action lists service instances of all services in the Amazon Web Services account.
- Parameters:
listServiceInstancesRequest
-- Returns:
- A Java Future containing the result of the ListServiceInstances operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstances
@Deprecated default CompletableFuture<ListServiceInstancesResponse> listServiceInstances(Consumer<ListServiceInstancesRequest.Builder> listServiceInstancesRequest) Deprecated.AWS Proton is not accepting new customers.List service instances with summary data. This action lists service instances of all services in the Amazon Web Services account.
This is a convenience which creates an instance of the
ListServiceInstancesRequest.Builder
avoiding the need to create one manually viaListServiceInstancesRequest.builder()
- Parameters:
listServiceInstancesRequest
- AConsumer
that will call methods onListServiceInstancesRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListServiceInstances operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstancesPaginator
@Deprecated default ListServiceInstancesPublisher listServiceInstancesPaginator(ListServiceInstancesRequest listServiceInstancesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServiceInstances(software.amazon.awssdk.services.proton.model.ListServiceInstancesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServiceInstancesPublisher publisher = client.listServiceInstancesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServiceInstancesPublisher publisher = client.listServiceInstancesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServiceInstancesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServiceInstancesResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServiceInstances(software.amazon.awssdk.services.proton.model.ListServiceInstancesRequest)
operation.- Parameters:
listServiceInstancesRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceInstancesPaginator
@Deprecated default ListServiceInstancesPublisher listServiceInstancesPaginator(Consumer<ListServiceInstancesRequest.Builder> listServiceInstancesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServiceInstances(software.amazon.awssdk.services.proton.model.ListServiceInstancesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServiceInstancesPublisher publisher = client.listServiceInstancesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServiceInstancesPublisher publisher = client.listServiceInstancesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServiceInstancesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServiceInstancesResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServiceInstances(software.amazon.awssdk.services.proton.model.ListServiceInstancesRequest)
operation.
This is a convenience which creates an instance of the
ListServiceInstancesRequest.Builder
avoiding the need to create one manually viaListServiceInstancesRequest.builder()
- Parameters:
listServiceInstancesRequest
- AConsumer
that will call methods onListServiceInstancesRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServicePipelineOutputs
@Deprecated default CompletableFuture<ListServicePipelineOutputsResponse> listServicePipelineOutputs(ListServicePipelineOutputsRequest listServicePipelineOutputsRequest) Deprecated.AWS Proton is not accepting new customers.Get a list of service pipeline Infrastructure as Code (IaC) outputs.
- Parameters:
listServicePipelineOutputsRequest
-- Returns:
- A Java Future containing the result of the ListServicePipelineOutputs operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServicePipelineOutputs
@Deprecated default CompletableFuture<ListServicePipelineOutputsResponse> listServicePipelineOutputs(Consumer<ListServicePipelineOutputsRequest.Builder> listServicePipelineOutputsRequest) Deprecated.AWS Proton is not accepting new customers.Get a list of service pipeline Infrastructure as Code (IaC) outputs.
This is a convenience which creates an instance of the
ListServicePipelineOutputsRequest.Builder
avoiding the need to create one manually viaListServicePipelineOutputsRequest.builder()
- Parameters:
listServicePipelineOutputsRequest
- AConsumer
that will call methods onListServicePipelineOutputsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListServicePipelineOutputs operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServicePipelineOutputsPaginator
@Deprecated default ListServicePipelineOutputsPublisher listServicePipelineOutputsPaginator(ListServicePipelineOutputsRequest listServicePipelineOutputsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServicePipelineOutputs(software.amazon.awssdk.services.proton.model.ListServicePipelineOutputsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServicePipelineOutputsPublisher publisher = client.listServicePipelineOutputsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServicePipelineOutputsPublisher publisher = client.listServicePipelineOutputsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServicePipelineOutputsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServicePipelineOutputsResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServicePipelineOutputs(software.amazon.awssdk.services.proton.model.ListServicePipelineOutputsRequest)
operation.- Parameters:
listServicePipelineOutputsRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServicePipelineOutputsPaginator
@Deprecated default ListServicePipelineOutputsPublisher listServicePipelineOutputsPaginator(Consumer<ListServicePipelineOutputsRequest.Builder> listServicePipelineOutputsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServicePipelineOutputs(software.amazon.awssdk.services.proton.model.ListServicePipelineOutputsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServicePipelineOutputsPublisher publisher = client.listServicePipelineOutputsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServicePipelineOutputsPublisher publisher = client.listServicePipelineOutputsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServicePipelineOutputsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServicePipelineOutputsResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServicePipelineOutputs(software.amazon.awssdk.services.proton.model.ListServicePipelineOutputsRequest)
operation.
This is a convenience which creates an instance of the
ListServicePipelineOutputsRequest.Builder
avoiding the need to create one manually viaListServicePipelineOutputsRequest.builder()
- Parameters:
listServicePipelineOutputsRequest
- AConsumer
that will call methods onListServicePipelineOutputsRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServicePipelineProvisionedResources
@Deprecated default CompletableFuture<ListServicePipelineProvisionedResourcesResponse> listServicePipelineProvisionedResources(ListServicePipelineProvisionedResourcesRequest listServicePipelineProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.List provisioned resources for a service and pipeline with details.
- Parameters:
listServicePipelineProvisionedResourcesRequest
-- Returns:
- A Java Future containing the result of the ListServicePipelineProvisionedResources operation returned by
the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServicePipelineProvisionedResources
@Deprecated default CompletableFuture<ListServicePipelineProvisionedResourcesResponse> listServicePipelineProvisionedResources(Consumer<ListServicePipelineProvisionedResourcesRequest.Builder> listServicePipelineProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.List provisioned resources for a service and pipeline with details.
This is a convenience which creates an instance of the
ListServicePipelineProvisionedResourcesRequest.Builder
avoiding the need to create one manually viaListServicePipelineProvisionedResourcesRequest.builder()
- Parameters:
listServicePipelineProvisionedResourcesRequest
- AConsumer
that will call methods onListServicePipelineProvisionedResourcesRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListServicePipelineProvisionedResources operation returned by
the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServicePipelineProvisionedResourcesPaginator
@Deprecated default ListServicePipelineProvisionedResourcesPublisher listServicePipelineProvisionedResourcesPaginator(ListServicePipelineProvisionedResourcesRequest listServicePipelineProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServicePipelineProvisionedResources(software.amazon.awssdk.services.proton.model.ListServicePipelineProvisionedResourcesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServicePipelineProvisionedResourcesPublisher publisher = client.listServicePipelineProvisionedResourcesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServicePipelineProvisionedResourcesPublisher publisher = client.listServicePipelineProvisionedResourcesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServicePipelineProvisionedResourcesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServicePipelineProvisionedResourcesResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServicePipelineProvisionedResources(software.amazon.awssdk.services.proton.model.ListServicePipelineProvisionedResourcesRequest)
operation.- Parameters:
listServicePipelineProvisionedResourcesRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServicePipelineProvisionedResourcesPaginator
@Deprecated default ListServicePipelineProvisionedResourcesPublisher listServicePipelineProvisionedResourcesPaginator(Consumer<ListServicePipelineProvisionedResourcesRequest.Builder> listServicePipelineProvisionedResourcesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServicePipelineProvisionedResources(software.amazon.awssdk.services.proton.model.ListServicePipelineProvisionedResourcesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServicePipelineProvisionedResourcesPublisher publisher = client.listServicePipelineProvisionedResourcesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServicePipelineProvisionedResourcesPublisher publisher = client.listServicePipelineProvisionedResourcesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServicePipelineProvisionedResourcesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServicePipelineProvisionedResourcesResponse response) { //... }; });
Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServicePipelineProvisionedResources(software.amazon.awssdk.services.proton.model.ListServicePipelineProvisionedResourcesRequest)
operation.
This is a convenience which creates an instance of the
ListServicePipelineProvisionedResourcesRequest.Builder
avoiding the need to create one manually viaListServicePipelineProvisionedResourcesRequest.builder()
- Parameters:
listServicePipelineProvisionedResourcesRequest
- AConsumer
that will call methods onListServicePipelineProvisionedResourcesRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceTemplateVersions
@Deprecated default CompletableFuture<ListServiceTemplateVersionsResponse> listServiceTemplateVersions(ListServiceTemplateVersionsRequest listServiceTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.List major or minor versions of a service template with detail data.
- Parameters:
listServiceTemplateVersionsRequest
-- Returns:
- A Java Future containing the result of the ListServiceTemplateVersions operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceTemplateVersions
@Deprecated default CompletableFuture<ListServiceTemplateVersionsResponse> listServiceTemplateVersions(Consumer<ListServiceTemplateVersionsRequest.Builder> listServiceTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.List major or minor versions of a service template with detail data.
This is a convenience which creates an instance of the
ListServiceTemplateVersionsRequest.Builder
avoiding the need to create one manually viaListServiceTemplateVersionsRequest.builder()
- Parameters:
listServiceTemplateVersionsRequest
- AConsumer
that will call methods onListServiceTemplateVersionsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListServiceTemplateVersions operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceTemplateVersionsPaginator
@Deprecated default ListServiceTemplateVersionsPublisher listServiceTemplateVersionsPaginator(ListServiceTemplateVersionsRequest listServiceTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServiceTemplateVersions(software.amazon.awssdk.services.proton.model.ListServiceTemplateVersionsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServiceTemplateVersionsPublisher publisher = client.listServiceTemplateVersionsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServiceTemplateVersionsPublisher publisher = client.listServiceTemplateVersionsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServiceTemplateVersionsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServiceTemplateVersionsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServiceTemplateVersions(software.amazon.awssdk.services.proton.model.ListServiceTemplateVersionsRequest)
operation.- Parameters:
listServiceTemplateVersionsRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceTemplateVersionsPaginator
@Deprecated default ListServiceTemplateVersionsPublisher listServiceTemplateVersionsPaginator(Consumer<ListServiceTemplateVersionsRequest.Builder> listServiceTemplateVersionsRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServiceTemplateVersions(software.amazon.awssdk.services.proton.model.ListServiceTemplateVersionsRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServiceTemplateVersionsPublisher publisher = client.listServiceTemplateVersionsPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServiceTemplateVersionsPublisher publisher = client.listServiceTemplateVersionsPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServiceTemplateVersionsResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServiceTemplateVersionsResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServiceTemplateVersions(software.amazon.awssdk.services.proton.model.ListServiceTemplateVersionsRequest)
operation.
This is a convenience which creates an instance of the
ListServiceTemplateVersionsRequest.Builder
avoiding the need to create one manually viaListServiceTemplateVersionsRequest.builder()
- Parameters:
listServiceTemplateVersionsRequest
- AConsumer
that will call methods onListServiceTemplateVersionsRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceTemplates
@Deprecated default CompletableFuture<ListServiceTemplatesResponse> listServiceTemplates(ListServiceTemplatesRequest listServiceTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.List service templates with detail data.
- Parameters:
listServiceTemplatesRequest
-- Returns:
- A Java Future containing the result of the ListServiceTemplates operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceTemplates
@Deprecated default CompletableFuture<ListServiceTemplatesResponse> listServiceTemplates(Consumer<ListServiceTemplatesRequest.Builder> listServiceTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.List service templates with detail data.
This is a convenience which creates an instance of the
ListServiceTemplatesRequest.Builder
avoiding the need to create one manually viaListServiceTemplatesRequest.builder()
- Parameters:
listServiceTemplatesRequest
- AConsumer
that will call methods onListServiceTemplatesRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListServiceTemplates operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceTemplatesPaginator
@Deprecated default ListServiceTemplatesPublisher listServiceTemplatesPaginator(ListServiceTemplatesRequest listServiceTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServiceTemplates(software.amazon.awssdk.services.proton.model.ListServiceTemplatesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServiceTemplatesPublisher publisher = client.listServiceTemplatesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServiceTemplatesPublisher publisher = client.listServiceTemplatesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServiceTemplatesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServiceTemplatesResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServiceTemplates(software.amazon.awssdk.services.proton.model.ListServiceTemplatesRequest)
operation.- Parameters:
listServiceTemplatesRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServiceTemplatesPaginator
@Deprecated default ListServiceTemplatesPublisher listServiceTemplatesPaginator(Consumer<ListServiceTemplatesRequest.Builder> listServiceTemplatesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServiceTemplates(software.amazon.awssdk.services.proton.model.ListServiceTemplatesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServiceTemplatesPublisher publisher = client.listServiceTemplatesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServiceTemplatesPublisher publisher = client.listServiceTemplatesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServiceTemplatesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServiceTemplatesResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServiceTemplates(software.amazon.awssdk.services.proton.model.ListServiceTemplatesRequest)
operation.
This is a convenience which creates an instance of the
ListServiceTemplatesRequest.Builder
avoiding the need to create one manually viaListServiceTemplatesRequest.builder()
- Parameters:
listServiceTemplatesRequest
- AConsumer
that will call methods onListServiceTemplatesRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServices
@Deprecated default CompletableFuture<ListServicesResponse> listServices(ListServicesRequest listServicesRequest) Deprecated.AWS Proton is not accepting new customers.List services with summaries of detail data.
- Parameters:
listServicesRequest
-- Returns:
- A Java Future containing the result of the ListServices operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServices
@Deprecated default CompletableFuture<ListServicesResponse> listServices(Consumer<ListServicesRequest.Builder> listServicesRequest) Deprecated.AWS Proton is not accepting new customers.List services with summaries of detail data.
This is a convenience which creates an instance of the
ListServicesRequest.Builder
avoiding the need to create one manually viaListServicesRequest.builder()
- Parameters:
listServicesRequest
- AConsumer
that will call methods onListServicesRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListServices operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServicesPaginator
@Deprecated default ListServicesPublisher listServicesPaginator(ListServicesRequest listServicesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServices(software.amazon.awssdk.services.proton.model.ListServicesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServicesPublisher publisher = client.listServicesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServicesPublisher publisher = client.listServicesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServicesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServicesResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServices(software.amazon.awssdk.services.proton.model.ListServicesRequest)
operation.- Parameters:
listServicesRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listServicesPaginator
@Deprecated default ListServicesPublisher listServicesPaginator(Consumer<ListServicesRequest.Builder> listServicesRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listServices(software.amazon.awssdk.services.proton.model.ListServicesRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListServicesPublisher publisher = client.listServicesPaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListServicesPublisher publisher = client.listServicesPaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListServicesResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListServicesResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listServices(software.amazon.awssdk.services.proton.model.ListServicesRequest)
operation.
This is a convenience which creates an instance of the
ListServicesRequest.Builder
avoiding the need to create one manually viaListServicesRequest.builder()
- Parameters:
listServicesRequest
- AConsumer
that will call methods onListServicesRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listTagsForResource
@Deprecated default CompletableFuture<ListTagsForResourceResponse> listTagsForResource(ListTagsForResourceRequest listTagsForResourceRequest) Deprecated.AWS Proton is not accepting new customers.List tags for a resource. For more information, see Proton resources and tagging in the Proton User Guide.
- Parameters:
listTagsForResourceRequest
-- Returns:
- A Java Future containing the result of the ListTagsForResource operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listTagsForResource
@Deprecated default CompletableFuture<ListTagsForResourceResponse> listTagsForResource(Consumer<ListTagsForResourceRequest.Builder> listTagsForResourceRequest) Deprecated.AWS Proton is not accepting new customers.List tags for a resource. For more information, see Proton resources and tagging in the Proton User Guide.
This is a convenience which creates an instance of the
ListTagsForResourceRequest.Builder
avoiding the need to create one manually viaListTagsForResourceRequest.builder()
- Parameters:
listTagsForResourceRequest
- AConsumer
that will call methods onListTagsForResourceRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the ListTagsForResource operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listTagsForResourcePaginator
@Deprecated default ListTagsForResourcePublisher listTagsForResourcePaginator(ListTagsForResourceRequest listTagsForResourceRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listTagsForResource(software.amazon.awssdk.services.proton.model.ListTagsForResourceRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListTagsForResourcePublisher publisher = client.listTagsForResourcePaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListTagsForResourcePublisher publisher = client.listTagsForResourcePaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListTagsForResourceResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListTagsForResourceResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listTagsForResource(software.amazon.awssdk.services.proton.model.ListTagsForResourceRequest)
operation.- Parameters:
listTagsForResourceRequest
-- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
listTagsForResourcePaginator
@Deprecated default ListTagsForResourcePublisher listTagsForResourcePaginator(Consumer<ListTagsForResourceRequest.Builder> listTagsForResourceRequest) Deprecated.AWS Proton is not accepting new customers.This is a variant of
listTagsForResource(software.amazon.awssdk.services.proton.model.ListTagsForResourceRequest)
operation. The return type is a custom publisher that can be subscribed to request a stream of response pages. SDK will internally handle making service calls for you.When the operation is called, an instance of this class is returned. At this point, no service calls are made yet and so there is no guarantee that the request is valid. If there are errors in your request, you will see the failures only after you start streaming the data. The subscribe method should be called as a request to start streaming data. For more info, see
Publisher.subscribe(org.reactivestreams.Subscriber)
. Each call to the subscribe method will result in a newSubscription
i.e., a new contract to stream data from the starting request.The following are few ways to use the response class:
1) Using the subscribe helper methodsoftware.amazon.awssdk.services.proton.paginators.ListTagsForResourcePublisher publisher = client.listTagsForResourcePaginator(request); CompletableFuture<Void> future = publisher.subscribe(res -> { // Do something with the response }); future.get();
software.amazon.awssdk.services.proton.paginators.ListTagsForResourcePublisher publisher = client.listTagsForResourcePaginator(request); publisher.subscribe(new Subscriber<software.amazon.awssdk.services.proton.model.ListTagsForResourceResponse>() { public void onSubscribe(org.reactivestreams.Subscriber subscription) { //... }; public void onNext(software.amazon.awssdk.services.proton.model.ListTagsForResourceResponse response) { //... }; });
Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listTagsForResource(software.amazon.awssdk.services.proton.model.ListTagsForResourceRequest)
operation.
This is a convenience which creates an instance of the
ListTagsForResourceRequest.Builder
avoiding the need to create one manually viaListTagsForResourceRequest.builder()
- Parameters:
listTagsForResourceRequest
- AConsumer
that will call methods onListTagsForResourceRequest.Builder
to create a request.- Returns:
- A custom publisher that can be subscribed to request a stream of response pages.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
notifyResourceDeploymentStatusChange
@Deprecated default CompletableFuture<NotifyResourceDeploymentStatusChangeResponse> notifyResourceDeploymentStatusChange(NotifyResourceDeploymentStatusChangeRequest notifyResourceDeploymentStatusChangeRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
notifyResourceDeploymentStatusChangeRequest
-- Returns:
- A Java Future containing the result of the NotifyResourceDeploymentStatusChange operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
notifyResourceDeploymentStatusChange
@Deprecated default CompletableFuture<NotifyResourceDeploymentStatusChangeResponse> notifyResourceDeploymentStatusChange(Consumer<NotifyResourceDeploymentStatusChangeRequest.Builder> notifyResourceDeploymentStatusChangeRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
NotifyResourceDeploymentStatusChangeRequest.Builder
avoiding the need to create one manually viaNotifyResourceDeploymentStatusChangeRequest.builder()
- Parameters:
notifyResourceDeploymentStatusChangeRequest
- AConsumer
that will call methods onNotifyResourceDeploymentStatusChangeRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the NotifyResourceDeploymentStatusChange operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
rejectEnvironmentAccountConnection
@Deprecated default CompletableFuture<RejectEnvironmentAccountConnectionResponse> rejectEnvironmentAccountConnection(RejectEnvironmentAccountConnectionRequest rejectEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
rejectEnvironmentAccountConnectionRequest
-- Returns:
- A Java Future containing the result of the RejectEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
rejectEnvironmentAccountConnection
@Deprecated default CompletableFuture<RejectEnvironmentAccountConnectionResponse> rejectEnvironmentAccountConnection(Consumer<RejectEnvironmentAccountConnectionRequest.Builder> rejectEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
RejectEnvironmentAccountConnectionRequest.Builder
avoiding the need to create one manually viaRejectEnvironmentAccountConnectionRequest.builder()
- Parameters:
rejectEnvironmentAccountConnectionRequest
- AConsumer
that will call methods onRejectEnvironmentAccountConnectionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the RejectEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
tagResource
@Deprecated default CompletableFuture<TagResourceResponse> tagResource(TagResourceRequest tagResourceRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
tagResourceRequest
-- Returns:
- A Java Future containing the result of the TagResource operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
tagResource
@Deprecated default CompletableFuture<TagResourceResponse> tagResource(Consumer<TagResourceRequest.Builder> tagResourceRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
TagResourceRequest.Builder
avoiding the need to create one manually viaTagResourceRequest.builder()
- Parameters:
tagResourceRequest
- AConsumer
that will call methods onTagResourceRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the TagResource operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
untagResource
@Deprecated default CompletableFuture<UntagResourceResponse> untagResource(UntagResourceRequest untagResourceRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
untagResourceRequest
-- Returns:
- A Java Future containing the result of the UntagResource operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
untagResource
@Deprecated default CompletableFuture<UntagResourceResponse> untagResource(Consumer<UntagResourceRequest.Builder> untagResourceRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
UntagResourceRequest.Builder
avoiding the need to create one manually viaUntagResourceRequest.builder()
- Parameters:
untagResourceRequest
- AConsumer
that will call methods onUntagResourceRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UntagResource operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateAccountSettings
@Deprecated default CompletableFuture<UpdateAccountSettingsResponse> updateAccountSettings(UpdateAccountSettingsRequest updateAccountSettingsRequest) Deprecated.AWS Proton is not accepting new customers.Update Proton settings that are used for multiple services in the Amazon Web Services account.
- Parameters:
updateAccountSettingsRequest
-- Returns:
- A Java Future containing the result of the UpdateAccountSettings operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateAccountSettings
@Deprecated default CompletableFuture<UpdateAccountSettingsResponse> updateAccountSettings(Consumer<UpdateAccountSettingsRequest.Builder> updateAccountSettingsRequest) Deprecated.AWS Proton is not accepting new customers.Update Proton settings that are used for multiple services in the Amazon Web Services account.
This is a convenience which creates an instance of the
UpdateAccountSettingsRequest.Builder
avoiding the need to create one manually viaUpdateAccountSettingsRequest.builder()
- Parameters:
updateAccountSettingsRequest
- AConsumer
that will call methods onUpdateAccountSettingsRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateAccountSettings operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateComponent
@Deprecated default CompletableFuture<UpdateComponentResponse> updateComponent(UpdateComponentRequest updateComponentRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
updateComponentRequest
-- Returns:
- A Java Future containing the result of the UpdateComponent operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateComponent
@Deprecated default CompletableFuture<UpdateComponentResponse> updateComponent(Consumer<UpdateComponentRequest.Builder> updateComponentRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
UpdateComponentRequest.Builder
avoiding the need to create one manually viaUpdateComponentRequest.builder()
- Parameters:
updateComponentRequest
- AConsumer
that will call methods onUpdateComponentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateComponent operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateEnvironment
@Deprecated default CompletableFuture<UpdateEnvironmentResponse> updateEnvironment(UpdateEnvironmentRequest updateEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.Update an environment.
If the environment is associated with an environment account connection, don't update or include the
protonServiceRoleArn
andprovisioningRepository
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
orprotonServiceRoleArn
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 theprotonServiceRoleArn
andenvironmentAccountConnectionId
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.
- Parameters:
updateEnvironmentRequest
-- Returns:
- A Java Future containing the result of the UpdateEnvironment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
updateEnvironment
@Deprecated default CompletableFuture<UpdateEnvironmentResponse> updateEnvironment(Consumer<UpdateEnvironmentRequest.Builder> updateEnvironmentRequest) Deprecated.AWS Proton is not accepting new customers.Update an environment.
If the environment is associated with an environment account connection, don't update or include the
protonServiceRoleArn
andprovisioningRepository
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
orprotonServiceRoleArn
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 theprotonServiceRoleArn
andenvironmentAccountConnectionId
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.
This is a convenience which creates an instance of the
UpdateEnvironmentRequest.Builder
avoiding the need to create one manually viaUpdateEnvironmentRequest.builder()
- Parameters:
updateEnvironmentRequest
- AConsumer
that will call methods onUpdateEnvironmentRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateEnvironment operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
updateEnvironmentAccountConnection
@Deprecated default CompletableFuture<UpdateEnvironmentAccountConnectionResponse> updateEnvironmentAccountConnection(UpdateEnvironmentAccountConnectionRequest updateEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
updateEnvironmentAccountConnectionRequest
-- Returns:
- A Java Future containing the result of the UpdateEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateEnvironmentAccountConnection
@Deprecated default CompletableFuture<UpdateEnvironmentAccountConnectionResponse> updateEnvironmentAccountConnection(Consumer<UpdateEnvironmentAccountConnectionRequest.Builder> updateEnvironmentAccountConnectionRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
UpdateEnvironmentAccountConnectionRequest.Builder
avoiding the need to create one manually viaUpdateEnvironmentAccountConnectionRequest.builder()
- Parameters:
updateEnvironmentAccountConnectionRequest
- AConsumer
that will call methods onUpdateEnvironmentAccountConnectionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateEnvironmentAccountConnection operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateEnvironmentTemplate
@Deprecated default CompletableFuture<UpdateEnvironmentTemplateResponse> updateEnvironmentTemplate(UpdateEnvironmentTemplateRequest updateEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.Update an environment template.
- Parameters:
updateEnvironmentTemplateRequest
-- Returns:
- A Java Future containing the result of the UpdateEnvironmentTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateEnvironmentTemplate
@Deprecated default CompletableFuture<UpdateEnvironmentTemplateResponse> updateEnvironmentTemplate(Consumer<UpdateEnvironmentTemplateRequest.Builder> updateEnvironmentTemplateRequest) Deprecated.AWS Proton is not accepting new customers.Update an environment template.
This is a convenience which creates an instance of the
UpdateEnvironmentTemplateRequest.Builder
avoiding the need to create one manually viaUpdateEnvironmentTemplateRequest.builder()
- Parameters:
updateEnvironmentTemplateRequest
- AConsumer
that will call methods onUpdateEnvironmentTemplateRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateEnvironmentTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateEnvironmentTemplateVersion
@Deprecated default CompletableFuture<UpdateEnvironmentTemplateVersionResponse> updateEnvironmentTemplateVersion(UpdateEnvironmentTemplateVersionRequest updateEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Update a major or minor version of an environment template.
- Parameters:
updateEnvironmentTemplateVersionRequest
-- Returns:
- A Java Future containing the result of the UpdateEnvironmentTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateEnvironmentTemplateVersion
@Deprecated default CompletableFuture<UpdateEnvironmentTemplateVersionResponse> updateEnvironmentTemplateVersion(Consumer<UpdateEnvironmentTemplateVersionRequest.Builder> updateEnvironmentTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Update a major or minor version of an environment template.
This is a convenience which creates an instance of the
UpdateEnvironmentTemplateVersionRequest.Builder
avoiding the need to create one manually viaUpdateEnvironmentTemplateVersionRequest.builder()
- Parameters:
updateEnvironmentTemplateVersionRequest
- AConsumer
that will call methods onUpdateEnvironmentTemplateVersionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateEnvironmentTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateService
@Deprecated default CompletableFuture<UpdateServiceResponse> updateService(UpdateServiceRequest updateServiceRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
updateServiceRequest
-- Returns:
- A Java Future containing the result of the UpdateService operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateService
@Deprecated default CompletableFuture<UpdateServiceResponse> updateService(Consumer<UpdateServiceRequest.Builder> updateServiceRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
UpdateServiceRequest.Builder
avoiding the need to create one manually viaUpdateServiceRequest.builder()
- Parameters:
updateServiceRequest
- AConsumer
that will call methods onUpdateServiceRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateService operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ServiceQuotaExceededException A quota was exceeded. For more information, see Proton Quotas in the Proton User Guide.
- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateServiceInstance
@Deprecated default CompletableFuture<UpdateServiceInstanceResponse> updateServiceInstance(UpdateServiceInstanceRequest updateServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.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.
- Parameters:
updateServiceInstanceRequest
-- Returns:
- A Java Future containing the result of the UpdateServiceInstance operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateServiceInstance
@Deprecated default CompletableFuture<UpdateServiceInstanceResponse> updateServiceInstance(Consumer<UpdateServiceInstanceRequest.Builder> updateServiceInstanceRequest) Deprecated.AWS Proton is not accepting new customers.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.
This is a convenience which creates an instance of the
UpdateServiceInstanceRequest.Builder
avoiding the need to create one manually viaUpdateServiceInstanceRequest.builder()
- Parameters:
updateServiceInstanceRequest
- AConsumer
that will call methods onUpdateServiceInstanceRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateServiceInstance operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateServicePipeline
@Deprecated default CompletableFuture<UpdateServicePipelineResponse> updateServicePipeline(UpdateServicePipelineRequest updateServicePipelineRequest) Deprecated.AWS Proton is not accepting new customers.Update the service pipeline.
There are four modes for updating a service pipeline. 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 service pipeline is deployed and updated with the new spec that you provide. Only requested parameters are updated. Don’t include major or minor version parameters when you use this
deployment-type
. -
MINOR_VERSION
In this mode, the service pipeline is deployed and updated with the published, recommended (latest) minor version of the current major version in use, by default. You can specify a different minor version of the current major version in use.
-
MAJOR_VERSION
In this mode, the service pipeline is deployed and updated with the published, recommended (latest) major and minor version of the current template by default. You can specify a different major version that's higher than the major version in use and a minor version.
- Parameters:
updateServicePipelineRequest
-- Returns:
- A Java Future containing the result of the UpdateServicePipeline operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
updateServicePipeline
@Deprecated default CompletableFuture<UpdateServicePipelineResponse> updateServicePipeline(Consumer<UpdateServicePipelineRequest.Builder> updateServicePipelineRequest) Deprecated.AWS Proton is not accepting new customers.Update the service pipeline.
There are four modes for updating a service pipeline. 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 service pipeline is deployed and updated with the new spec that you provide. Only requested parameters are updated. Don’t include major or minor version parameters when you use this
deployment-type
. -
MINOR_VERSION
In this mode, the service pipeline is deployed and updated with the published, recommended (latest) minor version of the current major version in use, by default. You can specify a different minor version of the current major version in use.
-
MAJOR_VERSION
In this mode, the service pipeline is deployed and updated with the published, recommended (latest) major and minor version of the current template by default. You can specify a different major version that's higher than the major version in use and a minor version.
This is a convenience which creates an instance of the
UpdateServicePipelineRequest.Builder
avoiding the need to create one manually viaUpdateServicePipelineRequest.builder()
- Parameters:
updateServicePipelineRequest
- AConsumer
that will call methods onUpdateServicePipelineRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateServicePipeline operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
-
updateServiceSyncBlocker
@Deprecated default CompletableFuture<UpdateServiceSyncBlockerResponse> updateServiceSyncBlocker(UpdateServiceSyncBlockerRequest updateServiceSyncBlockerRequest) Deprecated.AWS Proton is not accepting new customers.Update the service sync blocker by resolving it.
- Parameters:
updateServiceSyncBlockerRequest
-- Returns:
- A Java Future containing the result of the UpdateServiceSyncBlocker operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateServiceSyncBlocker
@Deprecated default CompletableFuture<UpdateServiceSyncBlockerResponse> updateServiceSyncBlocker(Consumer<UpdateServiceSyncBlockerRequest.Builder> updateServiceSyncBlockerRequest) Deprecated.AWS Proton is not accepting new customers.Update the service sync blocker by resolving it.
This is a convenience which creates an instance of the
UpdateServiceSyncBlockerRequest.Builder
avoiding the need to create one manually viaUpdateServiceSyncBlockerRequest.builder()
- Parameters:
updateServiceSyncBlockerRequest
- AConsumer
that will call methods onUpdateServiceSyncBlockerRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateServiceSyncBlocker operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateServiceSyncConfig
@Deprecated default CompletableFuture<UpdateServiceSyncConfigResponse> updateServiceSyncConfig(UpdateServiceSyncConfigRequest updateServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Update the Proton Ops config file.
- Parameters:
updateServiceSyncConfigRequest
-- Returns:
- A Java Future containing the result of the UpdateServiceSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateServiceSyncConfig
@Deprecated default CompletableFuture<UpdateServiceSyncConfigResponse> updateServiceSyncConfig(Consumer<UpdateServiceSyncConfigRequest.Builder> updateServiceSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Update the Proton Ops config file.
This is a convenience which creates an instance of the
UpdateServiceSyncConfigRequest.Builder
avoiding the need to create one manually viaUpdateServiceSyncConfigRequest.builder()
- Parameters:
updateServiceSyncConfigRequest
- AConsumer
that will call methods onUpdateServiceSyncConfigRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateServiceSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateServiceTemplate
@Deprecated default CompletableFuture<UpdateServiceTemplateResponse> updateServiceTemplate(UpdateServiceTemplateRequest updateServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.Update a service template.
- Parameters:
updateServiceTemplateRequest
-- Returns:
- A Java Future containing the result of the UpdateServiceTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateServiceTemplate
@Deprecated default CompletableFuture<UpdateServiceTemplateResponse> updateServiceTemplate(Consumer<UpdateServiceTemplateRequest.Builder> updateServiceTemplateRequest) Deprecated.AWS Proton is not accepting new customers.Update a service template.
This is a convenience which creates an instance of the
UpdateServiceTemplateRequest.Builder
avoiding the need to create one manually viaUpdateServiceTemplateRequest.builder()
- Parameters:
updateServiceTemplateRequest
- AConsumer
that will call methods onUpdateServiceTemplateRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateServiceTemplate operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateServiceTemplateVersion
@Deprecated default CompletableFuture<UpdateServiceTemplateVersionResponse> updateServiceTemplateVersion(UpdateServiceTemplateVersionRequest updateServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Update a major or minor version of a service template.
- Parameters:
updateServiceTemplateVersionRequest
-- Returns:
- A Java Future containing the result of the UpdateServiceTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateServiceTemplateVersion
@Deprecated default CompletableFuture<UpdateServiceTemplateVersionResponse> updateServiceTemplateVersion(Consumer<UpdateServiceTemplateVersionRequest.Builder> updateServiceTemplateVersionRequest) Deprecated.AWS Proton is not accepting new customers.Update a major or minor version of a service template.
This is a convenience which creates an instance of the
UpdateServiceTemplateVersionRequest.Builder
avoiding the need to create one manually viaUpdateServiceTemplateVersionRequest.builder()
- Parameters:
updateServiceTemplateVersionRequest
- AConsumer
that will call methods onUpdateServiceTemplateVersionRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateServiceTemplateVersion operation returned by the
service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateTemplateSyncConfig
@Deprecated default CompletableFuture<UpdateTemplateSyncConfigResponse> updateTemplateSyncConfig(UpdateTemplateSyncConfigRequest updateTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Update template sync configuration parameters, except for the
templateName
andtemplateType
. 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.- Parameters:
updateTemplateSyncConfigRequest
-- Returns:
- A Java Future containing the result of the UpdateTemplateSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
updateTemplateSyncConfig
@Deprecated default CompletableFuture<UpdateTemplateSyncConfigResponse> updateTemplateSyncConfig(Consumer<UpdateTemplateSyncConfigRequest.Builder> updateTemplateSyncConfigRequest) Deprecated.AWS Proton is not accepting new customers.Update template sync configuration parameters, except for the
templateName
andtemplateType
. 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.
This is a convenience which creates an instance of the
UpdateTemplateSyncConfigRequest.Builder
avoiding the need to create one manually viaUpdateTemplateSyncConfigRequest.builder()
- Parameters:
updateTemplateSyncConfigRequest
- AConsumer
that will call methods onUpdateTemplateSyncConfigRequest.Builder
to create a request.- Returns:
- A Java Future containing the result of the UpdateTemplateSyncConfig operation returned by the service.
The CompletableFuture returned by this method can be completed exceptionally with the following exceptions. The exception returned is wrapped with CompletionException, so you need to invokeThrowable.getCause()
to retrieve the underlying exception.- ValidationException The input is invalid or an out-of-range value was supplied for the input parameter.
- AccessDeniedException There isn't sufficient access for performing this action.
- ThrottlingException The request was denied due to request throttling.
- ConflictException The request couldn't be made due to a conflicting operation or resource.
- ResourceNotFoundException The requested resource wasn't found.
- InternalServerException The request failed to register with the service.
- SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.
- SdkClientException If any client side error occurs such as an IO related failure, failure to get credentials, etc.
- ProtonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.
- See Also:
-
waiter
Create an instance ofProtonAsyncWaiter
using this client.Waiters created via this method are managed by the SDK and resources will be released when the service client is closed.
- Returns:
- an instance of
ProtonAsyncWaiter
-
serviceClientConfiguration
Description copied from interface:SdkClient
The SDK service client configuration exposes client settings to the user, e.g., ClientOverrideConfiguration- Specified by:
serviceClientConfiguration
in interfaceAwsClient
- Specified by:
serviceClientConfiguration
in interfaceSdkClient
- Returns:
- SdkServiceClientConfiguration
-
create
Create aProtonAsyncClient
with the region loaded from theDefaultAwsRegionProviderChain
and credentials loaded from theDefaultCredentialsProvider
. -
builder
Create a builder that can be used to configure and create aProtonAsyncClient
.
-