aws-sdk-proton 1.23.0 → 1.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-proton/client.rb +457 -7
- data/lib/aws-sdk-proton/client_api.rb +239 -0
- data/lib/aws-sdk-proton/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-proton/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-proton/endpoints.rb +112 -0
- data/lib/aws-sdk-proton/plugins/endpoints.rb +16 -0
- data/lib/aws-sdk-proton/types.rb +515 -3
- data/lib/aws-sdk-proton.rb +1 -1
- metadata +4 -4
@@ -80,6 +80,10 @@ module Aws::Proton
|
|
80
80
|
Aws::Proton::Endpoints::CreateRepository.build(context)
|
81
81
|
when :create_service
|
82
82
|
Aws::Proton::Endpoints::CreateService.build(context)
|
83
|
+
when :create_service_instance
|
84
|
+
Aws::Proton::Endpoints::CreateServiceInstance.build(context)
|
85
|
+
when :create_service_sync_config
|
86
|
+
Aws::Proton::Endpoints::CreateServiceSyncConfig.build(context)
|
83
87
|
when :create_service_template
|
84
88
|
Aws::Proton::Endpoints::CreateServiceTemplate.build(context)
|
85
89
|
when :create_service_template_version
|
@@ -100,6 +104,8 @@ module Aws::Proton
|
|
100
104
|
Aws::Proton::Endpoints::DeleteRepository.build(context)
|
101
105
|
when :delete_service
|
102
106
|
Aws::Proton::Endpoints::DeleteService.build(context)
|
107
|
+
when :delete_service_sync_config
|
108
|
+
Aws::Proton::Endpoints::DeleteServiceSyncConfig.build(context)
|
103
109
|
when :delete_service_template
|
104
110
|
Aws::Proton::Endpoints::DeleteServiceTemplate.build(context)
|
105
111
|
when :delete_service_template_version
|
@@ -128,6 +134,12 @@ module Aws::Proton
|
|
128
134
|
Aws::Proton::Endpoints::GetService.build(context)
|
129
135
|
when :get_service_instance
|
130
136
|
Aws::Proton::Endpoints::GetServiceInstance.build(context)
|
137
|
+
when :get_service_instance_sync_status
|
138
|
+
Aws::Proton::Endpoints::GetServiceInstanceSyncStatus.build(context)
|
139
|
+
when :get_service_sync_blocker_summary
|
140
|
+
Aws::Proton::Endpoints::GetServiceSyncBlockerSummary.build(context)
|
141
|
+
when :get_service_sync_config
|
142
|
+
Aws::Proton::Endpoints::GetServiceSyncConfig.build(context)
|
131
143
|
when :get_service_template
|
132
144
|
Aws::Proton::Endpoints::GetServiceTemplate.build(context)
|
133
145
|
when :get_service_template_version
|
@@ -202,6 +214,10 @@ module Aws::Proton
|
|
202
214
|
Aws::Proton::Endpoints::UpdateServiceInstance.build(context)
|
203
215
|
when :update_service_pipeline
|
204
216
|
Aws::Proton::Endpoints::UpdateServicePipeline.build(context)
|
217
|
+
when :update_service_sync_blocker
|
218
|
+
Aws::Proton::Endpoints::UpdateServiceSyncBlocker.build(context)
|
219
|
+
when :update_service_sync_config
|
220
|
+
Aws::Proton::Endpoints::UpdateServiceSyncConfig.build(context)
|
205
221
|
when :update_service_template
|
206
222
|
Aws::Proton::Endpoints::UpdateServiceTemplate.build(context)
|
207
223
|
when :update_service_template_version
|
data/lib/aws-sdk-proton/types.rb
CHANGED
@@ -257,6 +257,10 @@ module Aws::Proton
|
|
257
257
|
# with.
|
258
258
|
# @return [String]
|
259
259
|
#
|
260
|
+
# @!attribute [rw] last_client_request_token
|
261
|
+
# The last token the client requested.
|
262
|
+
# @return [String]
|
263
|
+
#
|
260
264
|
# @!attribute [rw] last_deployment_attempted_at
|
261
265
|
# The time when a deployment of the component was last attempted.
|
262
266
|
# @return [Time]
|
@@ -297,6 +301,7 @@ module Aws::Proton
|
|
297
301
|
:deployment_status_message,
|
298
302
|
:description,
|
299
303
|
:environment_name,
|
304
|
+
:last_client_request_token,
|
300
305
|
:last_deployment_attempted_at,
|
301
306
|
:last_deployment_succeeded_at,
|
302
307
|
:last_modified_at,
|
@@ -411,7 +416,8 @@ module Aws::Proton
|
|
411
416
|
#
|
412
417
|
# @!attribute [rw] environment_templates
|
413
418
|
# The total number of environment templates in the Amazon Web Services
|
414
|
-
# account.
|
419
|
+
# account. The `environmentTemplates` object will only contain `total`
|
420
|
+
# members.
|
415
421
|
# @return [Types::ResourceCountsSummary]
|
416
422
|
#
|
417
423
|
# @!attribute [rw] environments
|
@@ -455,6 +461,13 @@ module Aws::Proton
|
|
455
461
|
include Aws::Structure
|
456
462
|
end
|
457
463
|
|
464
|
+
# @!attribute [rw] client_token
|
465
|
+
# The client token for the created component.
|
466
|
+
#
|
467
|
+
# **A suitable default value is auto-generated.** You should normally
|
468
|
+
# not need to pass this option.
|
469
|
+
# @return [String]
|
470
|
+
#
|
458
471
|
# @!attribute [rw] description
|
459
472
|
# An optional customer-provided description of the component.
|
460
473
|
# @return [String]
|
@@ -520,6 +533,7 @@ module Aws::Proton
|
|
520
533
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateComponentInput AWS API Documentation
|
521
534
|
#
|
522
535
|
class CreateComponentInput < Struct.new(
|
536
|
+
:client_token,
|
523
537
|
:description,
|
524
538
|
:environment_name,
|
525
539
|
:manifest,
|
@@ -1052,6 +1066,73 @@ module Aws::Proton
|
|
1052
1066
|
include Aws::Structure
|
1053
1067
|
end
|
1054
1068
|
|
1069
|
+
# @!attribute [rw] client_token
|
1070
|
+
# The client token of the service instance to create.
|
1071
|
+
#
|
1072
|
+
# **A suitable default value is auto-generated.** You should normally
|
1073
|
+
# not need to pass this option.
|
1074
|
+
# @return [String]
|
1075
|
+
#
|
1076
|
+
# @!attribute [rw] name
|
1077
|
+
# The name of the service instance to create.
|
1078
|
+
# @return [String]
|
1079
|
+
#
|
1080
|
+
# @!attribute [rw] service_name
|
1081
|
+
# The name of the service the service instance is added to.
|
1082
|
+
# @return [String]
|
1083
|
+
#
|
1084
|
+
# @!attribute [rw] spec
|
1085
|
+
# The spec for the service instance you want to create.
|
1086
|
+
# @return [String]
|
1087
|
+
#
|
1088
|
+
# @!attribute [rw] tags
|
1089
|
+
# An optional list of metadata items that you can associate with the
|
1090
|
+
# Proton service instance. A tag is a key-value pair.
|
1091
|
+
#
|
1092
|
+
# For more information, see [Proton resources and tagging][1] in the
|
1093
|
+
# *Proton User Guide*.
|
1094
|
+
#
|
1095
|
+
#
|
1096
|
+
#
|
1097
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
|
1098
|
+
# @return [Array<Types::Tag>]
|
1099
|
+
#
|
1100
|
+
# @!attribute [rw] template_major_version
|
1101
|
+
# To create a new major and minor version of the service template,
|
1102
|
+
# *exclude* `major Version`.
|
1103
|
+
# @return [String]
|
1104
|
+
#
|
1105
|
+
# @!attribute [rw] template_minor_version
|
1106
|
+
# To create a new minor version of the service template, include a
|
1107
|
+
# `major Version`.
|
1108
|
+
# @return [String]
|
1109
|
+
#
|
1110
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateServiceInstanceInput AWS API Documentation
|
1111
|
+
#
|
1112
|
+
class CreateServiceInstanceInput < Struct.new(
|
1113
|
+
:client_token,
|
1114
|
+
:name,
|
1115
|
+
:service_name,
|
1116
|
+
:spec,
|
1117
|
+
:tags,
|
1118
|
+
:template_major_version,
|
1119
|
+
:template_minor_version)
|
1120
|
+
SENSITIVE = [:spec]
|
1121
|
+
include Aws::Structure
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
# @!attribute [rw] service_instance
|
1125
|
+
# The detailed data of the service instance being created.
|
1126
|
+
# @return [Types::ServiceInstance]
|
1127
|
+
#
|
1128
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateServiceInstanceOutput AWS API Documentation
|
1129
|
+
#
|
1130
|
+
class CreateServiceInstanceOutput < Struct.new(
|
1131
|
+
:service_instance)
|
1132
|
+
SENSITIVE = []
|
1133
|
+
include Aws::Structure
|
1134
|
+
end
|
1135
|
+
|
1055
1136
|
# @!attribute [rw] service
|
1056
1137
|
# The service detail data that's returned by Proton.
|
1057
1138
|
# @return [Types::Service]
|
@@ -1064,6 +1145,50 @@ module Aws::Proton
|
|
1064
1145
|
include Aws::Structure
|
1065
1146
|
end
|
1066
1147
|
|
1148
|
+
# @!attribute [rw] branch
|
1149
|
+
# The repository branch for your Proton Ops file.
|
1150
|
+
# @return [String]
|
1151
|
+
#
|
1152
|
+
# @!attribute [rw] file_path
|
1153
|
+
# The path to the Proton Ops file.
|
1154
|
+
# @return [String]
|
1155
|
+
#
|
1156
|
+
# @!attribute [rw] repository_name
|
1157
|
+
# The repository name.
|
1158
|
+
# @return [String]
|
1159
|
+
#
|
1160
|
+
# @!attribute [rw] repository_provider
|
1161
|
+
# The provider type for your repository.
|
1162
|
+
# @return [String]
|
1163
|
+
#
|
1164
|
+
# @!attribute [rw] service_name
|
1165
|
+
# The name of the service the Proton Ops file is for.
|
1166
|
+
# @return [String]
|
1167
|
+
#
|
1168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateServiceSyncConfigInput AWS API Documentation
|
1169
|
+
#
|
1170
|
+
class CreateServiceSyncConfigInput < Struct.new(
|
1171
|
+
:branch,
|
1172
|
+
:file_path,
|
1173
|
+
:repository_name,
|
1174
|
+
:repository_provider,
|
1175
|
+
:service_name)
|
1176
|
+
SENSITIVE = []
|
1177
|
+
include Aws::Structure
|
1178
|
+
end
|
1179
|
+
|
1180
|
+
# @!attribute [rw] service_sync_config
|
1181
|
+
# The detailed data of the Proton Ops file.
|
1182
|
+
# @return [Types::ServiceSyncConfig]
|
1183
|
+
#
|
1184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateServiceSyncConfigOutput AWS API Documentation
|
1185
|
+
#
|
1186
|
+
class CreateServiceSyncConfigOutput < Struct.new(
|
1187
|
+
:service_sync_config)
|
1188
|
+
SENSITIVE = []
|
1189
|
+
include Aws::Structure
|
1190
|
+
end
|
1191
|
+
|
1067
1192
|
# @!attribute [rw] description
|
1068
1193
|
# A description of the service template.
|
1069
1194
|
# @return [String]
|
@@ -1457,6 +1582,31 @@ module Aws::Proton
|
|
1457
1582
|
include Aws::Structure
|
1458
1583
|
end
|
1459
1584
|
|
1585
|
+
# @!attribute [rw] service_name
|
1586
|
+
# The name of the service that you want to delete the service sync
|
1587
|
+
# configuration for.
|
1588
|
+
# @return [String]
|
1589
|
+
#
|
1590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteServiceSyncConfigInput AWS API Documentation
|
1591
|
+
#
|
1592
|
+
class DeleteServiceSyncConfigInput < Struct.new(
|
1593
|
+
:service_name)
|
1594
|
+
SENSITIVE = []
|
1595
|
+
include Aws::Structure
|
1596
|
+
end
|
1597
|
+
|
1598
|
+
# @!attribute [rw] service_sync_config
|
1599
|
+
# The detailed data for the service sync config.
|
1600
|
+
# @return [Types::ServiceSyncConfig]
|
1601
|
+
#
|
1602
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteServiceSyncConfigOutput AWS API Documentation
|
1603
|
+
#
|
1604
|
+
class DeleteServiceSyncConfigOutput < Struct.new(
|
1605
|
+
:service_sync_config)
|
1606
|
+
SENSITIVE = []
|
1607
|
+
include Aws::Structure
|
1608
|
+
end
|
1609
|
+
|
1460
1610
|
# @!attribute [rw] name
|
1461
1611
|
# The name of the service template to delete.
|
1462
1612
|
# @return [String]
|
@@ -1627,7 +1777,11 @@ module Aws::Proton
|
|
1627
1777
|
# The linked repository that you use to host your rendered
|
1628
1778
|
# infrastructure templates for self-managed provisioning. A linked
|
1629
1779
|
# repository is a repository that has been registered with Proton. For
|
1630
|
-
# more information, see CreateRepository.
|
1780
|
+
# more information, see [CreateRepository][1].
|
1781
|
+
#
|
1782
|
+
#
|
1783
|
+
#
|
1784
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/APIReference/API_CreateRepository.html
|
1631
1785
|
# @return [Types::RepositoryBranch]
|
1632
1786
|
#
|
1633
1787
|
# @!attribute [rw] spec
|
@@ -2458,7 +2612,8 @@ module Aws::Proton
|
|
2458
2612
|
# @return [String]
|
2459
2613
|
#
|
2460
2614
|
# @!attribute [rw] service_name
|
2461
|
-
# The name of the service that the service instance
|
2615
|
+
# The name of the service that you want the service instance input
|
2616
|
+
# for.
|
2462
2617
|
# @return [String]
|
2463
2618
|
#
|
2464
2619
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceInstanceInput AWS API Documentation
|
@@ -2482,6 +2637,47 @@ module Aws::Proton
|
|
2482
2637
|
include Aws::Structure
|
2483
2638
|
end
|
2484
2639
|
|
2640
|
+
# @!attribute [rw] service_instance_name
|
2641
|
+
# The name of the service instance that you want the sync status input
|
2642
|
+
# for.
|
2643
|
+
# @return [String]
|
2644
|
+
#
|
2645
|
+
# @!attribute [rw] service_name
|
2646
|
+
# The name of the service that the service instance belongs to.
|
2647
|
+
# @return [String]
|
2648
|
+
#
|
2649
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceInstanceSyncStatusInput AWS API Documentation
|
2650
|
+
#
|
2651
|
+
class GetServiceInstanceSyncStatusInput < Struct.new(
|
2652
|
+
:service_instance_name,
|
2653
|
+
:service_name)
|
2654
|
+
SENSITIVE = []
|
2655
|
+
include Aws::Structure
|
2656
|
+
end
|
2657
|
+
|
2658
|
+
# @!attribute [rw] desired_state
|
2659
|
+
# The service instance sync desired state that's returned by Proton
|
2660
|
+
# @return [Types::Revision]
|
2661
|
+
#
|
2662
|
+
# @!attribute [rw] latest_successful_sync
|
2663
|
+
# The detailed data of the latest successful sync with the service
|
2664
|
+
# instance.
|
2665
|
+
# @return [Types::ResourceSyncAttempt]
|
2666
|
+
#
|
2667
|
+
# @!attribute [rw] latest_sync
|
2668
|
+
# The detailed data of the latest sync with the service instance.
|
2669
|
+
# @return [Types::ResourceSyncAttempt]
|
2670
|
+
#
|
2671
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceInstanceSyncStatusOutput AWS API Documentation
|
2672
|
+
#
|
2673
|
+
class GetServiceInstanceSyncStatusOutput < Struct.new(
|
2674
|
+
:desired_state,
|
2675
|
+
:latest_successful_sync,
|
2676
|
+
:latest_sync)
|
2677
|
+
SENSITIVE = []
|
2678
|
+
include Aws::Structure
|
2679
|
+
end
|
2680
|
+
|
2485
2681
|
# @!attribute [rw] service
|
2486
2682
|
# The detailed data of the requested service.
|
2487
2683
|
# @return [Types::Service]
|
@@ -2494,6 +2690,64 @@ module Aws::Proton
|
|
2494
2690
|
include Aws::Structure
|
2495
2691
|
end
|
2496
2692
|
|
2693
|
+
# @!attribute [rw] service_instance_name
|
2694
|
+
# The name of the service instance that you want to get the service
|
2695
|
+
# sync blocker summary for. If given bothe the instance name and the
|
2696
|
+
# service name, only the instance is blocked.
|
2697
|
+
# @return [String]
|
2698
|
+
#
|
2699
|
+
# @!attribute [rw] service_name
|
2700
|
+
# The name of the service that you want to get the service sync
|
2701
|
+
# blocker summary for. If given only the service name, all instances
|
2702
|
+
# are blocked.
|
2703
|
+
# @return [String]
|
2704
|
+
#
|
2705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceSyncBlockerSummaryInput AWS API Documentation
|
2706
|
+
#
|
2707
|
+
class GetServiceSyncBlockerSummaryInput < Struct.new(
|
2708
|
+
:service_instance_name,
|
2709
|
+
:service_name)
|
2710
|
+
SENSITIVE = []
|
2711
|
+
include Aws::Structure
|
2712
|
+
end
|
2713
|
+
|
2714
|
+
# @!attribute [rw] service_sync_blocker_summary
|
2715
|
+
# The detailed data of the requested service sync blocker summary.
|
2716
|
+
# @return [Types::ServiceSyncBlockerSummary]
|
2717
|
+
#
|
2718
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceSyncBlockerSummaryOutput AWS API Documentation
|
2719
|
+
#
|
2720
|
+
class GetServiceSyncBlockerSummaryOutput < Struct.new(
|
2721
|
+
:service_sync_blocker_summary)
|
2722
|
+
SENSITIVE = []
|
2723
|
+
include Aws::Structure
|
2724
|
+
end
|
2725
|
+
|
2726
|
+
# @!attribute [rw] service_name
|
2727
|
+
# The name of the service that you want to get the service sync
|
2728
|
+
# configuration for.
|
2729
|
+
# @return [String]
|
2730
|
+
#
|
2731
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceSyncConfigInput AWS API Documentation
|
2732
|
+
#
|
2733
|
+
class GetServiceSyncConfigInput < Struct.new(
|
2734
|
+
:service_name)
|
2735
|
+
SENSITIVE = []
|
2736
|
+
include Aws::Structure
|
2737
|
+
end
|
2738
|
+
|
2739
|
+
# @!attribute [rw] service_sync_config
|
2740
|
+
# The detailed data of the requested service sync configuration.
|
2741
|
+
# @return [Types::ServiceSyncConfig]
|
2742
|
+
#
|
2743
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceSyncConfigOutput AWS API Documentation
|
2744
|
+
#
|
2745
|
+
class GetServiceSyncConfigOutput < Struct.new(
|
2746
|
+
:service_sync_config)
|
2747
|
+
SENSITIVE = []
|
2748
|
+
include Aws::Structure
|
2749
|
+
end
|
2750
|
+
|
2497
2751
|
# @!attribute [rw] name
|
2498
2752
|
# The name of the service template that you want to get detailed data
|
2499
2753
|
# for.
|
@@ -3769,6 +4023,11 @@ module Aws::Proton
|
|
3769
4023
|
# The Amazon Resource Name (ARN) of the linked repository.
|
3770
4024
|
# @return [String]
|
3771
4025
|
#
|
4026
|
+
# @!attribute [rw] connection_arn
|
4027
|
+
# The Amazon Resource Name (ARN) of the of your connection that
|
4028
|
+
# connects Proton to your repository.
|
4029
|
+
# @return [String]
|
4030
|
+
#
|
3772
4031
|
# @!attribute [rw] name
|
3773
4032
|
# The repository name.
|
3774
4033
|
# @return [String]
|
@@ -3781,6 +4040,7 @@ module Aws::Proton
|
|
3781
4040
|
#
|
3782
4041
|
class RepositorySummary < Struct.new(
|
3783
4042
|
:arn,
|
4043
|
+
:connection_arn,
|
3784
4044
|
:name,
|
3785
4045
|
:provider)
|
3786
4046
|
SENSITIVE = []
|
@@ -4150,6 +4410,10 @@ module Aws::Proton
|
|
4150
4410
|
# into.
|
4151
4411
|
# @return [String]
|
4152
4412
|
#
|
4413
|
+
# @!attribute [rw] last_client_request_token
|
4414
|
+
# The last client request token received.
|
4415
|
+
# @return [String]
|
4416
|
+
#
|
4153
4417
|
# @!attribute [rw] last_deployment_attempted_at
|
4154
4418
|
# The time when a deployment of the service instance was last
|
4155
4419
|
# attempted.
|
@@ -4194,6 +4458,7 @@ module Aws::Proton
|
|
4194
4458
|
:deployment_status,
|
4195
4459
|
:deployment_status_message,
|
4196
4460
|
:environment_name,
|
4461
|
+
:last_client_request_token,
|
4197
4462
|
:last_deployment_attempted_at,
|
4198
4463
|
:last_deployment_succeeded_at,
|
4199
4464
|
:name,
|
@@ -4406,6 +4671,82 @@ module Aws::Proton
|
|
4406
4671
|
include Aws::Structure
|
4407
4672
|
end
|
4408
4673
|
|
4674
|
+
# If a service instance is manually updated, Proton wants to prevent
|
4675
|
+
# accidentally overriding a manual change.
|
4676
|
+
#
|
4677
|
+
# A blocker is created because of the manual update or deletion of a
|
4678
|
+
# service instance. The summary describes the blocker as being active or
|
4679
|
+
# resolved.
|
4680
|
+
#
|
4681
|
+
# @!attribute [rw] latest_blockers
|
4682
|
+
# The latest active blockers for the synced service.
|
4683
|
+
# @return [Array<Types::SyncBlocker>]
|
4684
|
+
#
|
4685
|
+
# @!attribute [rw] service_instance_name
|
4686
|
+
# The name of the service instance that you want sync your service
|
4687
|
+
# configuration with.
|
4688
|
+
# @return [String]
|
4689
|
+
#
|
4690
|
+
# @!attribute [rw] service_name
|
4691
|
+
# The name of the service that you want to get the sync blocker
|
4692
|
+
# summary for. If given a service instance name and a service name, it
|
4693
|
+
# will return the blockers only applying to the instance that is
|
4694
|
+
# blocked.
|
4695
|
+
#
|
4696
|
+
# If given only a service name, it will return the blockers that apply
|
4697
|
+
# to all of the instances. In order to get the blockers for a single
|
4698
|
+
# instance, you will need to make two distinct calls, one to get the
|
4699
|
+
# sync blocker summary for the service and the other to get the sync
|
4700
|
+
# blocker for the service instance.
|
4701
|
+
# @return [String]
|
4702
|
+
#
|
4703
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ServiceSyncBlockerSummary AWS API Documentation
|
4704
|
+
#
|
4705
|
+
class ServiceSyncBlockerSummary < Struct.new(
|
4706
|
+
:latest_blockers,
|
4707
|
+
:service_instance_name,
|
4708
|
+
:service_name)
|
4709
|
+
SENSITIVE = []
|
4710
|
+
include Aws::Structure
|
4711
|
+
end
|
4712
|
+
|
4713
|
+
# Detailed data of the service sync configuration.
|
4714
|
+
#
|
4715
|
+
# @!attribute [rw] branch
|
4716
|
+
# The name of the code repository branch that holds the service code
|
4717
|
+
# Proton will sync with.
|
4718
|
+
# @return [String]
|
4719
|
+
#
|
4720
|
+
# @!attribute [rw] file_path
|
4721
|
+
# The file path to the service sync configuration file.
|
4722
|
+
# @return [String]
|
4723
|
+
#
|
4724
|
+
# @!attribute [rw] repository_name
|
4725
|
+
# The name of the code repository that holds the service code Proton
|
4726
|
+
# will sync with.
|
4727
|
+
# @return [String]
|
4728
|
+
#
|
4729
|
+
# @!attribute [rw] repository_provider
|
4730
|
+
# The name of the repository provider that holds the repository Proton
|
4731
|
+
# will sync with.
|
4732
|
+
# @return [String]
|
4733
|
+
#
|
4734
|
+
# @!attribute [rw] service_name
|
4735
|
+
# The name of the service that the service instance is added to.
|
4736
|
+
# @return [String]
|
4737
|
+
#
|
4738
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ServiceSyncConfig AWS API Documentation
|
4739
|
+
#
|
4740
|
+
class ServiceSyncConfig < Struct.new(
|
4741
|
+
:branch,
|
4742
|
+
:file_path,
|
4743
|
+
:repository_name,
|
4744
|
+
:repository_provider,
|
4745
|
+
:service_name)
|
4746
|
+
SENSITIVE = []
|
4747
|
+
include Aws::Structure
|
4748
|
+
end
|
4749
|
+
|
4409
4750
|
# Detailed data of an Proton service template resource.
|
4410
4751
|
#
|
4411
4752
|
# @!attribute [rw] arn
|
@@ -4659,6 +5000,74 @@ module Aws::Proton
|
|
4659
5000
|
include Aws::Structure
|
4660
5001
|
end
|
4661
5002
|
|
5003
|
+
# Detailed data of the sync blocker.
|
5004
|
+
#
|
5005
|
+
# @!attribute [rw] contexts
|
5006
|
+
# The contexts for the sync blocker.
|
5007
|
+
# @return [Array<Types::SyncBlockerContext>]
|
5008
|
+
#
|
5009
|
+
# @!attribute [rw] created_at
|
5010
|
+
# The time when the sync blocker was created.
|
5011
|
+
# @return [Time]
|
5012
|
+
#
|
5013
|
+
# @!attribute [rw] created_reason
|
5014
|
+
# The reason why the sync blocker was created.
|
5015
|
+
# @return [String]
|
5016
|
+
#
|
5017
|
+
# @!attribute [rw] id
|
5018
|
+
# The ID of the sync blocker.
|
5019
|
+
# @return [String]
|
5020
|
+
#
|
5021
|
+
# @!attribute [rw] resolved_at
|
5022
|
+
# The time the sync blocker was resolved.
|
5023
|
+
# @return [Time]
|
5024
|
+
#
|
5025
|
+
# @!attribute [rw] resolved_reason
|
5026
|
+
# The reason the sync blocker was resolved.
|
5027
|
+
# @return [String]
|
5028
|
+
#
|
5029
|
+
# @!attribute [rw] status
|
5030
|
+
# The status of the sync blocker.
|
5031
|
+
# @return [String]
|
5032
|
+
#
|
5033
|
+
# @!attribute [rw] type
|
5034
|
+
# The type of the sync blocker.
|
5035
|
+
# @return [String]
|
5036
|
+
#
|
5037
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/SyncBlocker AWS API Documentation
|
5038
|
+
#
|
5039
|
+
class SyncBlocker < Struct.new(
|
5040
|
+
:contexts,
|
5041
|
+
:created_at,
|
5042
|
+
:created_reason,
|
5043
|
+
:id,
|
5044
|
+
:resolved_at,
|
5045
|
+
:resolved_reason,
|
5046
|
+
:status,
|
5047
|
+
:type)
|
5048
|
+
SENSITIVE = []
|
5049
|
+
include Aws::Structure
|
5050
|
+
end
|
5051
|
+
|
5052
|
+
# Detailed data of the context of the sync blocker.
|
5053
|
+
#
|
5054
|
+
# @!attribute [rw] key
|
5055
|
+
# The key for the sync blocker context.
|
5056
|
+
# @return [String]
|
5057
|
+
#
|
5058
|
+
# @!attribute [rw] value
|
5059
|
+
# The value of the sync blocker context.
|
5060
|
+
# @return [String]
|
5061
|
+
#
|
5062
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/SyncBlockerContext AWS API Documentation
|
5063
|
+
#
|
5064
|
+
class SyncBlockerContext < Struct.new(
|
5065
|
+
:key,
|
5066
|
+
:value)
|
5067
|
+
SENSITIVE = []
|
5068
|
+
include Aws::Structure
|
5069
|
+
end
|
5070
|
+
|
4662
5071
|
# A description of a resource tag.
|
4663
5072
|
#
|
4664
5073
|
# @!attribute [rw] key
|
@@ -4854,6 +5263,13 @@ module Aws::Proton
|
|
4854
5263
|
include Aws::Structure
|
4855
5264
|
end
|
4856
5265
|
|
5266
|
+
# @!attribute [rw] client_token
|
5267
|
+
# The client token for the updated component.
|
5268
|
+
#
|
5269
|
+
# **A suitable default value is auto-generated.** You should normally
|
5270
|
+
# not need to pass this option.
|
5271
|
+
# @return [String]
|
5272
|
+
#
|
4857
5273
|
# @!attribute [rw] deployment_type
|
4858
5274
|
# The deployment type. It defines the mode for updating a component,
|
4859
5275
|
# as follows:
|
@@ -4920,6 +5336,7 @@ module Aws::Proton
|
|
4920
5336
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateComponentInput AWS API Documentation
|
4921
5337
|
#
|
4922
5338
|
class UpdateComponentInput < Struct.new(
|
5339
|
+
:client_token,
|
4923
5340
|
:deployment_type,
|
4924
5341
|
:description,
|
4925
5342
|
:name,
|
@@ -5247,6 +5664,13 @@ module Aws::Proton
|
|
5247
5664
|
include Aws::Structure
|
5248
5665
|
end
|
5249
5666
|
|
5667
|
+
# @!attribute [rw] client_token
|
5668
|
+
# The client token of the service instance to update.
|
5669
|
+
#
|
5670
|
+
# **A suitable default value is auto-generated.** You should normally
|
5671
|
+
# not need to pass this option.
|
5672
|
+
# @return [String]
|
5673
|
+
#
|
5250
5674
|
# @!attribute [rw] deployment_type
|
5251
5675
|
# The deployment type. It defines the mode for updating a service
|
5252
5676
|
# instance, as follows:
|
@@ -5311,6 +5735,7 @@ module Aws::Proton
|
|
5311
5735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServiceInstanceInput AWS API Documentation
|
5312
5736
|
#
|
5313
5737
|
class UpdateServiceInstanceInput < Struct.new(
|
5738
|
+
:client_token,
|
5314
5739
|
:deployment_type,
|
5315
5740
|
:name,
|
5316
5741
|
:service_name,
|
@@ -5429,6 +5854,93 @@ module Aws::Proton
|
|
5429
5854
|
include Aws::Structure
|
5430
5855
|
end
|
5431
5856
|
|
5857
|
+
# @!attribute [rw] id
|
5858
|
+
# The ID of the service sync blocker.
|
5859
|
+
# @return [String]
|
5860
|
+
#
|
5861
|
+
# @!attribute [rw] resolved_reason
|
5862
|
+
# The reason the service sync blocker was resolved.
|
5863
|
+
# @return [String]
|
5864
|
+
#
|
5865
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServiceSyncBlockerInput AWS API Documentation
|
5866
|
+
#
|
5867
|
+
class UpdateServiceSyncBlockerInput < Struct.new(
|
5868
|
+
:id,
|
5869
|
+
:resolved_reason)
|
5870
|
+
SENSITIVE = []
|
5871
|
+
include Aws::Structure
|
5872
|
+
end
|
5873
|
+
|
5874
|
+
# @!attribute [rw] service_instance_name
|
5875
|
+
# The name of the service instance that you want to update the service
|
5876
|
+
# sync blocker for.
|
5877
|
+
# @return [String]
|
5878
|
+
#
|
5879
|
+
# @!attribute [rw] service_name
|
5880
|
+
# The name of the service that you want to update the service sync
|
5881
|
+
# blocker for.
|
5882
|
+
# @return [String]
|
5883
|
+
#
|
5884
|
+
# @!attribute [rw] service_sync_blocker
|
5885
|
+
# The detailed data on the service sync blocker that was updated.
|
5886
|
+
# @return [Types::SyncBlocker]
|
5887
|
+
#
|
5888
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServiceSyncBlockerOutput AWS API Documentation
|
5889
|
+
#
|
5890
|
+
class UpdateServiceSyncBlockerOutput < Struct.new(
|
5891
|
+
:service_instance_name,
|
5892
|
+
:service_name,
|
5893
|
+
:service_sync_blocker)
|
5894
|
+
SENSITIVE = []
|
5895
|
+
include Aws::Structure
|
5896
|
+
end
|
5897
|
+
|
5898
|
+
# @!attribute [rw] branch
|
5899
|
+
# The name of the code repository branch where the Proton Ops file is
|
5900
|
+
# found.
|
5901
|
+
# @return [String]
|
5902
|
+
#
|
5903
|
+
# @!attribute [rw] file_path
|
5904
|
+
# The path to the Proton Ops file.
|
5905
|
+
# @return [String]
|
5906
|
+
#
|
5907
|
+
# @!attribute [rw] repository_name
|
5908
|
+
# The name of the repository where the Proton Ops file is found.
|
5909
|
+
# @return [String]
|
5910
|
+
#
|
5911
|
+
# @!attribute [rw] repository_provider
|
5912
|
+
# The name of the repository provider where the Proton Ops file is
|
5913
|
+
# found.
|
5914
|
+
# @return [String]
|
5915
|
+
#
|
5916
|
+
# @!attribute [rw] service_name
|
5917
|
+
# The name of the service the Proton Ops file is for.
|
5918
|
+
# @return [String]
|
5919
|
+
#
|
5920
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServiceSyncConfigInput AWS API Documentation
|
5921
|
+
#
|
5922
|
+
class UpdateServiceSyncConfigInput < Struct.new(
|
5923
|
+
:branch,
|
5924
|
+
:file_path,
|
5925
|
+
:repository_name,
|
5926
|
+
:repository_provider,
|
5927
|
+
:service_name)
|
5928
|
+
SENSITIVE = []
|
5929
|
+
include Aws::Structure
|
5930
|
+
end
|
5931
|
+
|
5932
|
+
# @!attribute [rw] service_sync_config
|
5933
|
+
# The detailed data of the Proton Ops file.
|
5934
|
+
# @return [Types::ServiceSyncConfig]
|
5935
|
+
#
|
5936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServiceSyncConfigOutput AWS API Documentation
|
5937
|
+
#
|
5938
|
+
class UpdateServiceSyncConfigOutput < Struct.new(
|
5939
|
+
:service_sync_config)
|
5940
|
+
SENSITIVE = []
|
5941
|
+
include Aws::Structure
|
5942
|
+
end
|
5943
|
+
|
5432
5944
|
# @!attribute [rw] description
|
5433
5945
|
# A description of the service template update.
|
5434
5946
|
# @return [String]
|