aws-sdk-proton 1.16.0 → 1.18.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 +217 -194
- data/lib/aws-sdk-proton/client_api.rb +2 -0
- data/lib/aws-sdk-proton/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-proton/endpoint_provider.rb +111 -0
- data/lib/aws-sdk-proton/endpoints.rb +1065 -0
- data/lib/aws-sdk-proton/plugins/endpoints.rb +218 -0
- data/lib/aws-sdk-proton/types.rb +144 -132
- data/lib/aws-sdk-proton.rb +5 -1
- metadata +8 -4
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:proton)
|
@@ -79,8 +79,9 @@ module Aws::Proton
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
84
|
+
add_plugin(Aws::Proton::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -297,6 +298,19 @@ module Aws::Proton
|
|
297
298
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
298
299
|
# requests are made, and retries are disabled.
|
299
300
|
#
|
301
|
+
# @option options [Aws::TokenProvider] :token_provider
|
302
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
303
|
+
# following classes:
|
304
|
+
#
|
305
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
306
|
+
# tokens.
|
307
|
+
#
|
308
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
309
|
+
# access token generated from `aws login`.
|
310
|
+
#
|
311
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
312
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
313
|
+
#
|
300
314
|
# @option options [Boolean] :use_dualstack_endpoint
|
301
315
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
302
316
|
# will be used if available.
|
@@ -310,6 +324,9 @@ module Aws::Proton
|
|
310
324
|
# When `true`, request parameters are validated before
|
311
325
|
# sending the request.
|
312
326
|
#
|
327
|
+
# @option options [Aws::Proton::EndpointProvider] :endpoint_provider
|
328
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Proton::EndpointParameters`
|
329
|
+
#
|
313
330
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
314
331
|
# requests through. Formatted like 'http://proxy.com:123'.
|
315
332
|
#
|
@@ -367,11 +384,11 @@ module Aws::Proton
|
|
367
384
|
# infrastructure resources in the associated environment account.
|
368
385
|
#
|
369
386
|
# For more information, see [Environment account connections][1] in the
|
370
|
-
# *Proton
|
387
|
+
# *Proton User guide*.
|
371
388
|
#
|
372
389
|
#
|
373
390
|
#
|
374
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
391
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html
|
375
392
|
#
|
376
393
|
# @option params [required, String] :id
|
377
394
|
# The ID of the environment account connection.
|
@@ -412,11 +429,11 @@ module Aws::Proton
|
|
412
429
|
# the `IN_PROGRESS` deployment status).
|
413
430
|
#
|
414
431
|
# For more information about components, see [Proton components][1] in
|
415
|
-
# the *Proton
|
432
|
+
# the *Proton User Guide*.
|
416
433
|
#
|
417
434
|
#
|
418
435
|
#
|
419
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
436
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
420
437
|
#
|
421
438
|
# @option params [required, String] :component_name
|
422
439
|
# The name of the component with the deployment to cancel.
|
@@ -458,7 +475,7 @@ module Aws::Proton
|
|
458
475
|
|
459
476
|
# Attempts to cancel an environment deployment on an UpdateEnvironment
|
460
477
|
# action, if the deployment is `IN_PROGRESS`. For more information, see
|
461
|
-
# [Update an environment][1] in the *Proton
|
478
|
+
# [Update an environment][1] in the *Proton User guide*.
|
462
479
|
#
|
463
480
|
# The following list includes potential cancellation scenarios.
|
464
481
|
#
|
@@ -474,7 +491,7 @@ module Aws::Proton
|
|
474
491
|
#
|
475
492
|
#
|
476
493
|
#
|
477
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
494
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-env-update.html
|
478
495
|
#
|
479
496
|
# @option params [required, String] :environment_name
|
480
497
|
# The name of the environment with the deployment to cancel.
|
@@ -524,8 +541,8 @@ module Aws::Proton
|
|
524
541
|
|
525
542
|
# Attempts to cancel a service instance deployment on an
|
526
543
|
# UpdateServiceInstance action, if the deployment is `IN_PROGRESS`. For
|
527
|
-
# more information, see
|
528
|
-
#
|
544
|
+
# more information, see [Update a service instance][1] in the *Proton
|
545
|
+
# User guide*.
|
529
546
|
#
|
530
547
|
# The following list includes potential cancellation scenarios.
|
531
548
|
#
|
@@ -541,8 +558,7 @@ module Aws::Proton
|
|
541
558
|
#
|
542
559
|
#
|
543
560
|
#
|
544
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
545
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-instance-update.html
|
561
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-svc-instance-update.html
|
546
562
|
#
|
547
563
|
# @option params [required, String] :service_instance_name
|
548
564
|
# The name of the service instance with the deployment to cancel.
|
@@ -589,8 +605,8 @@ module Aws::Proton
|
|
589
605
|
|
590
606
|
# Attempts to cancel a service pipeline deployment on an
|
591
607
|
# UpdateServicePipeline action, if the deployment is `IN_PROGRESS`. For
|
592
|
-
# more information, see
|
593
|
-
#
|
608
|
+
# more information, see [Update a service pipeline][1] in the *Proton
|
609
|
+
# User guide*.
|
594
610
|
#
|
595
611
|
# The following list includes potential cancellation scenarios.
|
596
612
|
#
|
@@ -606,8 +622,7 @@ module Aws::Proton
|
|
606
622
|
#
|
607
623
|
#
|
608
624
|
#
|
609
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
610
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-pipeline-update.html
|
625
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-svc-pipeline-update.html
|
611
626
|
#
|
612
627
|
# @option params [required, String] :service_name
|
613
628
|
# The name of the service with the service pipeline deployment to
|
@@ -649,11 +664,11 @@ module Aws::Proton
|
|
649
664
|
# for a service instance.
|
650
665
|
#
|
651
666
|
# For more information about components, see [Proton components][1] in
|
652
|
-
# the *Proton
|
667
|
+
# the *Proton User Guide*.
|
653
668
|
#
|
654
669
|
#
|
655
670
|
#
|
656
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
671
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
657
672
|
#
|
658
673
|
# @option params [String] :description
|
659
674
|
# An optional customer-provided description of the component.
|
@@ -692,13 +707,12 @@ module Aws::Proton
|
|
692
707
|
# An optional list of metadata items that you can associate with the
|
693
708
|
# Proton component. A tag is a key-value pair.
|
694
709
|
#
|
695
|
-
# For more information, see
|
696
|
-
#
|
710
|
+
# For more information, see [Proton resources and tagging][1] in the
|
711
|
+
# *Proton User Guide*.
|
697
712
|
#
|
698
713
|
#
|
699
714
|
#
|
700
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
701
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
715
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
702
716
|
#
|
703
717
|
# @option params [required, String] :template_file
|
704
718
|
# A path to the Infrastructure as Code (IaC) file describing
|
@@ -771,12 +785,12 @@ module Aws::Proton
|
|
771
785
|
# that your IaC engine uses to provision resources.
|
772
786
|
#
|
773
787
|
# For more information, see [Environments][1] and [Provisioning
|
774
|
-
# methods][2] in the *Proton
|
788
|
+
# methods][2] in the *Proton User Guide*.
|
775
789
|
#
|
776
790
|
#
|
777
791
|
#
|
778
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
779
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/
|
792
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-environments.html
|
793
|
+
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html
|
780
794
|
#
|
781
795
|
# @option params [String] :component_role_arn
|
782
796
|
# The Amazon Resource Name (ARN) of the IAM service role that Proton
|
@@ -788,11 +802,11 @@ module Aws::Proton
|
|
788
802
|
# components to be associated with this environment.
|
789
803
|
#
|
790
804
|
# For more information about components, see [Proton components][1] in
|
791
|
-
# the *Proton
|
805
|
+
# the *Proton User Guide*.
|
792
806
|
#
|
793
807
|
#
|
794
808
|
#
|
795
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
809
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
796
810
|
#
|
797
811
|
# @option params [String] :description
|
798
812
|
# A description of the environment that's being created and deployed.
|
@@ -801,7 +815,7 @@ module Aws::Proton
|
|
801
815
|
# The ID of the environment account connection that you provide if
|
802
816
|
# you're provisioning your environment infrastructure resources to an
|
803
817
|
# environment account. For more information, see [Environment account
|
804
|
-
# connections][1] in the *Proton
|
818
|
+
# connections][1] in the *Proton User guide*.
|
805
819
|
#
|
806
820
|
# To use Amazon Web Services-managed provisioning for the environment,
|
807
821
|
# specify either the `environmentAccountConnectionId` or
|
@@ -810,7 +824,7 @@ module Aws::Proton
|
|
810
824
|
#
|
811
825
|
#
|
812
826
|
#
|
813
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
827
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html
|
814
828
|
#
|
815
829
|
# @option params [required, String] :name
|
816
830
|
# The name of the environment.
|
@@ -825,8 +839,10 @@ module Aws::Proton
|
|
825
839
|
# parameter.
|
826
840
|
#
|
827
841
|
# @option params [Types::RepositoryBranchInput] :provisioning_repository
|
828
|
-
# The
|
829
|
-
# infrastructure templates for self-managed provisioning.
|
842
|
+
# The linked repository that you use to host your rendered
|
843
|
+
# infrastructure templates for self-managed provisioning. A linked
|
844
|
+
# repository is a repository that has been registered with Proton. For
|
845
|
+
# more information, see CreateRepository.
|
830
846
|
#
|
831
847
|
# To use self-managed provisioning for the environment, specify this
|
832
848
|
# parameter and omit the `environmentAccountConnectionId` and
|
@@ -835,23 +851,22 @@ module Aws::Proton
|
|
835
851
|
# @option params [required, String] :spec
|
836
852
|
# A YAML formatted string that provides inputs as defined in the
|
837
853
|
# environment template bundle schema file. For more information, see
|
838
|
-
# [Environments][1] in the *Proton
|
854
|
+
# [Environments][1] in the *Proton User Guide*.
|
839
855
|
#
|
840
856
|
#
|
841
857
|
#
|
842
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
858
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-environments.html
|
843
859
|
#
|
844
860
|
# @option params [Array<Types::Tag>] :tags
|
845
861
|
# An optional list of metadata items that you can associate with the
|
846
862
|
# Proton environment. A tag is a key-value pair.
|
847
863
|
#
|
848
|
-
# For more information, see
|
849
|
-
#
|
864
|
+
# For more information, see [Proton resources and tagging][1] in the
|
865
|
+
# *Proton User Guide*.
|
850
866
|
#
|
851
867
|
#
|
852
868
|
#
|
853
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
854
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
869
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
855
870
|
#
|
856
871
|
# @option params [required, String] :template_major_version
|
857
872
|
# The major version of the environment template.
|
@@ -861,11 +876,11 @@ module Aws::Proton
|
|
861
876
|
#
|
862
877
|
# @option params [required, String] :template_name
|
863
878
|
# The name of the environment template. For more information, see
|
864
|
-
# [Environment Templates][1] in the *Proton
|
879
|
+
# [Environment Templates][1] in the *Proton User Guide*.
|
865
880
|
#
|
866
881
|
#
|
867
882
|
#
|
868
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
883
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-templates.html
|
869
884
|
#
|
870
885
|
# @return [Types::CreateEnvironmentOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
871
886
|
#
|
@@ -936,12 +951,11 @@ module Aws::Proton
|
|
936
951
|
# An environment account connection is a secure bi-directional
|
937
952
|
# connection between a *management account* and an *environment account*
|
938
953
|
# that maintains authorization and permissions. For more information,
|
939
|
-
# see [Environment account connections][1] in the *Proton
|
940
|
-
# guide*.
|
954
|
+
# see [Environment account connections][1] in the *Proton User guide*.
|
941
955
|
#
|
942
956
|
#
|
943
957
|
#
|
944
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
958
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html
|
945
959
|
#
|
946
960
|
# @option params [String] :client_token
|
947
961
|
# When included, if two identical requests are made with the same client
|
@@ -962,11 +976,11 @@ module Aws::Proton
|
|
962
976
|
# account.
|
963
977
|
#
|
964
978
|
# For more information about components, see [Proton components][1] in
|
965
|
-
# the *Proton
|
979
|
+
# the *Proton User Guide*.
|
966
980
|
#
|
967
981
|
#
|
968
982
|
#
|
969
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
983
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
970
984
|
#
|
971
985
|
# @option params [required, String] :environment_name
|
972
986
|
# The name of the Proton environment that's created in the associated
|
@@ -990,11 +1004,11 @@ module Aws::Proton
|
|
990
1004
|
# Proton environment account connection. A tag is a key-value pair.
|
991
1005
|
#
|
992
1006
|
# For more information, see [Proton resources and tagging][1] in the
|
993
|
-
# *Proton
|
1007
|
+
# *Proton User Guide*.
|
994
1008
|
#
|
995
1009
|
#
|
996
1010
|
#
|
997
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1011
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
998
1012
|
#
|
999
1013
|
# @return [Types::CreateEnvironmentAccountConnectionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1000
1014
|
#
|
@@ -1039,7 +1053,7 @@ module Aws::Proton
|
|
1039
1053
|
end
|
1040
1054
|
|
1041
1055
|
# Create an environment template for Proton. For more information, see
|
1042
|
-
# [Environment Templates][1] in the *Proton
|
1056
|
+
# [Environment Templates][1] in the *Proton User Guide*.
|
1043
1057
|
#
|
1044
1058
|
# You can create an environment template in one of the two following
|
1045
1059
|
# ways:
|
@@ -1054,12 +1068,12 @@ module Aws::Proton
|
|
1054
1068
|
# provisioned and managed infrastructure, include the `provisioning`
|
1055
1069
|
# parameter and set the value to `CUSTOMER_MANAGED`. For more
|
1056
1070
|
# information, see [Register and publish an environment template][2]
|
1057
|
-
# in the *Proton
|
1071
|
+
# in the *Proton User Guide*.
|
1058
1072
|
#
|
1059
1073
|
#
|
1060
1074
|
#
|
1061
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1062
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/
|
1075
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-templates.html
|
1076
|
+
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/template-create.html
|
1063
1077
|
#
|
1064
1078
|
# @option params [String] :description
|
1065
1079
|
# A description of the environment template.
|
@@ -1081,13 +1095,12 @@ module Aws::Proton
|
|
1081
1095
|
# An optional list of metadata items that you can associate with the
|
1082
1096
|
# Proton environment template. A tag is a key-value pair.
|
1083
1097
|
#
|
1084
|
-
# For more information, see
|
1085
|
-
#
|
1098
|
+
# For more information, see [Proton resources and tagging][1] in the
|
1099
|
+
# *Proton User Guide*.
|
1086
1100
|
#
|
1087
1101
|
#
|
1088
1102
|
#
|
1089
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1090
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1103
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1091
1104
|
#
|
1092
1105
|
# @return [Types::CreateEnvironmentTemplateOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1093
1106
|
#
|
@@ -1161,13 +1174,12 @@ module Aws::Proton
|
|
1161
1174
|
# An optional list of metadata items that you can associate with the
|
1162
1175
|
# Proton environment template version. A tag is a key-value pair.
|
1163
1176
|
#
|
1164
|
-
# For more information, see
|
1165
|
-
#
|
1177
|
+
# For more information, see [Proton resources and tagging][1] in the
|
1178
|
+
# *Proton User Guide*.
|
1166
1179
|
#
|
1167
1180
|
#
|
1168
1181
|
#
|
1169
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1170
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1182
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1171
1183
|
#
|
1172
1184
|
# @option params [required, String] :template_name
|
1173
1185
|
# The name of the environment template.
|
@@ -1220,30 +1232,33 @@ module Aws::Proton
|
|
1220
1232
|
req.send_request(options)
|
1221
1233
|
end
|
1222
1234
|
|
1223
|
-
# Create and register a link to a repository
|
1224
|
-
#
|
1225
|
-
# template sync
|
1226
|
-
#
|
1235
|
+
# Create and register a link to a repository. Proton uses the link to
|
1236
|
+
# repeatedly access the repository, to either push to it (self-managed
|
1237
|
+
# provisioning) or pull from it (template sync). You can share a linked
|
1238
|
+
# repository across multiple resources (like environments using
|
1239
|
+
# self-managed provisioning, or synced templates). When you create a
|
1240
|
+
# repository link, Proton creates a [service-linked role][1] for you.
|
1227
1241
|
#
|
1228
1242
|
# For more information, see [Self-managed provisioning][2], [Template
|
1229
|
-
# bundles][3], and [Template sync configurations][4] in the *Proton
|
1230
|
-
#
|
1243
|
+
# bundles][3], and [Template sync configurations][4] in the *Proton User
|
1244
|
+
# Guide*.
|
1231
1245
|
#
|
1232
1246
|
#
|
1233
1247
|
#
|
1234
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1235
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/
|
1236
|
-
# [3]: https://docs.aws.amazon.com/proton/latest/
|
1237
|
-
# [4]: https://docs.aws.amazon.com/proton/latest/
|
1248
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/using-service-linked-roles.html
|
1249
|
+
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html#ag-works-prov-methods-self
|
1250
|
+
# [3]: https://docs.aws.amazon.com/proton/latest/userguide/ag-template-authoring.html#ag-template-bundles
|
1251
|
+
# [4]: https://docs.aws.amazon.com/proton/latest/userguide/ag-template-sync-configs.html
|
1238
1252
|
#
|
1239
1253
|
# @option params [required, String] :connection_arn
|
1240
|
-
# The Amazon Resource Name (ARN) of your
|
1241
|
-
#
|
1242
|
-
# the *Proton
|
1254
|
+
# The Amazon Resource Name (ARN) of your AWS CodeStar connection that
|
1255
|
+
# connects Proton to your repository provider account. For more
|
1256
|
+
# information, see [Setting up for Proton][1] in the *Proton User
|
1257
|
+
# Guide*.
|
1243
1258
|
#
|
1244
1259
|
#
|
1245
1260
|
#
|
1246
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1261
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/setting-up-for-service.html
|
1247
1262
|
#
|
1248
1263
|
# @option params [String] :encryption_key
|
1249
1264
|
# The ARN of your customer Amazon Web Services Key Management Service
|
@@ -1259,13 +1274,12 @@ module Aws::Proton
|
|
1259
1274
|
# An optional list of metadata items that you can associate with the
|
1260
1275
|
# Proton repository. A tag is a key-value pair.
|
1261
1276
|
#
|
1262
|
-
# For more information, see
|
1263
|
-
#
|
1277
|
+
# For more information, see [Proton resources and tagging][1] in the
|
1278
|
+
# *Proton User Guide*.
|
1264
1279
|
#
|
1265
1280
|
#
|
1266
1281
|
#
|
1267
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1268
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1282
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1269
1283
|
#
|
1270
1284
|
# @return [Types::CreateRepositoryOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1271
1285
|
#
|
@@ -1305,13 +1319,12 @@ module Aws::Proton
|
|
1305
1319
|
|
1306
1320
|
# Create an Proton service. An Proton service is an instantiation of a
|
1307
1321
|
# service template and often includes several service instances and
|
1308
|
-
# pipeline. For more information, see [Services][1] in the *Proton
|
1309
|
-
#
|
1322
|
+
# pipeline. For more information, see [Services][1] in the *Proton User
|
1323
|
+
# Guide*.
|
1310
1324
|
#
|
1311
1325
|
#
|
1312
1326
|
#
|
1313
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1314
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/ug-service.html
|
1327
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-services.html
|
1315
1328
|
#
|
1316
1329
|
# @option params [String] :branch_name
|
1317
1330
|
# The name of the code repository branch that holds the code that's
|
@@ -1326,15 +1339,13 @@ module Aws::Proton
|
|
1326
1339
|
#
|
1327
1340
|
# @option params [String] :repository_connection_arn
|
1328
1341
|
# The Amazon Resource Name (ARN) of the repository connection. For more
|
1329
|
-
# information, see [
|
1330
|
-
#
|
1331
|
-
#
|
1332
|
-
# *doesn't* include a service pipeline.
|
1342
|
+
# information, see [Setting up an AWS CodeStar connection][1] in the
|
1343
|
+
# *Proton User Guide*. *Don't* include this parameter if your service
|
1344
|
+
# template *doesn't* include a service pipeline.
|
1333
1345
|
#
|
1334
1346
|
#
|
1335
1347
|
#
|
1336
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1337
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/proton-setup.html#setup-repo-connection
|
1348
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/setting-up-for-service.html#setting-up-vcontrol
|
1338
1349
|
#
|
1339
1350
|
# @option params [String] :repository_id
|
1340
1351
|
# The ID of the code repository. *Don't* include this parameter if your
|
@@ -1345,25 +1356,22 @@ module Aws::Proton
|
|
1345
1356
|
# template bundle schema file. The spec file is in YAML format. *Don’t*
|
1346
1357
|
# include pipeline inputs in the spec if your service template *doesn’t*
|
1347
1358
|
# include a service pipeline. For more information, see [Create a
|
1348
|
-
# service][1] in the *Proton
|
1349
|
-
# service][2] in the *Proton User Guide*.
|
1359
|
+
# service][1] in the *Proton User Guide*.
|
1350
1360
|
#
|
1351
1361
|
#
|
1352
1362
|
#
|
1353
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1354
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-create.html
|
1363
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-create-svc.html
|
1355
1364
|
#
|
1356
1365
|
# @option params [Array<Types::Tag>] :tags
|
1357
1366
|
# An optional list of metadata items that you can associate with the
|
1358
1367
|
# Proton service. A tag is a key-value pair.
|
1359
1368
|
#
|
1360
|
-
# For more information, see
|
1361
|
-
#
|
1369
|
+
# For more information, see [Proton resources and tagging][1] in the
|
1370
|
+
# *Proton User Guide*.
|
1362
1371
|
#
|
1363
1372
|
#
|
1364
1373
|
#
|
1365
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1366
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1374
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1367
1375
|
#
|
1368
1376
|
# @option params [required, String] :template_major_version
|
1369
1377
|
# The major version of the service template that was used to create the
|
@@ -1440,12 +1448,12 @@ module Aws::Proton
|
|
1440
1448
|
# from Proton. If the selected service template includes a service
|
1441
1449
|
# pipeline definition, they provide a link to their source code
|
1442
1450
|
# repository. Proton then deploys and manages the infrastructure defined
|
1443
|
-
# by the selected service template. For more information, see [
|
1444
|
-
#
|
1451
|
+
# by the selected service template. For more information, see [Proton
|
1452
|
+
# templates][1] in the *Proton User Guide*.
|
1445
1453
|
#
|
1446
1454
|
#
|
1447
1455
|
#
|
1448
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1456
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-templates.html
|
1449
1457
|
#
|
1450
1458
|
# @option params [String] :description
|
1451
1459
|
# A description of the service template.
|
@@ -1464,24 +1472,23 @@ module Aws::Proton
|
|
1464
1472
|
# By default, Proton provides a service pipeline for your service. When
|
1465
1473
|
# this parameter is included, it indicates that an Proton service
|
1466
1474
|
# pipeline *isn't* provided for your service. After it's included, it
|
1467
|
-
# *can't* be changed. For more information, see [
|
1468
|
-
#
|
1475
|
+
# *can't* be changed. For more information, see [Template bundles][1]
|
1476
|
+
# in the *Proton User Guide*.
|
1469
1477
|
#
|
1470
1478
|
#
|
1471
1479
|
#
|
1472
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1480
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-template-authoring.html#ag-template-bundles
|
1473
1481
|
#
|
1474
1482
|
# @option params [Array<Types::Tag>] :tags
|
1475
1483
|
# An optional list of metadata items that you can associate with the
|
1476
1484
|
# Proton service template. A tag is a key-value pair.
|
1477
1485
|
#
|
1478
|
-
# For more information, see
|
1479
|
-
#
|
1486
|
+
# For more information, see [Proton resources and tagging][1] in the
|
1487
|
+
# *Proton User Guide*.
|
1480
1488
|
#
|
1481
1489
|
#
|
1482
1490
|
#
|
1483
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1484
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1491
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1485
1492
|
#
|
1486
1493
|
# @return [Types::CreateServiceTemplateOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1487
1494
|
#
|
@@ -1563,23 +1570,22 @@ module Aws::Proton
|
|
1563
1570
|
# template version.
|
1564
1571
|
#
|
1565
1572
|
# For more information about components, see [Proton components][1] in
|
1566
|
-
# the *Proton
|
1573
|
+
# the *Proton User Guide*.
|
1567
1574
|
#
|
1568
1575
|
#
|
1569
1576
|
#
|
1570
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1577
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
1571
1578
|
#
|
1572
1579
|
# @option params [Array<Types::Tag>] :tags
|
1573
1580
|
# An optional list of metadata items that you can associate with the
|
1574
1581
|
# Proton service template version. A tag is a key-value pair.
|
1575
1582
|
#
|
1576
|
-
# For more information, see
|
1577
|
-
#
|
1583
|
+
# For more information, see [Proton resources and tagging][1] in the
|
1584
|
+
# *Proton User Guide*.
|
1578
1585
|
#
|
1579
1586
|
#
|
1580
1587
|
#
|
1581
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1582
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1588
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1583
1589
|
#
|
1584
1590
|
# @option params [required, String] :template_name
|
1585
1591
|
# The name of the service template.
|
@@ -1644,24 +1650,26 @@ module Aws::Proton
|
|
1644
1650
|
req.send_request(options)
|
1645
1651
|
end
|
1646
1652
|
|
1647
|
-
# Set up a template to create new template versions automatically
|
1648
|
-
# a
|
1649
|
-
#
|
1650
|
-
#
|
1651
|
-
#
|
1652
|
-
#
|
1653
|
-
#
|
1653
|
+
# Set up a template to create new template versions automatically by
|
1654
|
+
# tracking a linked repository. A linked repository is a repository that
|
1655
|
+
# has been registered with Proton. For more information, see
|
1656
|
+
# CreateRepository.
|
1657
|
+
#
|
1658
|
+
# When a commit is pushed to your linked repository, Proton checks for
|
1659
|
+
# changes to your repository template bundles. If it detects a template
|
1660
|
+
# bundle change, a new major or minor version of its template is
|
1661
|
+
# created, if the version doesn’t already exist. For more information,
|
1662
|
+
# see [Template sync configurations][1] in the *Proton User Guide*.
|
1654
1663
|
#
|
1655
1664
|
#
|
1656
1665
|
#
|
1657
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1658
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-template-sync-configs.html
|
1666
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-template-sync-configs.html
|
1659
1667
|
#
|
1660
1668
|
# @option params [required, String] :branch
|
1661
|
-
# The branch
|
1669
|
+
# The repository branch for your template.
|
1662
1670
|
#
|
1663
1671
|
# @option params [required, String] :repository_name
|
1664
|
-
# The name
|
1672
|
+
# The repository name (for example, `myrepos/myrepo`).
|
1665
1673
|
#
|
1666
1674
|
# @option params [required, String] :repository_provider
|
1667
1675
|
# The provider type for your repository.
|
@@ -1713,11 +1721,11 @@ module Aws::Proton
|
|
1713
1721
|
# Delete an Proton component resource.
|
1714
1722
|
#
|
1715
1723
|
# For more information about components, see [Proton components][1] in
|
1716
|
-
# the *Proton
|
1724
|
+
# the *Proton User Guide*.
|
1717
1725
|
#
|
1718
1726
|
#
|
1719
1727
|
#
|
1720
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1728
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
1721
1729
|
#
|
1722
1730
|
# @option params [required, String] :name
|
1723
1731
|
# The name of the component to delete.
|
@@ -1815,11 +1823,11 @@ module Aws::Proton
|
|
1815
1823
|
# without an environment connection.
|
1816
1824
|
#
|
1817
1825
|
# For more information, see [Environment account connections][1] in the
|
1818
|
-
# *Proton
|
1826
|
+
# *Proton User guide*.
|
1819
1827
|
#
|
1820
1828
|
#
|
1821
1829
|
#
|
1822
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
1830
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html
|
1823
1831
|
#
|
1824
1832
|
# @option params [required, String] :id
|
1825
1833
|
# The ID of the environment account connection to delete.
|
@@ -1953,7 +1961,7 @@ module Aws::Proton
|
|
1953
1961
|
# De-register and unlink your repository.
|
1954
1962
|
#
|
1955
1963
|
# @option params [required, String] :name
|
1956
|
-
# The name
|
1964
|
+
# The repository name.
|
1957
1965
|
#
|
1958
1966
|
# @option params [required, String] :provider
|
1959
1967
|
# The repository provider.
|
@@ -1992,13 +2000,13 @@ module Aws::Proton
|
|
1992
2000
|
# components attached to them.
|
1993
2001
|
#
|
1994
2002
|
# For more information about components, see [Proton components][1] in
|
1995
|
-
# the *Proton
|
2003
|
+
# the *Proton User Guide*.
|
1996
2004
|
#
|
1997
2005
|
# </note>
|
1998
2006
|
#
|
1999
2007
|
#
|
2000
2008
|
#
|
2001
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
2009
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
2002
2010
|
#
|
2003
2011
|
# @option params [required, String] :name
|
2004
2012
|
# The name of the service to delete.
|
@@ -2183,7 +2191,7 @@ module Aws::Proton
|
|
2183
2191
|
req.send_request(options)
|
2184
2192
|
end
|
2185
2193
|
|
2186
|
-
# Get detail data for
|
2194
|
+
# Get detail data for Proton account-wide settings.
|
2187
2195
|
#
|
2188
2196
|
# @return [Types::GetAccountSettingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2189
2197
|
#
|
@@ -2209,11 +2217,11 @@ module Aws::Proton
|
|
2209
2217
|
# Get detailed data for a component.
|
2210
2218
|
#
|
2211
2219
|
# For more information about components, see [Proton components][1] in
|
2212
|
-
# the *Proton
|
2220
|
+
# the *Proton User Guide*.
|
2213
2221
|
#
|
2214
2222
|
#
|
2215
2223
|
#
|
2216
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
2224
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
2217
2225
|
#
|
2218
2226
|
# @option params [required, String] :name
|
2219
2227
|
# The name of the component that you want to get the detailed data for.
|
@@ -2317,11 +2325,11 @@ module Aws::Proton
|
|
2317
2325
|
# account connection.
|
2318
2326
|
#
|
2319
2327
|
# For more information, see [Environment account connections][1] in the
|
2320
|
-
# *Proton
|
2328
|
+
# *Proton User guide*.
|
2321
2329
|
#
|
2322
2330
|
#
|
2323
2331
|
#
|
2324
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
2332
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html
|
2325
2333
|
#
|
2326
2334
|
# @option params [required, String] :id
|
2327
2335
|
# The ID of the environment account connection that you want to get the
|
@@ -2409,7 +2417,7 @@ module Aws::Proton
|
|
2409
2417
|
#
|
2410
2418
|
# @option params [required, String] :template_name
|
2411
2419
|
# The name of the environment template a version of which you want to
|
2412
|
-
# get detailed data for
|
2420
|
+
# get detailed data for.
|
2413
2421
|
#
|
2414
2422
|
# @return [Types::GetEnvironmentTemplateVersionOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2415
2423
|
#
|
@@ -2451,7 +2459,7 @@ module Aws::Proton
|
|
2451
2459
|
req.send_request(options)
|
2452
2460
|
end
|
2453
2461
|
|
2454
|
-
# Get detail data for a repository.
|
2462
|
+
# Get detail data for a linked repository.
|
2455
2463
|
#
|
2456
2464
|
# @option params [required, String] :name
|
2457
2465
|
# The repository name, for example `myrepos/myrepo`.
|
@@ -2496,14 +2504,14 @@ module Aws::Proton
|
|
2496
2504
|
# can't use these tags to control access to this action using
|
2497
2505
|
# Attribute-based access control (ABAC).
|
2498
2506
|
#
|
2499
|
-
# For more information about ABAC, see [ABAC][1] in the *Proton
|
2500
|
-
#
|
2507
|
+
# For more information about ABAC, see [ABAC][1] in the *Proton User
|
2508
|
+
# Guide*.
|
2501
2509
|
#
|
2502
2510
|
# </note>
|
2503
2511
|
#
|
2504
2512
|
#
|
2505
2513
|
#
|
2506
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
2514
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/security_iam_service-with-iam.html#security_iam_service-with-iam-tags
|
2507
2515
|
#
|
2508
2516
|
# @option params [required, String] :branch
|
2509
2517
|
# The repository branch.
|
@@ -2872,11 +2880,11 @@ module Aws::Proton
|
|
2872
2880
|
# Get a list of component Infrastructure as Code (IaC) outputs.
|
2873
2881
|
#
|
2874
2882
|
# For more information about components, see [Proton components][1] in
|
2875
|
-
# the *Proton
|
2883
|
+
# the *Proton User Guide*.
|
2876
2884
|
#
|
2877
2885
|
#
|
2878
2886
|
#
|
2879
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
2887
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
2880
2888
|
#
|
2881
2889
|
# @option params [required, String] :component_name
|
2882
2890
|
# The name of the component whose outputs you want.
|
@@ -2918,11 +2926,11 @@ module Aws::Proton
|
|
2918
2926
|
# List provisioned resources for a component with details.
|
2919
2927
|
#
|
2920
2928
|
# For more information about components, see [Proton components][1] in
|
2921
|
-
# the *Proton
|
2929
|
+
# the *Proton User Guide*.
|
2922
2930
|
#
|
2923
2931
|
#
|
2924
2932
|
#
|
2925
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
2933
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
2926
2934
|
#
|
2927
2935
|
# @option params [required, String] :component_name
|
2928
2936
|
# The name of the component whose provisioned resources you want.
|
@@ -2967,11 +2975,11 @@ module Aws::Proton
|
|
2967
2975
|
# environment, service, or a single service instance.
|
2968
2976
|
#
|
2969
2977
|
# For more information about components, see [Proton components][1] in
|
2970
|
-
# the *Proton
|
2978
|
+
# the *Proton User Guide*.
|
2971
2979
|
#
|
2972
2980
|
#
|
2973
2981
|
#
|
2974
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
2982
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
2975
2983
|
#
|
2976
2984
|
# @option params [String] :environment_name
|
2977
2985
|
# The name of an environment for result list filtering. Proton returns
|
@@ -3039,11 +3047,11 @@ module Aws::Proton
|
|
3039
3047
|
# View a list of environment account connections.
|
3040
3048
|
#
|
3041
3049
|
# For more information, see [Environment account connections][1] in the
|
3042
|
-
# *Proton
|
3050
|
+
# *Proton User guide*.
|
3043
3051
|
#
|
3044
3052
|
#
|
3045
3053
|
#
|
3046
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
3054
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html
|
3047
3055
|
#
|
3048
3056
|
# @option params [String] :environment_name
|
3049
3057
|
# The environment name that's associated with each listed environment
|
@@ -3359,7 +3367,7 @@ module Aws::Proton
|
|
3359
3367
|
req.send_request(options)
|
3360
3368
|
end
|
3361
3369
|
|
3362
|
-
# List repositories with detail data.
|
3370
|
+
# List linked repositories with detail data.
|
3363
3371
|
#
|
3364
3372
|
# @option params [Integer] :max_results
|
3365
3373
|
# The maximum number of repositories to list.
|
@@ -3825,14 +3833,12 @@ module Aws::Proton
|
|
3825
3833
|
req.send_request(options)
|
3826
3834
|
end
|
3827
3835
|
|
3828
|
-
# List tags for a resource. For more information, see
|
3829
|
-
# and tagging
|
3830
|
-
# Guide][2].
|
3836
|
+
# List tags for a resource. For more information, see [Proton resources
|
3837
|
+
# and tagging][1] in the *Proton User Guide*.
|
3831
3838
|
#
|
3832
3839
|
#
|
3833
3840
|
#
|
3834
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
3835
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
3841
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
3836
3842
|
#
|
3837
3843
|
# @option params [Integer] :max_results
|
3838
3844
|
# The maximum number of tags to list.
|
@@ -3880,11 +3886,11 @@ module Aws::Proton
|
|
3880
3886
|
# self-managed provisioning.
|
3881
3887
|
#
|
3882
3888
|
# For more information, see [Self-managed provisioning][1] in the
|
3883
|
-
# *Proton
|
3889
|
+
# *Proton User Guide*.
|
3884
3890
|
#
|
3885
3891
|
#
|
3886
3892
|
#
|
3887
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
3893
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html#ag-works-prov-methods-self
|
3888
3894
|
#
|
3889
3895
|
# @option params [String] :deployment_id
|
3890
3896
|
# The deployment ID for your provisioned resource.
|
@@ -3938,11 +3944,11 @@ module Aws::Proton
|
|
3938
3944
|
# to an environment.
|
3939
3945
|
#
|
3940
3946
|
# For more information, see [Environment account connections][1] in the
|
3941
|
-
# *Proton
|
3947
|
+
# *Proton User guide*.
|
3942
3948
|
#
|
3943
3949
|
#
|
3944
3950
|
#
|
3945
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
3951
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html
|
3946
3952
|
#
|
3947
3953
|
# @option params [required, String] :id
|
3948
3954
|
# The ID of the environment account connection to reject.
|
@@ -3982,13 +3988,12 @@ module Aws::Proton
|
|
3982
3988
|
# Tag a resource. A tag is a key-value pair of metadata that you
|
3983
3989
|
# associate with an Proton resource.
|
3984
3990
|
#
|
3985
|
-
# For more information, see
|
3986
|
-
#
|
3991
|
+
# For more information, see [Proton resources and tagging][1] in the
|
3992
|
+
# *Proton User Guide*.
|
3987
3993
|
#
|
3988
3994
|
#
|
3989
3995
|
#
|
3990
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
3991
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
3996
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
3992
3997
|
#
|
3993
3998
|
# @option params [required, String] :resource_arn
|
3994
3999
|
# The Amazon Resource Name (ARN) of the Proton resource to apply
|
@@ -4023,13 +4028,12 @@ module Aws::Proton
|
|
4023
4028
|
# Remove a customer tag from a resource. A tag is a key-value pair of
|
4024
4029
|
# metadata associated with an Proton resource.
|
4025
4030
|
#
|
4026
|
-
# For more information, see
|
4027
|
-
#
|
4031
|
+
# For more information, see [Proton resources and tagging][1] in the
|
4032
|
+
# *Proton User Guide*.
|
4028
4033
|
#
|
4029
4034
|
#
|
4030
4035
|
#
|
4031
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
4032
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
4036
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
4033
4037
|
#
|
4034
4038
|
# @option params [required, String] :resource_arn
|
4035
4039
|
# The Amazon Resource Name (ARN) of the resource to remove customer tags
|
@@ -4057,12 +4061,24 @@ module Aws::Proton
|
|
4057
4061
|
req.send_request(options)
|
4058
4062
|
end
|
4059
4063
|
|
4060
|
-
# Update
|
4064
|
+
# Update Proton settings that are used for multiple services in the
|
4065
|
+
# Amazon Web Services account.
|
4066
|
+
#
|
4067
|
+
# @option params [Boolean] :delete_pipeline_provisioning_repository
|
4068
|
+
# Set to `true` to remove a configured pipeline repository from the
|
4069
|
+
# account settings. Don't set this field if you are updating the
|
4070
|
+
# configured pipeline repository.
|
4061
4071
|
#
|
4062
4072
|
# @option params [Types::RepositoryBranchInput] :pipeline_provisioning_repository
|
4063
|
-
# A repository for pipeline provisioning. Specify it if you have
|
4073
|
+
# A linked repository for pipeline provisioning. Specify it if you have
|
4064
4074
|
# environments configured for self-managed provisioning with services
|
4065
|
-
# that include pipelines.
|
4075
|
+
# that include pipelines. A linked repository is a repository that has
|
4076
|
+
# been registered with Proton. For more information, see
|
4077
|
+
# CreateRepository.
|
4078
|
+
#
|
4079
|
+
# To remove a previously configured repository, set
|
4080
|
+
# `deletePipelineProvisioningRepository` to `true`, and don't set
|
4081
|
+
# `pipelineProvisioningRepository`.
|
4066
4082
|
#
|
4067
4083
|
# @option params [String] :pipeline_service_role_arn
|
4068
4084
|
# The Amazon Resource Name (ARN) of the service role you want to use for
|
@@ -4070,6 +4086,8 @@ module Aws::Proton
|
|
4070
4086
|
# Services-managed provisioning, and by customer-owned automation for
|
4071
4087
|
# self-managed provisioning.
|
4072
4088
|
#
|
4089
|
+
# To remove a previously configured ARN, specify an empty string.
|
4090
|
+
#
|
4073
4091
|
# @return [Types::UpdateAccountSettingsOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4074
4092
|
#
|
4075
4093
|
# * {Types::UpdateAccountSettingsOutput#account_settings #account_settings} => Types::AccountSettings
|
@@ -4077,6 +4095,7 @@ module Aws::Proton
|
|
4077
4095
|
# @example Request syntax with placeholder values
|
4078
4096
|
#
|
4079
4097
|
# resp = client.update_account_settings({
|
4098
|
+
# delete_pipeline_provisioning_repository: false,
|
4080
4099
|
# pipeline_provisioning_repository: {
|
4081
4100
|
# branch: "GitBranchName", # required
|
4082
4101
|
# name: "RepositoryName", # required
|
@@ -4114,11 +4133,11 @@ module Aws::Proton
|
|
4114
4133
|
# </note>
|
4115
4134
|
#
|
4116
4135
|
# For more information about components, see [Proton components][1] in
|
4117
|
-
# the *Proton
|
4136
|
+
# the *Proton User Guide*.
|
4118
4137
|
#
|
4119
4138
|
#
|
4120
4139
|
#
|
4121
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
4140
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
4122
4141
|
#
|
4123
4142
|
# @option params [required, String] :deployment_type
|
4124
4143
|
# The deployment type. It defines the mode for updating a component, as
|
@@ -4246,7 +4265,7 @@ module Aws::Proton
|
|
4246
4265
|
# parameters.
|
4247
4266
|
#
|
4248
4267
|
# For more information, see [Environments][1] and [Provisioning
|
4249
|
-
# methods][2] in the *Proton
|
4268
|
+
# methods][2] in the *Proton User Guide*.
|
4250
4269
|
#
|
4251
4270
|
# There are four modes for updating an environment. The `deploymentType`
|
4252
4271
|
# field defines the mode.
|
@@ -4288,8 +4307,8 @@ module Aws::Proton
|
|
4288
4307
|
#
|
4289
4308
|
#
|
4290
4309
|
#
|
4291
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
4292
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/
|
4310
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-environments.html
|
4311
|
+
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html
|
4293
4312
|
#
|
4294
4313
|
# @option params [String] :component_role_arn
|
4295
4314
|
# The Amazon Resource Name (ARN) of the IAM service role that Proton
|
@@ -4301,11 +4320,11 @@ module Aws::Proton
|
|
4301
4320
|
# defined components to be associated with the environment.
|
4302
4321
|
#
|
4303
4322
|
# For more information about components, see [Proton components][1] in
|
4304
|
-
# the *Proton
|
4323
|
+
# the *Proton User Guide*.
|
4305
4324
|
#
|
4306
4325
|
#
|
4307
4326
|
#
|
4308
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
4327
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
4309
4328
|
#
|
4310
4329
|
# @option params [required, String] :deployment_type
|
4311
4330
|
# There are four modes for updating an environment. The `deploymentType`
|
@@ -4365,8 +4384,10 @@ module Aws::Proton
|
|
4365
4384
|
# Proton to make API calls to other services your behalf.
|
4366
4385
|
#
|
4367
4386
|
# @option params [Types::RepositoryBranchInput] :provisioning_repository
|
4368
|
-
# The
|
4369
|
-
# infrastructure templates for self-managed provisioning.
|
4387
|
+
# The linked repository that you use to host your rendered
|
4388
|
+
# infrastructure templates for self-managed provisioning. A linked
|
4389
|
+
# repository is a repository that has been registered with Proton. For
|
4390
|
+
# more information, see CreateRepository.
|
4370
4391
|
#
|
4371
4392
|
# @option params [String] :spec
|
4372
4393
|
# The formatted specification that defines the update.
|
@@ -4437,11 +4458,11 @@ module Aws::Proton
|
|
4437
4458
|
# use a new IAM role.
|
4438
4459
|
#
|
4439
4460
|
# For more information, see [Environment account connections][1] in the
|
4440
|
-
# *Proton
|
4461
|
+
# *Proton User guide*.
|
4441
4462
|
#
|
4442
4463
|
#
|
4443
4464
|
#
|
4444
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
4465
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html
|
4445
4466
|
#
|
4446
4467
|
# @option params [String] :component_role_arn
|
4447
4468
|
# The Amazon Resource Name (ARN) of the IAM service role that Proton
|
@@ -4454,11 +4475,11 @@ module Aws::Proton
|
|
4454
4475
|
# environments running in the account.
|
4455
4476
|
#
|
4456
4477
|
# For more information about components, see [Proton components][1] in
|
4457
|
-
# the *Proton
|
4478
|
+
# the *Proton User Guide*.
|
4458
4479
|
#
|
4459
4480
|
#
|
4460
4481
|
#
|
4461
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
4482
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
4462
4483
|
#
|
4463
4484
|
# @option params [required, String] :id
|
4464
4485
|
# The ID of the environment account connection to update.
|
@@ -4618,13 +4639,13 @@ module Aws::Proton
|
|
4618
4639
|
# has an attached component.
|
4619
4640
|
#
|
4620
4641
|
# For more information about components, see [Proton components][1] in
|
4621
|
-
# the *Proton
|
4642
|
+
# the *Proton User Guide*.
|
4622
4643
|
#
|
4623
4644
|
# </note>
|
4624
4645
|
#
|
4625
4646
|
#
|
4626
4647
|
#
|
4627
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
4648
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
4628
4649
|
#
|
4629
4650
|
# @option params [String] :description
|
4630
4651
|
# The edited service description.
|
@@ -4636,13 +4657,12 @@ module Aws::Proton
|
|
4636
4657
|
# Lists the service instances to add and the existing service instances
|
4637
4658
|
# to remain. Omit the existing service instances to delete from the
|
4638
4659
|
# list. *Don't* include edits to the existing service instances or
|
4639
|
-
# pipeline. For more information, see
|
4640
|
-
#
|
4660
|
+
# pipeline. For more information, see [Edit a service][1] in the *Proton
|
4661
|
+
# User Guide*.
|
4641
4662
|
#
|
4642
4663
|
#
|
4643
4664
|
#
|
4644
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
4645
|
-
# [2]: https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-update.html
|
4665
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-svc-update.html
|
4646
4666
|
#
|
4647
4667
|
# @return [Types::UpdateServiceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4648
4668
|
#
|
@@ -4699,13 +4719,13 @@ module Aws::Proton
|
|
4699
4719
|
# the deployment status of a component attached to it, is `IN_PROGRESS`.
|
4700
4720
|
#
|
4701
4721
|
# For more information about components, see [Proton components][1] in
|
4702
|
-
# the *Proton
|
4722
|
+
# the *Proton User Guide*.
|
4703
4723
|
#
|
4704
4724
|
# </note>
|
4705
4725
|
#
|
4706
4726
|
#
|
4707
4727
|
#
|
4708
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
4728
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
4709
4729
|
#
|
4710
4730
|
# @option params [required, String] :deployment_type
|
4711
4731
|
# The deployment type. It defines the mode for updating a service
|
@@ -5011,11 +5031,11 @@ module Aws::Proton
|
|
5011
5031
|
# </note>
|
5012
5032
|
#
|
5013
5033
|
# For more information about components, see [Proton components][1] in
|
5014
|
-
# the *Proton
|
5034
|
+
# the *Proton User Guide*.
|
5015
5035
|
#
|
5016
5036
|
#
|
5017
5037
|
#
|
5018
|
-
# [1]: https://docs.aws.amazon.com/proton/latest/
|
5038
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
|
5019
5039
|
#
|
5020
5040
|
# @option params [required, String] :template_name
|
5021
5041
|
# The name of the service template.
|
@@ -5070,13 +5090,16 @@ module Aws::Proton
|
|
5070
5090
|
end
|
5071
5091
|
|
5072
5092
|
# Update template sync configuration parameters, except for the
|
5073
|
-
# `templateName` and `templateType`.
|
5093
|
+
# `templateName` and `templateType`. Repository details (branch, name,
|
5094
|
+
# and provider) should be of a linked repository. A linked repository is
|
5095
|
+
# a repository that has been registered with Proton. For more
|
5096
|
+
# information, see CreateRepository.
|
5074
5097
|
#
|
5075
5098
|
# @option params [required, String] :branch
|
5076
|
-
# The repository branch.
|
5099
|
+
# The repository branch for your template.
|
5077
5100
|
#
|
5078
5101
|
# @option params [required, String] :repository_name
|
5079
|
-
# The name
|
5102
|
+
# The repository name (for example, `myrepos/myrepo`).
|
5080
5103
|
#
|
5081
5104
|
# @option params [required, String] :repository_provider
|
5082
5105
|
# The repository provider.
|
@@ -5137,7 +5160,7 @@ module Aws::Proton
|
|
5137
5160
|
params: params,
|
5138
5161
|
config: config)
|
5139
5162
|
context[:gem_name] = 'aws-sdk-proton'
|
5140
|
-
context[:gem_version] = '1.
|
5163
|
+
context[:gem_version] = '1.18.0'
|
5141
5164
|
Seahorse::Client::Request.new(handlers, context)
|
5142
5165
|
end
|
5143
5166
|
|