aws-sdk-proton 1.19.0 → 1.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-proton/client.rb +79 -84
- data/lib/aws-sdk-proton/client_api.rb +16 -1
- data/lib/aws-sdk-proton/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-proton/endpoint_provider.rb +75 -75
- data/lib/aws-sdk-proton/types.rb +91 -899
- data/lib/aws-sdk-proton.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 504945b3142df87007b5565863e5c8f8737dfe453bfc752847b8e78b6e731bfe
|
4
|
+
data.tar.gz: 898e091a63fbf6d1288566f7d129db735b12753ce8668cd7b00cbe99b39503f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89c15bdd58843b96e2ee8a7bb99cbd7e5e389061022cbe0f0d5f27699e3d9fc235e33f66586c69795cbe73191964afd32db98a7d455bc4a95d2ef3dc67365784
|
7
|
+
data.tar.gz: 41d55427b954dc3112054fca46813cfd51de2cb630e6868cbb65cc936309427aa452f8b1e8863a5e85cbf286644eff93fef3a7816370183c0dcd2d0a0768fbd5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.21.0 (2022-12-02)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - CreateEnvironmentAccountConnection RoleArn input is now optional
|
8
|
+
|
9
|
+
1.20.0 (2022-11-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add support for sorting and filtering in ListServiceInstances
|
13
|
+
|
4
14
|
1.19.0 (2022-11-14)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.21.0
|
@@ -779,18 +779,13 @@ module Aws::Proton
|
|
779
779
|
#
|
780
780
|
# **You can provision environments using the following methods:**
|
781
781
|
#
|
782
|
-
# *
|
783
|
-
#
|
782
|
+
# * Amazon Web Services-managed provisioning: Proton makes direct calls
|
783
|
+
# to provision your resources.
|
784
784
|
#
|
785
|
-
# *
|
785
|
+
# * Self-managed provisioning: Proton makes pull requests on your
|
786
786
|
# repository to provide compiled infrastructure as code (IaC) files
|
787
787
|
# that your IaC engine uses to provision resources.
|
788
788
|
#
|
789
|
-
# * **CodeBuild-based provisioning** – Proton uses CodeBuild to run
|
790
|
-
# shell commands that you provide. Your commands can read inputs that
|
791
|
-
# Proton provides, and are responsible for provisioning or
|
792
|
-
# deprovisioning infrastructure and generating output values.
|
793
|
-
#
|
794
789
|
# For more information, see [Environments][1] and [Provisioning
|
795
790
|
# methods][2] in the *Proton User Guide*.
|
796
791
|
#
|
@@ -828,15 +823,15 @@ module Aws::Proton
|
|
828
823
|
# A description of the environment that's being created and deployed.
|
829
824
|
#
|
830
825
|
# @option params [String] :environment_account_connection_id
|
831
|
-
# The ID of the environment account connection that you provide if
|
832
|
-
#
|
833
|
-
#
|
834
|
-
# account. For more information, see [Environment account
|
826
|
+
# The ID of the environment account connection that you provide if
|
827
|
+
# you're provisioning your environment infrastructure resources to an
|
828
|
+
# environment account. For more information, see [Environment account
|
835
829
|
# connections][1] in the *Proton User guide*.
|
836
830
|
#
|
837
|
-
#
|
838
|
-
# specify
|
839
|
-
# `provisioningRepository
|
831
|
+
# To use Amazon Web Services-managed provisioning for the environment,
|
832
|
+
# specify either the `environmentAccountConnectionId` or
|
833
|
+
# `protonServiceRoleArn` parameter and omit the `provisioningRepository`
|
834
|
+
# parameter.
|
840
835
|
#
|
841
836
|
#
|
842
837
|
#
|
@@ -846,13 +841,12 @@ module Aws::Proton
|
|
846
841
|
# The name of the environment.
|
847
842
|
#
|
848
843
|
# @option params [String] :proton_service_role_arn
|
849
|
-
# The Amazon Resource Name (ARN) of the
|
850
|
-
# Proton to
|
851
|
-
# provisioning and CloudFormation on your behalf.
|
844
|
+
# The Amazon Resource Name (ARN) of the Proton service role that allows
|
845
|
+
# Proton to make calls to other services on your behalf.
|
852
846
|
#
|
853
|
-
# To use Amazon Web Services-managed provisioning for the environment
|
854
|
-
#
|
855
|
-
#
|
847
|
+
# To use Amazon Web Services-managed provisioning for the environment,
|
848
|
+
# specify either the `environmentAccountConnectionId` or
|
849
|
+
# `protonServiceRoleArn` parameter and omit the `provisioningRepository`
|
856
850
|
# parameter.
|
857
851
|
#
|
858
852
|
# @option params [Types::RepositoryBranchInput] :provisioning_repository
|
@@ -861,8 +855,9 @@ module Aws::Proton
|
|
861
855
|
# repository is a repository that has been registered with Proton. For
|
862
856
|
# more information, see CreateRepository.
|
863
857
|
#
|
864
|
-
# To use self-managed provisioning for the environment
|
865
|
-
#
|
858
|
+
# To use self-managed provisioning for the environment, specify this
|
859
|
+
# parameter and omit the `environmentAccountConnectionId` and
|
860
|
+
# `protonServiceRoleArn` parameters.
|
866
861
|
#
|
867
862
|
# @option params [required, String] :spec
|
868
863
|
# A YAML formatted string that provides inputs as defined in the
|
@@ -990,11 +985,10 @@ module Aws::Proton
|
|
990
985
|
# environment account.
|
991
986
|
#
|
992
987
|
# @option params [String] :component_role_arn
|
993
|
-
# The Amazon Resource Name (ARN) of
|
994
|
-
#
|
995
|
-
#
|
996
|
-
#
|
997
|
-
# in the account.
|
988
|
+
# The Amazon Resource Name (ARN) of the IAM service role that Proton
|
989
|
+
# uses when provisioning directly defined components in the associated
|
990
|
+
# environment account. It determines the scope of infrastructure that a
|
991
|
+
# component can provision in the account.
|
998
992
|
#
|
999
993
|
# You must specify `componentRoleArn` to allow directly defined
|
1000
994
|
# components to be associated with any environments running in this
|
@@ -1019,11 +1013,10 @@ module Aws::Proton
|
|
1019
1013
|
# to provision environment infrastructure resources in the associated
|
1020
1014
|
# environment account.
|
1021
1015
|
#
|
1022
|
-
# @option params [
|
1023
|
-
# The Amazon Resource Name (ARN) of
|
1024
|
-
# environment account. Proton uses this role to provision
|
1025
|
-
# resources
|
1026
|
-
# CloudFormation in the associated environment account.
|
1016
|
+
# @option params [String] :role_arn
|
1017
|
+
# The Amazon Resource Name (ARN) of the IAM service role that's created
|
1018
|
+
# in the environment account. Proton uses this role to provision
|
1019
|
+
# infrastructure resources in the associated environment account.
|
1027
1020
|
#
|
1028
1021
|
# @option params [Array<Types::Tag>] :tags
|
1029
1022
|
# An optional list of metadata items that you can associate with the
|
@@ -1048,7 +1041,7 @@ module Aws::Proton
|
|
1048
1041
|
# component_role_arn: "RoleArn",
|
1049
1042
|
# environment_name: "ResourceName", # required
|
1050
1043
|
# management_account_id: "AwsAccountId", # required
|
1051
|
-
# role_arn: "RoleArn",
|
1044
|
+
# role_arn: "RoleArn",
|
1052
1045
|
# tags: [
|
1053
1046
|
# {
|
1054
1047
|
# key: "TagKey", # required
|
@@ -3579,7 +3572,13 @@ module Aws::Proton
|
|
3579
3572
|
req.send_request(options)
|
3580
3573
|
end
|
3581
3574
|
|
3582
|
-
# List service instances with summary data.
|
3575
|
+
# List service instances with summary data. This action lists service
|
3576
|
+
# instances of all services in the Amazon Web Services account.
|
3577
|
+
#
|
3578
|
+
# @option params [Array<Types::ListServiceInstancesFilter>] :filters
|
3579
|
+
# An array of filtering criteria that scope down the result list. By
|
3580
|
+
# default, all service instances in the Amazon Web Services account are
|
3581
|
+
# returned.
|
3583
3582
|
#
|
3584
3583
|
# @option params [Integer] :max_results
|
3585
3584
|
# The maximum number of service instances to list.
|
@@ -3592,6 +3591,19 @@ module Aws::Proton
|
|
3592
3591
|
# @option params [String] :service_name
|
3593
3592
|
# The name of the service that the service instance belongs to.
|
3594
3593
|
#
|
3594
|
+
# @option params [String] :sort_by
|
3595
|
+
# The field that the result list is sorted by.
|
3596
|
+
#
|
3597
|
+
# When you choose to sort by `serviceName`, service instances within
|
3598
|
+
# each service are sorted by service instance name.
|
3599
|
+
#
|
3600
|
+
# Default: `serviceName`
|
3601
|
+
#
|
3602
|
+
# @option params [String] :sort_order
|
3603
|
+
# Result list sort order.
|
3604
|
+
#
|
3605
|
+
# Default: `ASCENDING`
|
3606
|
+
#
|
3595
3607
|
# @return [Types::ListServiceInstancesOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3596
3608
|
#
|
3597
3609
|
# * {Types::ListServiceInstancesOutput#next_token #next_token} => String
|
@@ -3602,9 +3614,17 @@ module Aws::Proton
|
|
3602
3614
|
# @example Request syntax with placeholder values
|
3603
3615
|
#
|
3604
3616
|
# resp = client.list_service_instances({
|
3617
|
+
# filters: [
|
3618
|
+
# {
|
3619
|
+
# key: "name", # accepts name, deploymentStatus, templateName, serviceName, deployedTemplateVersionStatus, environmentName, lastDeploymentAttemptedAtBefore, lastDeploymentAttemptedAtAfter, createdAtBefore, createdAtAfter
|
3620
|
+
# value: "ListServiceInstancesFilterValue",
|
3621
|
+
# },
|
3622
|
+
# ],
|
3605
3623
|
# max_results: 1,
|
3606
3624
|
# next_token: "NextToken",
|
3607
3625
|
# service_name: "ResourceName",
|
3626
|
+
# sort_by: "name", # accepts name, deploymentStatus, templateName, serviceName, environmentName, lastDeploymentAttemptedAt, createdAt
|
3627
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
3608
3628
|
# })
|
3609
3629
|
#
|
3610
3630
|
# @example Response structure
|
@@ -3915,38 +3935,25 @@ module Aws::Proton
|
|
3915
3935
|
req.send_request(options)
|
3916
3936
|
end
|
3917
3937
|
|
3918
|
-
# Notify Proton of
|
3919
|
-
#
|
3920
|
-
#
|
3921
|
-
# * For [CodeBuild-based provisioning][1], provide your provisioned
|
3922
|
-
# resource output values to Proton.
|
3938
|
+
# Notify Proton of status changes to a provisioned resource when you use
|
3939
|
+
# self-managed provisioning.
|
3923
3940
|
#
|
3924
|
-
#
|
3925
|
-
#
|
3926
|
-
# deployments of the same resource, set `deploymentId` to a unique
|
3927
|
-
# deployment ID of your choice.
|
3941
|
+
# For more information, see [Self-managed provisioning][1] in the
|
3942
|
+
# *Proton User Guide*.
|
3928
3943
|
#
|
3929
|
-
# </li> </ul>
|
3930
3944
|
#
|
3931
3945
|
#
|
3932
|
-
#
|
3933
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html#ag-works-prov-methods-codebuild
|
3934
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html#ag-works-prov-methods-self
|
3946
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html#ag-works-prov-methods-self
|
3935
3947
|
#
|
3936
3948
|
# @option params [String] :deployment_id
|
3937
|
-
# The deployment ID for your provisioned resource.
|
3938
|
-
# disambiguate different deployments of the resource. Applicable to
|
3939
|
-
# [self-managed provisioning][1].
|
3940
|
-
#
|
3941
|
-
#
|
3942
|
-
#
|
3943
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html#ag-works-prov-methods-self
|
3949
|
+
# The deployment ID for your provisioned resource.
|
3944
3950
|
#
|
3945
3951
|
# @option params [Array<Types::Output>] :outputs
|
3946
|
-
# The
|
3952
|
+
# The provisioned resource state change detail data that's returned by
|
3953
|
+
# Proton.
|
3947
3954
|
#
|
3948
3955
|
# @option params [required, String] :resource_arn
|
3949
|
-
# The Amazon Resource Name (ARN)
|
3956
|
+
# The provisioned resource Amazon Resource Name (ARN).
|
3950
3957
|
#
|
3951
3958
|
# @option params [String] :status
|
3952
3959
|
# The status of your provisioned resource.
|
@@ -4292,8 +4299,9 @@ module Aws::Proton
|
|
4292
4299
|
# Update an environment.
|
4293
4300
|
#
|
4294
4301
|
# If the environment is associated with an environment account
|
4295
|
-
# connection, *don't* update or include the `protonServiceRoleArn
|
4296
|
-
# `
|
4302
|
+
# connection, *don't* update or include the `protonServiceRoleArn` and
|
4303
|
+
# `provisioningRepository` parameter to update or connect to an
|
4304
|
+
# environment account connection.
|
4297
4305
|
#
|
4298
4306
|
# You can only update to a new environment account connection if that
|
4299
4307
|
# connection was created in the same environment account that the
|
@@ -4306,18 +4314,16 @@ module Aws::Proton
|
|
4306
4314
|
# connect the environment to an environment account connection if it
|
4307
4315
|
# *isn't* already associated with an environment connection.
|
4308
4316
|
#
|
4309
|
-
# You can update either `environmentAccountConnectionId` or
|
4310
|
-
#
|
4311
|
-
# `provisioningRepository`.
|
4317
|
+
# You can update either the `environmentAccountConnectionId` or
|
4318
|
+
# `protonServiceRoleArn` parameter and value. You can’t update both.
|
4312
4319
|
#
|
4313
|
-
# If the environment was configured for Amazon Web Services-managed
|
4314
|
-
#
|
4315
|
-
# parameter.
|
4320
|
+
# If the environment was configured for Amazon Web Services-managed
|
4321
|
+
# provisioning, omit the `provisioningRepository` parameter.
|
4316
4322
|
#
|
4317
4323
|
# If the environment was configured for self-managed provisioning,
|
4318
4324
|
# specify the `provisioningRepository` parameter and omit the
|
4319
|
-
# `protonServiceRoleArn
|
4320
|
-
#
|
4325
|
+
# `protonServiceRoleArn` and `environmentAccountConnectionId`
|
4326
|
+
# parameters.
|
4321
4327
|
#
|
4322
4328
|
# For more information, see [Environments][1] and [Provisioning
|
4323
4329
|
# methods][2] in the *Proton User Guide*.
|
@@ -4429,28 +4435,19 @@ module Aws::Proton
|
|
4429
4435
|
# A description of the environment update.
|
4430
4436
|
#
|
4431
4437
|
# @option params [String] :environment_account_connection_id
|
4432
|
-
# The ID of the environment account connection
|
4433
|
-
# want Proton to provision infrastructure resources for your environment
|
4434
|
-
# or for any of the service instances running in it in an environment
|
4435
|
-
# account. For more information, see [Environment account
|
4436
|
-
# connections][1] in the *Proton User guide*.
|
4438
|
+
# The ID of the environment account connection.
|
4437
4439
|
#
|
4438
4440
|
# You can only update to a new environment account connection if it was
|
4439
4441
|
# created in the same environment account that the current environment
|
4440
4442
|
# account connection was created in and is associated with the current
|
4441
4443
|
# environment.
|
4442
4444
|
#
|
4443
|
-
#
|
4444
|
-
#
|
4445
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html
|
4446
|
-
#
|
4447
4445
|
# @option params [required, String] :name
|
4448
4446
|
# The name of the environment to update.
|
4449
4447
|
#
|
4450
4448
|
# @option params [String] :proton_service_role_arn
|
4451
|
-
# The Amazon Resource Name (ARN) of the
|
4452
|
-
# Proton to
|
4453
|
-
# provisioning and CloudFormation on your behalf.
|
4449
|
+
# The Amazon Resource Name (ARN) of the Proton service role that allows
|
4450
|
+
# Proton to make API calls to other services your behalf.
|
4454
4451
|
#
|
4455
4452
|
# @option params [Types::RepositoryBranchInput] :provisioning_repository
|
4456
4453
|
# The linked repository that you use to host your rendered
|
@@ -4562,10 +4559,8 @@ module Aws::Proton
|
|
4562
4559
|
# The ID of the environment account connection to update.
|
4563
4560
|
#
|
4564
4561
|
# @option params [String] :role_arn
|
4565
|
-
# The Amazon Resource Name (ARN) of
|
4566
|
-
#
|
4567
|
-
# resources using Amazon Web Services-managed provisioning and
|
4568
|
-
# CloudFormation in the associated environment account.
|
4562
|
+
# The Amazon Resource Name (ARN) of the IAM service role that's
|
4563
|
+
# associated with the environment account connection to update.
|
4569
4564
|
#
|
4570
4565
|
# @return [Types::UpdateEnvironmentAccountConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4571
4566
|
#
|
@@ -5241,7 +5236,7 @@ module Aws::Proton
|
|
5241
5236
|
params: params,
|
5242
5237
|
config: config)
|
5243
5238
|
context[:gem_name] = 'aws-sdk-proton'
|
5244
|
-
context[:gem_version] = '1.
|
5239
|
+
context[:gem_version] = '1.21.0'
|
5245
5240
|
Seahorse::Client::Request.new(handlers, context)
|
5246
5241
|
end
|
5247
5242
|
|
@@ -165,8 +165,13 @@ module Aws::Proton
|
|
165
165
|
ListServiceInstanceOutputsOutput = Shapes::StructureShape.new(name: 'ListServiceInstanceOutputsOutput')
|
166
166
|
ListServiceInstanceProvisionedResourcesInput = Shapes::StructureShape.new(name: 'ListServiceInstanceProvisionedResourcesInput')
|
167
167
|
ListServiceInstanceProvisionedResourcesOutput = Shapes::StructureShape.new(name: 'ListServiceInstanceProvisionedResourcesOutput')
|
168
|
+
ListServiceInstancesFilter = Shapes::StructureShape.new(name: 'ListServiceInstancesFilter')
|
169
|
+
ListServiceInstancesFilterBy = Shapes::StringShape.new(name: 'ListServiceInstancesFilterBy')
|
170
|
+
ListServiceInstancesFilterList = Shapes::ListShape.new(name: 'ListServiceInstancesFilterList')
|
171
|
+
ListServiceInstancesFilterValue = Shapes::StringShape.new(name: 'ListServiceInstancesFilterValue')
|
168
172
|
ListServiceInstancesInput = Shapes::StructureShape.new(name: 'ListServiceInstancesInput')
|
169
173
|
ListServiceInstancesOutput = Shapes::StructureShape.new(name: 'ListServiceInstancesOutput')
|
174
|
+
ListServiceInstancesSortBy = Shapes::StringShape.new(name: 'ListServiceInstancesSortBy')
|
170
175
|
ListServicePipelineOutputsInput = Shapes::StructureShape.new(name: 'ListServicePipelineOutputsInput')
|
171
176
|
ListServicePipelineOutputsOutput = Shapes::StructureShape.new(name: 'ListServicePipelineOutputsOutput')
|
172
177
|
ListServicePipelineProvisionedResourcesInput = Shapes::StructureShape.new(name: 'ListServicePipelineProvisionedResourcesInput')
|
@@ -248,6 +253,7 @@ module Aws::Proton
|
|
248
253
|
ServiceTemplateVersionArn = Shapes::StringShape.new(name: 'ServiceTemplateVersionArn')
|
249
254
|
ServiceTemplateVersionSummary = Shapes::StructureShape.new(name: 'ServiceTemplateVersionSummary')
|
250
255
|
ServiceTemplateVersionSummaryList = Shapes::ListShape.new(name: 'ServiceTemplateVersionSummaryList')
|
256
|
+
SortOrder = Shapes::StringShape.new(name: 'SortOrder')
|
251
257
|
SpecContents = Shapes::StringShape.new(name: 'SpecContents')
|
252
258
|
StatusMessage = Shapes::StringShape.new(name: 'StatusMessage')
|
253
259
|
String = Shapes::StringShape.new(name: 'String')
|
@@ -401,7 +407,7 @@ module Aws::Proton
|
|
401
407
|
CreateEnvironmentAccountConnectionInput.add_member(:component_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "componentRoleArn"))
|
402
408
|
CreateEnvironmentAccountConnectionInput.add_member(:environment_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "environmentName"))
|
403
409
|
CreateEnvironmentAccountConnectionInput.add_member(:management_account_id, Shapes::ShapeRef.new(shape: AwsAccountId, required: true, location_name: "managementAccountId"))
|
404
|
-
CreateEnvironmentAccountConnectionInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn,
|
410
|
+
CreateEnvironmentAccountConnectionInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
|
405
411
|
CreateEnvironmentAccountConnectionInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
|
406
412
|
CreateEnvironmentAccountConnectionInput.struct_class = Types::CreateEnvironmentAccountConnectionInput
|
407
413
|
|
@@ -916,9 +922,18 @@ module Aws::Proton
|
|
916
922
|
ListServiceInstanceProvisionedResourcesOutput.add_member(:provisioned_resources, Shapes::ShapeRef.new(shape: ProvisionedResourceList, required: true, location_name: "provisionedResources"))
|
917
923
|
ListServiceInstanceProvisionedResourcesOutput.struct_class = Types::ListServiceInstanceProvisionedResourcesOutput
|
918
924
|
|
925
|
+
ListServiceInstancesFilter.add_member(:key, Shapes::ShapeRef.new(shape: ListServiceInstancesFilterBy, location_name: "key"))
|
926
|
+
ListServiceInstancesFilter.add_member(:value, Shapes::ShapeRef.new(shape: ListServiceInstancesFilterValue, location_name: "value"))
|
927
|
+
ListServiceInstancesFilter.struct_class = Types::ListServiceInstancesFilter
|
928
|
+
|
929
|
+
ListServiceInstancesFilterList.member = Shapes::ShapeRef.new(shape: ListServiceInstancesFilter)
|
930
|
+
|
931
|
+
ListServiceInstancesInput.add_member(:filters, Shapes::ShapeRef.new(shape: ListServiceInstancesFilterList, location_name: "filters"))
|
919
932
|
ListServiceInstancesInput.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxPageResults, location_name: "maxResults"))
|
920
933
|
ListServiceInstancesInput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
921
934
|
ListServiceInstancesInput.add_member(:service_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "serviceName"))
|
935
|
+
ListServiceInstancesInput.add_member(:sort_by, Shapes::ShapeRef.new(shape: ListServiceInstancesSortBy, location_name: "sortBy"))
|
936
|
+
ListServiceInstancesInput.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, location_name: "sortOrder"))
|
922
937
|
ListServiceInstancesInput.struct_class = Types::ListServiceInstancesInput
|
923
938
|
|
924
939
|
ListServiceInstancesOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
@@ -50,6 +50,9 @@ module Aws::Proton
|
|
50
50
|
|
51
51
|
def initialize(options = {})
|
52
52
|
self[:region] = options[:region]
|
53
|
+
if self[:region].nil?
|
54
|
+
raise ArgumentError, "Missing required EndpointParameter: :region"
|
55
|
+
end
|
53
56
|
self[:use_dual_stack] = options[:use_dual_stack]
|
54
57
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
58
|
if self[:use_dual_stack].nil?
|
@@ -29,82 +29,82 @@ module Aws::Proton
|
|
29
29
|
# @api private
|
30
30
|
RULES = <<-JSON
|
31
31
|
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
|
33
|
+
YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
|
34
|
+
ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
|
35
|
+
aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
|
36
|
+
ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
|
37
|
+
IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
|
38
|
+
bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
|
39
|
+
aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
|
40
|
+
IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
|
41
|
+
IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
|
42
|
+
aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
|
43
|
+
Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
|
44
|
+
cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
|
45
|
+
bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
|
46
|
+
YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
|
47
|
+
bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
|
48
|
+
ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
|
49
|
+
IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
|
50
|
+
b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
|
51
|
+
ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
|
52
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
|
53
|
+
c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
|
54
|
+
c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
|
55
|
+
dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
56
|
+
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
|
57
|
+
In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
|
58
|
+
UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
|
59
|
+
cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
|
60
|
+
cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
|
61
|
+
ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
|
62
|
+
IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
|
63
|
+
bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
|
64
|
+
LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
|
65
|
+
bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
|
66
|
+
IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
|
67
|
+
YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
|
68
|
+
Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
|
69
|
+
YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
70
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
|
71
|
+
biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
|
72
|
+
fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
|
73
|
+
cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
|
74
|
+
cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
|
75
|
+
ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
|
76
|
+
Ijp7InVybCI6Imh0dHBzOi8vcHJvdG9uLWZpcHMue1JlZ2lvbn0ue1BhcnRp
|
77
|
+
dGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
|
78
|
+
e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRp
|
79
|
+
dGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5h
|
80
|
+
YmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25l
|
81
|
+
IG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3si
|
82
|
+
Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9
|
83
|
+
LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
|
84
|
+
Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJn
|
85
|
+
ZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1
|
86
|
+
cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
|
87
|
+
ZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
|
88
|
+
bnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL3Byb3Rvbi1maXBz
|
89
|
+
LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3Bl
|
90
|
+
cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1d
|
91
|
+
fSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxlZCBi
|
92
|
+
dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwidHlw
|
93
|
+
ZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVx
|
94
|
+
dWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0s
|
52
95
|
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL3Byb3Rvbi1maXBzLntSZWdpb259LntQYXJ0
|
77
|
-
aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMi
|
78
|
-
Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25k
|
79
|
-
aXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVu
|
80
|
-
YWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9u
|
81
|
-
ZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7
|
82
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMi
|
83
|
-
fSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
|
84
|
-
IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoi
|
85
|
-
Z2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJz
|
86
|
-
dXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
|
87
|
-
bmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
|
88
|
-
b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9wcm90b24tZmlw
|
89
|
-
cy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9w
|
90
|
-
ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19
|
91
|
-
XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQg
|
92
|
-
YnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5
|
93
|
-
cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5F
|
94
|
-
cXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1d
|
95
|
-
LCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6
|
96
|
-
ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIs
|
97
|
-
ImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1
|
98
|
-
YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
99
|
-
aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vcHJvdG9uLntS
|
100
|
-
ZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIs
|
101
|
-
InByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
|
102
|
-
dCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMg
|
103
|
-
ZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBE
|
104
|
-
dWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10s
|
105
|
-
ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vcHJvdG9uLntSZWdpb259LntQ
|
106
|
-
YXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJo
|
107
|
-
ZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
|
96
|
+
Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRyIiwi
|
97
|
+
YXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRzRHVh
|
98
|
+
bFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
|
99
|
+
b25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9wcm90b24ue1Jl
|
100
|
+
Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9Iiwi
|
101
|
+
cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
|
102
|
+
In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFjayBpcyBl
|
103
|
+
bmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IER1
|
104
|
+
YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbXSwi
|
105
|
+
ZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9wcm90b24ue1JlZ2lvbn0ue1Bh
|
106
|
+
cnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
|
107
|
+
YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
108
108
|
|
109
109
|
JSON
|
110
110
|
end
|