aws-sdk-proton 1.9.0 → 1.10.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-proton/client.rb +1106 -135
- data/lib/aws-sdk-proton/client_api.rb +611 -2
- data/lib/aws-sdk-proton/types.rb +1701 -290
- data/lib/aws-sdk-proton.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-proton/types.rb
CHANGED
@@ -30,8 +30,7 @@ module Aws::Proton
|
|
30
30
|
end
|
31
31
|
|
32
32
|
# @!attribute [rw] environment_account_connection
|
33
|
-
# The environment account connection data that's returned by
|
34
|
-
# Proton.
|
33
|
+
# The environment account connection data that's returned by Proton.
|
35
34
|
# @return [Types::EnvironmentAccountConnection]
|
36
35
|
#
|
37
36
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/AcceptEnvironmentAccountConnectionOutput AWS API Documentation
|
@@ -55,16 +54,29 @@ module Aws::Proton
|
|
55
54
|
include Aws::Structure
|
56
55
|
end
|
57
56
|
|
58
|
-
# The
|
57
|
+
# The Proton pipeline service role and repository data.
|
58
|
+
#
|
59
|
+
# @!attribute [rw] pipeline_provisioning_repository
|
60
|
+
# The repository that you provide with pull request provisioning.
|
61
|
+
#
|
62
|
+
# Provisioning by pull request is currently in feature preview and is
|
63
|
+
# only usable with Terraform based Proton Templates. To learn more
|
64
|
+
# about [Amazon Web Services Feature Preview terms][1], see section 2
|
65
|
+
# on Beta and Previews.
|
66
|
+
#
|
67
|
+
#
|
68
|
+
#
|
69
|
+
# [1]: https://aws.amazon.com/service-terms
|
70
|
+
# @return [Types::RepositoryBranch]
|
59
71
|
#
|
60
72
|
# @!attribute [rw] pipeline_service_role_arn
|
61
|
-
# The Amazon Resource Name (ARN) of the
|
62
|
-
# role.
|
73
|
+
# The Amazon Resource Name (ARN) of the Proton pipeline service role.
|
63
74
|
# @return [String]
|
64
75
|
#
|
65
76
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/AccountSettings AWS API Documentation
|
66
77
|
#
|
67
78
|
class AccountSettings < Struct.new(
|
79
|
+
:pipeline_provisioning_repository,
|
68
80
|
:pipeline_service_role_arn)
|
69
81
|
SENSITIVE = []
|
70
82
|
include Aws::Structure
|
@@ -90,7 +102,7 @@ module Aws::Proton
|
|
90
102
|
end
|
91
103
|
|
92
104
|
# @!attribute [rw] environment
|
93
|
-
# The environment summary data that's returned by
|
105
|
+
# The environment summary data that's returned by Proton.
|
94
106
|
# @return [Types::Environment]
|
95
107
|
#
|
96
108
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CancelEnvironmentDeploymentOutput AWS API Documentation
|
@@ -128,7 +140,7 @@ module Aws::Proton
|
|
128
140
|
end
|
129
141
|
|
130
142
|
# @!attribute [rw] service_instance
|
131
|
-
# The service instance summary data that's returned by
|
143
|
+
# The service instance summary data that's returned by Proton.
|
132
144
|
# @return [Types::ServiceInstance]
|
133
145
|
#
|
134
146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CancelServiceInstanceDeploymentOutput AWS API Documentation
|
@@ -160,7 +172,7 @@ module Aws::Proton
|
|
160
172
|
end
|
161
173
|
|
162
174
|
# @!attribute [rw] pipeline
|
163
|
-
# The service pipeline detail data that's returned by
|
175
|
+
# The service pipeline detail data that's returned by Proton.
|
164
176
|
# @return [Types::ServicePipeline]
|
165
177
|
#
|
166
178
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CancelServicePipelineDeploymentOutput AWS API Documentation
|
@@ -239,52 +251,69 @@ module Aws::Proton
|
|
239
251
|
# environment_name: "ResourceName", # required
|
240
252
|
# management_account_id: "AwsAccountId", # required
|
241
253
|
# role_arn: "Arn", # required
|
254
|
+
# tags: [
|
255
|
+
# {
|
256
|
+
# key: "TagKey", # required
|
257
|
+
# value: "TagValue", # required
|
258
|
+
# },
|
259
|
+
# ],
|
242
260
|
# }
|
243
261
|
#
|
244
262
|
# @!attribute [rw] client_token
|
245
|
-
# When included, if two
|
246
|
-
# client token,
|
247
|
-
#
|
263
|
+
# When included, if two identical requests are made with the same
|
264
|
+
# client token, Proton returns the environment account connection that
|
265
|
+
# the first request created.
|
248
266
|
#
|
249
267
|
# **A suitable default value is auto-generated.** You should normally
|
250
268
|
# not need to pass this option.
|
251
269
|
# @return [String]
|
252
270
|
#
|
253
271
|
# @!attribute [rw] environment_name
|
254
|
-
# The name of the
|
255
|
-
#
|
272
|
+
# The name of the Proton environment that's created in the associated
|
273
|
+
# management account.
|
256
274
|
# @return [String]
|
257
275
|
#
|
258
276
|
# @!attribute [rw] management_account_id
|
259
277
|
# The ID of the management account that accepts or rejects the
|
260
|
-
# environment account connection. You create an manage the
|
278
|
+
# environment account connection. You create an manage the Proton
|
261
279
|
# environment in this account. If the management account accepts the
|
262
|
-
# environment account connection,
|
263
|
-
#
|
280
|
+
# environment account connection, Proton can use the associated IAM
|
281
|
+
# role to provision environment infrastructure resources in the
|
264
282
|
# associated environment account.
|
265
283
|
# @return [String]
|
266
284
|
#
|
267
285
|
# @!attribute [rw] role_arn
|
268
286
|
# The Amazon Resource Name (ARN) of the IAM service role that's
|
269
|
-
# created in the environment account.
|
287
|
+
# created in the environment account. Proton uses this role to
|
270
288
|
# provision infrastructure resources in the associated environment
|
271
289
|
# account.
|
272
290
|
# @return [String]
|
273
291
|
#
|
292
|
+
# @!attribute [rw] tags
|
293
|
+
# Tags for your environment account connection. For more information,
|
294
|
+
# see [Proton resources and tagging][1] in the *Proton Administrator
|
295
|
+
# Guide*.
|
296
|
+
#
|
297
|
+
#
|
298
|
+
#
|
299
|
+
# [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
|
300
|
+
# @return [Array<Types::Tag>]
|
301
|
+
#
|
274
302
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateEnvironmentAccountConnectionInput AWS API Documentation
|
275
303
|
#
|
276
304
|
class CreateEnvironmentAccountConnectionInput < Struct.new(
|
277
305
|
:client_token,
|
278
306
|
:environment_name,
|
279
307
|
:management_account_id,
|
280
|
-
:role_arn
|
308
|
+
:role_arn,
|
309
|
+
:tags)
|
281
310
|
SENSITIVE = []
|
282
311
|
include Aws::Structure
|
283
312
|
end
|
284
313
|
|
285
314
|
# @!attribute [rw] environment_account_connection
|
286
315
|
# The environment account connection detail data that's returned by
|
287
|
-
#
|
316
|
+
# Proton.
|
288
317
|
# @return [Types::EnvironmentAccountConnection]
|
289
318
|
#
|
290
319
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateEnvironmentAccountConnectionOutput AWS API Documentation
|
@@ -303,6 +332,11 @@ module Aws::Proton
|
|
303
332
|
# environment_account_connection_id: "EnvironmentAccountConnectionId",
|
304
333
|
# name: "ResourceName", # required
|
305
334
|
# proton_service_role_arn: "Arn",
|
335
|
+
# provisioning_repository: {
|
336
|
+
# branch: "GitBranchName", # required
|
337
|
+
# name: "RepositoryName", # required
|
338
|
+
# provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
|
339
|
+
# },
|
306
340
|
# spec: "SpecContents", # required
|
307
341
|
# tags: [
|
308
342
|
# {
|
@@ -324,8 +358,9 @@ module Aws::Proton
|
|
324
358
|
# you're provisioning your environment infrastructure resources to an
|
325
359
|
# environment account. You must include either the
|
326
360
|
# `environmentAccountConnectionId` or `protonServiceRoleArn` parameter
|
327
|
-
# and value
|
328
|
-
#
|
361
|
+
# and value and omit the `provisioningRepository` parameter and
|
362
|
+
# values. For more information, see [Environment account
|
363
|
+
# connections][1] in the *Proton Administrator guide*.
|
329
364
|
#
|
330
365
|
#
|
331
366
|
#
|
@@ -337,16 +372,34 @@ module Aws::Proton
|
|
337
372
|
# @return [String]
|
338
373
|
#
|
339
374
|
# @!attribute [rw] proton_service_role_arn
|
340
|
-
# The Amazon Resource Name (ARN) of the
|
341
|
-
# allows
|
342
|
-
#
|
343
|
-
# `protonServiceRoleArn` parameter and value
|
375
|
+
# The Amazon Resource Name (ARN) of the Proton service role that
|
376
|
+
# allows Proton to make calls to other services on your behalf. You
|
377
|
+
# must include either the `environmentAccountConnectionId` or
|
378
|
+
# `protonServiceRoleArn` parameter and value and omit the
|
379
|
+
# `provisioningRepository` parameter when you use standard
|
380
|
+
# provisioning.
|
344
381
|
# @return [String]
|
345
382
|
#
|
383
|
+
# @!attribute [rw] provisioning_repository
|
384
|
+
# The repository that you provide with pull request provisioning. If
|
385
|
+
# you provide this parameter, you must omit the
|
386
|
+
# `environmentAccountConnectionId` and `protonServiceRoleArn`
|
387
|
+
# parameters.
|
388
|
+
#
|
389
|
+
# Provisioning by pull request is currently in feature preview and is
|
390
|
+
# only usable with Terraform based Proton Templates. To learn more
|
391
|
+
# about [Amazon Web Services Feature Preview terms][1], see section 2
|
392
|
+
# on Beta and Previews.
|
393
|
+
#
|
394
|
+
#
|
395
|
+
#
|
396
|
+
# [1]: https://aws.amazon.com/service-terms
|
397
|
+
# @return [Types::RepositoryBranchInput]
|
398
|
+
#
|
346
399
|
# @!attribute [rw] spec
|
347
400
|
# A link to a YAML formatted spec file that provides inputs as defined
|
348
401
|
# in the environment template bundle schema file. For more
|
349
|
-
# information, see [Environments][1] in the *
|
402
|
+
# information, see [Environments][1] in the *Proton Administrator
|
350
403
|
# Guide*.
|
351
404
|
#
|
352
405
|
#
|
@@ -355,9 +408,9 @@ module Aws::Proton
|
|
355
408
|
# @return [String]
|
356
409
|
#
|
357
410
|
# @!attribute [rw] tags
|
358
|
-
# Create tags for your environment. For more information, see *
|
359
|
-
#
|
360
|
-
#
|
411
|
+
# Create tags for your environment. For more information, see *Proton
|
412
|
+
# resources and tagging* in the [Proton Administrator Guide][1] or
|
413
|
+
# [Proton User Guide][2].
|
361
414
|
#
|
362
415
|
#
|
363
416
|
#
|
@@ -366,16 +419,16 @@ module Aws::Proton
|
|
366
419
|
# @return [Array<Types::Tag>]
|
367
420
|
#
|
368
421
|
# @!attribute [rw] template_major_version
|
369
|
-
# The
|
422
|
+
# The major version of the environment template.
|
370
423
|
# @return [String]
|
371
424
|
#
|
372
425
|
# @!attribute [rw] template_minor_version
|
373
|
-
# The
|
426
|
+
# The minor version of the environment template.
|
374
427
|
# @return [String]
|
375
428
|
#
|
376
429
|
# @!attribute [rw] template_name
|
377
430
|
# The name of the environment template. For more information, see
|
378
|
-
# [Environment Templates][1] in the *
|
431
|
+
# [Environment Templates][1] in the *Proton Administrator Guide*.
|
379
432
|
#
|
380
433
|
#
|
381
434
|
#
|
@@ -389,6 +442,7 @@ module Aws::Proton
|
|
389
442
|
:environment_account_connection_id,
|
390
443
|
:name,
|
391
444
|
:proton_service_role_arn,
|
445
|
+
:provisioning_repository,
|
392
446
|
:spec,
|
393
447
|
:tags,
|
394
448
|
:template_major_version,
|
@@ -399,7 +453,7 @@ module Aws::Proton
|
|
399
453
|
end
|
400
454
|
|
401
455
|
# @!attribute [rw] environment
|
402
|
-
# The environment detail data that's returned by
|
456
|
+
# The environment detail data that's returned by Proton.
|
403
457
|
# @return [Types::Environment]
|
404
458
|
#
|
405
459
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateEnvironmentOutput AWS API Documentation
|
@@ -437,8 +491,7 @@ module Aws::Proton
|
|
437
491
|
# @return [String]
|
438
492
|
#
|
439
493
|
# @!attribute [rw] encryption_key
|
440
|
-
# A customer provided encryption key that
|
441
|
-
# data.
|
494
|
+
# A customer provided encryption key that Proton uses to encrypt data.
|
442
495
|
# @return [String]
|
443
496
|
#
|
444
497
|
# @!attribute [rw] name
|
@@ -452,8 +505,8 @@ module Aws::Proton
|
|
452
505
|
#
|
453
506
|
# @!attribute [rw] tags
|
454
507
|
# Create tags for your environment template. For more information, see
|
455
|
-
# *
|
456
|
-
# Guide][1] or [
|
508
|
+
# *Proton resources and tagging* in the [Proton Administrator
|
509
|
+
# Guide][1] or [Proton User Guide][2].
|
457
510
|
#
|
458
511
|
#
|
459
512
|
#
|
@@ -475,7 +528,7 @@ module Aws::Proton
|
|
475
528
|
end
|
476
529
|
|
477
530
|
# @!attribute [rw] environment_template
|
478
|
-
# The environment template detail data that's returned by
|
531
|
+
# The environment template detail data that's returned by Proton.
|
479
532
|
# @return [Types::EnvironmentTemplate]
|
480
533
|
#
|
481
534
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateEnvironmentTemplateOutput AWS API Documentation
|
@@ -509,9 +562,9 @@ module Aws::Proton
|
|
509
562
|
# }
|
510
563
|
#
|
511
564
|
# @!attribute [rw] client_token
|
512
|
-
# When included, if two
|
513
|
-
# client token,
|
514
|
-
#
|
565
|
+
# When included, if two identical requests are made with the same
|
566
|
+
# client token, Proton returns the environment template version that
|
567
|
+
# the first request created.
|
515
568
|
#
|
516
569
|
# **A suitable default value is auto-generated.** You should normally
|
517
570
|
# not need to pass this option.
|
@@ -523,10 +576,10 @@ module Aws::Proton
|
|
523
576
|
#
|
524
577
|
# @!attribute [rw] major_version
|
525
578
|
# To create a new minor version of the environment template, include a
|
526
|
-
# `
|
579
|
+
# `major Version`.
|
527
580
|
#
|
528
581
|
# To create a new major and minor version of the environment template,
|
529
|
-
# *exclude* `
|
582
|
+
# *exclude* `major Version`.
|
530
583
|
# @return [String]
|
531
584
|
#
|
532
585
|
# @!attribute [rw] source
|
@@ -556,7 +609,7 @@ module Aws::Proton
|
|
556
609
|
end
|
557
610
|
|
558
611
|
# @!attribute [rw] environment_template_version
|
559
|
-
# The environment template detail data that's returned by
|
612
|
+
# The environment template detail data that's returned by Proton.
|
560
613
|
# @return [Types::EnvironmentTemplateVersion]
|
561
614
|
#
|
562
615
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateEnvironmentTemplateVersionOutput AWS API Documentation
|
@@ -567,6 +620,62 @@ module Aws::Proton
|
|
567
620
|
include Aws::Structure
|
568
621
|
end
|
569
622
|
|
623
|
+
# @note When making an API call, you may pass CreateRepositoryInput
|
624
|
+
# data as a hash:
|
625
|
+
#
|
626
|
+
# {
|
627
|
+
# connection_arn: "Arn", # required
|
628
|
+
# encryption_key: "Arn",
|
629
|
+
# name: "RepositoryName", # required
|
630
|
+
# provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
|
631
|
+
# }
|
632
|
+
#
|
633
|
+
# @!attribute [rw] connection_arn
|
634
|
+
# The Amazon Resource Name (ARN) of your Amazon Web Services CodeStar
|
635
|
+
# connection. For more information, see [Setting up for Proton][1] in
|
636
|
+
# the *Proton Administrator Guide*.
|
637
|
+
#
|
638
|
+
#
|
639
|
+
#
|
640
|
+
# [1]: https://docs.aws.amazon.com/setting-up-for-service
|
641
|
+
# @return [String]
|
642
|
+
#
|
643
|
+
# @!attribute [rw] encryption_key
|
644
|
+
# The ARN of your customer Amazon Web Services Key Management Service
|
645
|
+
# (Amazon Web Services KMS) key.
|
646
|
+
# @return [String]
|
647
|
+
#
|
648
|
+
# @!attribute [rw] name
|
649
|
+
# The repository name, for example `myrepos/myrepo`.
|
650
|
+
# @return [String]
|
651
|
+
#
|
652
|
+
# @!attribute [rw] provider
|
653
|
+
# The repository provider.
|
654
|
+
# @return [String]
|
655
|
+
#
|
656
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateRepositoryInput AWS API Documentation
|
657
|
+
#
|
658
|
+
class CreateRepositoryInput < Struct.new(
|
659
|
+
:connection_arn,
|
660
|
+
:encryption_key,
|
661
|
+
:name,
|
662
|
+
:provider)
|
663
|
+
SENSITIVE = []
|
664
|
+
include Aws::Structure
|
665
|
+
end
|
666
|
+
|
667
|
+
# @!attribute [rw] repository
|
668
|
+
# The repository detail data that's returned by Proton.
|
669
|
+
# @return [Types::Repository]
|
670
|
+
#
|
671
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateRepositoryOutput AWS API Documentation
|
672
|
+
#
|
673
|
+
class CreateRepositoryOutput < Struct.new(
|
674
|
+
:repository)
|
675
|
+
SENSITIVE = []
|
676
|
+
include Aws::Structure
|
677
|
+
end
|
678
|
+
|
570
679
|
# @note When making an API call, you may pass CreateServiceInput
|
571
680
|
# data as a hash:
|
572
681
|
#
|
@@ -590,12 +699,12 @@ module Aws::Proton
|
|
590
699
|
#
|
591
700
|
# @!attribute [rw] branch_name
|
592
701
|
# The name of the code repository branch that holds the code that's
|
593
|
-
# deployed in
|
594
|
-
#
|
702
|
+
# deployed in Proton. *Don't* include this parameter if your service
|
703
|
+
# template *doesn't* include a service pipeline.
|
595
704
|
# @return [String]
|
596
705
|
#
|
597
706
|
# @!attribute [rw] description
|
598
|
-
# A description of the
|
707
|
+
# A description of the Proton service.
|
599
708
|
# @return [String]
|
600
709
|
#
|
601
710
|
# @!attribute [rw] name
|
@@ -604,10 +713,10 @@ module Aws::Proton
|
|
604
713
|
#
|
605
714
|
# @!attribute [rw] repository_connection_arn
|
606
715
|
# The Amazon Resource Name (ARN) of the repository connection. For
|
607
|
-
# more information, see [Set up repository connection][1] in the
|
608
|
-
# Proton Administrator Guide* and [Setting up with
|
609
|
-
#
|
610
|
-
#
|
716
|
+
# more information, see [Set up repository connection][1] in the
|
717
|
+
# *Proton Administrator Guide* and [Setting up with Proton][2] in the
|
718
|
+
# *Proton User Guide*. *Don't* include this parameter if your service
|
719
|
+
# template *doesn't* include a service pipeline.
|
611
720
|
#
|
612
721
|
#
|
613
722
|
#
|
@@ -625,8 +734,8 @@ module Aws::Proton
|
|
625
734
|
# template bundle schema file. The spec file is in YAML format. Don’t
|
626
735
|
# include pipeline inputs in the spec if your service template
|
627
736
|
# *doesn’t* include a service pipeline. For more information, see
|
628
|
-
# [Create a service][1] in the *
|
629
|
-
# [Create a service][2] in the *
|
737
|
+
# [Create a service][1] in the *Proton Administrator Guide* and
|
738
|
+
# [Create a service][2] in the *Proton User Guide*.
|
630
739
|
#
|
631
740
|
#
|
632
741
|
#
|
@@ -635,9 +744,9 @@ module Aws::Proton
|
|
635
744
|
# @return [String]
|
636
745
|
#
|
637
746
|
# @!attribute [rw] tags
|
638
|
-
# Create tags for your service. For more information, see *
|
639
|
-
# resources and tagging* in the [
|
640
|
-
# [
|
747
|
+
# Create tags for your service. For more information, see *Proton
|
748
|
+
# resources and tagging* in the [Proton Administrator Guide][1] or
|
749
|
+
# [Proton User Guide][2].
|
641
750
|
#
|
642
751
|
#
|
643
752
|
#
|
@@ -646,13 +755,13 @@ module Aws::Proton
|
|
646
755
|
# @return [Array<Types::Tag>]
|
647
756
|
#
|
648
757
|
# @!attribute [rw] template_major_version
|
649
|
-
# The
|
650
|
-
#
|
758
|
+
# The major version of the service template that was used to create
|
759
|
+
# the service.
|
651
760
|
# @return [String]
|
652
761
|
#
|
653
762
|
# @!attribute [rw] template_minor_version
|
654
|
-
# The
|
655
|
-
#
|
763
|
+
# The minor version of the service template that was used to create
|
764
|
+
# the service.
|
656
765
|
# @return [String]
|
657
766
|
#
|
658
767
|
# @!attribute [rw] template_name
|
@@ -677,7 +786,7 @@ module Aws::Proton
|
|
677
786
|
end
|
678
787
|
|
679
788
|
# @!attribute [rw] service
|
680
|
-
# The service detail data that's returned by
|
789
|
+
# The service detail data that's returned by Proton.
|
681
790
|
# @return [Types::Service]
|
682
791
|
#
|
683
792
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateServiceOutput AWS API Documentation
|
@@ -723,11 +832,11 @@ module Aws::Proton
|
|
723
832
|
# @return [String]
|
724
833
|
#
|
725
834
|
# @!attribute [rw] pipeline_provisioning
|
726
|
-
#
|
727
|
-
#
|
728
|
-
#
|
835
|
+
# Proton includes a service pipeline for your service by default. When
|
836
|
+
# included, this parameter indicates that an Proton service pipeline
|
837
|
+
# *won't* be included for your service. Once specified, this
|
729
838
|
# parameter *can't* be changed. For more information, see [Service
|
730
|
-
# template bundles][1] in the *
|
839
|
+
# template bundles][1] in the *Proton Administrator Guide*.
|
731
840
|
#
|
732
841
|
#
|
733
842
|
#
|
@@ -736,8 +845,8 @@ module Aws::Proton
|
|
736
845
|
#
|
737
846
|
# @!attribute [rw] tags
|
738
847
|
# Create tags for your service template. For more information, see
|
739
|
-
# *
|
740
|
-
# Guide][1] or [
|
848
|
+
# *Proton resources and tagging* in the [Proton Administrator
|
849
|
+
# Guide][1] or [Proton User Guide][2].
|
741
850
|
#
|
742
851
|
#
|
743
852
|
#
|
@@ -759,7 +868,7 @@ module Aws::Proton
|
|
759
868
|
end
|
760
869
|
|
761
870
|
# @!attribute [rw] service_template
|
762
|
-
# The service template detail data that's returned by
|
871
|
+
# The service template detail data that's returned by Proton.
|
763
872
|
# @return [Types::ServiceTemplate]
|
764
873
|
#
|
765
874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateServiceTemplateOutput AWS API Documentation
|
@@ -799,9 +908,9 @@ module Aws::Proton
|
|
799
908
|
# }
|
800
909
|
#
|
801
910
|
# @!attribute [rw] client_token
|
802
|
-
# When included, if two
|
803
|
-
# client token,
|
804
|
-
#
|
911
|
+
# When included, if two identical requests are made with the same
|
912
|
+
# client token, Proton returns the service template version that the
|
913
|
+
# first request created.
|
805
914
|
#
|
806
915
|
# **A suitable default value is auto-generated.** You should normally
|
807
916
|
# not need to pass this option.
|
@@ -818,10 +927,10 @@ module Aws::Proton
|
|
818
927
|
#
|
819
928
|
# @!attribute [rw] major_version
|
820
929
|
# To create a new minor version of the service template, include a
|
821
|
-
# `
|
930
|
+
# `major Version`.
|
822
931
|
#
|
823
932
|
# To create a new major and minor version of the service template,
|
824
|
-
# *exclude* `
|
933
|
+
# *exclude* `major Version`.
|
825
934
|
# @return [String]
|
826
935
|
#
|
827
936
|
# @!attribute [rw] source
|
@@ -853,7 +962,7 @@ module Aws::Proton
|
|
853
962
|
|
854
963
|
# @!attribute [rw] service_template_version
|
855
964
|
# The service template version summary of detail data that's returned
|
856
|
-
# by
|
965
|
+
# by Proton.
|
857
966
|
# @return [Types::ServiceTemplateVersion]
|
858
967
|
#
|
859
968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateServiceTemplateVersionOutput AWS API Documentation
|
@@ -864,6 +973,70 @@ module Aws::Proton
|
|
864
973
|
include Aws::Structure
|
865
974
|
end
|
866
975
|
|
976
|
+
# @note When making an API call, you may pass CreateTemplateSyncConfigInput
|
977
|
+
# data as a hash:
|
978
|
+
#
|
979
|
+
# {
|
980
|
+
# branch: "GitBranchName", # required
|
981
|
+
# repository_name: "RepositoryName", # required
|
982
|
+
# repository_provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
|
983
|
+
# subdirectory: "Subdirectory",
|
984
|
+
# template_name: "ResourceName", # required
|
985
|
+
# template_type: "ENVIRONMENT", # required, accepts ENVIRONMENT, SERVICE
|
986
|
+
# }
|
987
|
+
#
|
988
|
+
# @!attribute [rw] branch
|
989
|
+
# The branch of the registered repository for your template.
|
990
|
+
# @return [String]
|
991
|
+
#
|
992
|
+
# @!attribute [rw] repository_name
|
993
|
+
# The name of your repository, for example `myrepos/myrepo`.
|
994
|
+
# @return [String]
|
995
|
+
#
|
996
|
+
# @!attribute [rw] repository_provider
|
997
|
+
# The provider type for your repository.
|
998
|
+
# @return [String]
|
999
|
+
#
|
1000
|
+
# @!attribute [rw] subdirectory
|
1001
|
+
# A repository subdirectory path to your template bundle directory.
|
1002
|
+
# When included, Proton limits the template bundle search to this
|
1003
|
+
# repository directory.
|
1004
|
+
# @return [String]
|
1005
|
+
#
|
1006
|
+
# @!attribute [rw] template_name
|
1007
|
+
# The name of your registered template.
|
1008
|
+
# @return [String]
|
1009
|
+
#
|
1010
|
+
# @!attribute [rw] template_type
|
1011
|
+
# The type of the registered template.
|
1012
|
+
# @return [String]
|
1013
|
+
#
|
1014
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateTemplateSyncConfigInput AWS API Documentation
|
1015
|
+
#
|
1016
|
+
class CreateTemplateSyncConfigInput < Struct.new(
|
1017
|
+
:branch,
|
1018
|
+
:repository_name,
|
1019
|
+
:repository_provider,
|
1020
|
+
:subdirectory,
|
1021
|
+
:template_name,
|
1022
|
+
:template_type)
|
1023
|
+
SENSITIVE = []
|
1024
|
+
include Aws::Structure
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
# @!attribute [rw] template_sync_config
|
1028
|
+
# The template sync configuration detail data that's returned by
|
1029
|
+
# Proton.
|
1030
|
+
# @return [Types::TemplateSyncConfig]
|
1031
|
+
#
|
1032
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateTemplateSyncConfigOutput AWS API Documentation
|
1033
|
+
#
|
1034
|
+
class CreateTemplateSyncConfigOutput < Struct.new(
|
1035
|
+
:template_sync_config)
|
1036
|
+
SENSITIVE = []
|
1037
|
+
include Aws::Structure
|
1038
|
+
end
|
1039
|
+
|
867
1040
|
# @note When making an API call, you may pass DeleteEnvironmentAccountConnectionInput
|
868
1041
|
# data as a hash:
|
869
1042
|
#
|
@@ -885,7 +1058,7 @@ module Aws::Proton
|
|
885
1058
|
|
886
1059
|
# @!attribute [rw] environment_account_connection
|
887
1060
|
# The environment account connection detail data that's returned by
|
888
|
-
#
|
1061
|
+
# Proton.
|
889
1062
|
# @return [Types::EnvironmentAccountConnection]
|
890
1063
|
#
|
891
1064
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteEnvironmentAccountConnectionOutput AWS API Documentation
|
@@ -916,7 +1089,7 @@ module Aws::Proton
|
|
916
1089
|
end
|
917
1090
|
|
918
1091
|
# @!attribute [rw] environment
|
919
|
-
# The environment detail data that's returned by
|
1092
|
+
# The environment detail data that's returned by Proton.
|
920
1093
|
# @return [Types::Environment]
|
921
1094
|
#
|
922
1095
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteEnvironmentOutput AWS API Documentation
|
@@ -947,7 +1120,7 @@ module Aws::Proton
|
|
947
1120
|
end
|
948
1121
|
|
949
1122
|
# @!attribute [rw] environment_template
|
950
|
-
# The environment template detail data that's returned by
|
1123
|
+
# The environment template detail data that's returned by Proton.
|
951
1124
|
# @return [Types::EnvironmentTemplate]
|
952
1125
|
#
|
953
1126
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteEnvironmentTemplateOutput AWS API Documentation
|
@@ -990,7 +1163,7 @@ module Aws::Proton
|
|
990
1163
|
end
|
991
1164
|
|
992
1165
|
# @!attribute [rw] environment_template_version
|
993
|
-
# The environment template version detail data that's returned by
|
1166
|
+
# The environment template version detail data that's returned by
|
994
1167
|
# Proton.
|
995
1168
|
# @return [Types::EnvironmentTemplateVersion]
|
996
1169
|
#
|
@@ -1002,6 +1175,43 @@ module Aws::Proton
|
|
1002
1175
|
include Aws::Structure
|
1003
1176
|
end
|
1004
1177
|
|
1178
|
+
# @note When making an API call, you may pass DeleteRepositoryInput
|
1179
|
+
# data as a hash:
|
1180
|
+
#
|
1181
|
+
# {
|
1182
|
+
# name: "RepositoryName", # required
|
1183
|
+
# provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
|
1184
|
+
# }
|
1185
|
+
#
|
1186
|
+
# @!attribute [rw] name
|
1187
|
+
# The name of the repository.
|
1188
|
+
# @return [String]
|
1189
|
+
#
|
1190
|
+
# @!attribute [rw] provider
|
1191
|
+
# The repository provider.
|
1192
|
+
# @return [String]
|
1193
|
+
#
|
1194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteRepositoryInput AWS API Documentation
|
1195
|
+
#
|
1196
|
+
class DeleteRepositoryInput < Struct.new(
|
1197
|
+
:name,
|
1198
|
+
:provider)
|
1199
|
+
SENSITIVE = []
|
1200
|
+
include Aws::Structure
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
# @!attribute [rw] repository
|
1204
|
+
# The repository detail data that's returned by Proton.
|
1205
|
+
# @return [Types::Repository]
|
1206
|
+
#
|
1207
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteRepositoryOutput AWS API Documentation
|
1208
|
+
#
|
1209
|
+
class DeleteRepositoryOutput < Struct.new(
|
1210
|
+
:repository)
|
1211
|
+
SENSITIVE = []
|
1212
|
+
include Aws::Structure
|
1213
|
+
end
|
1214
|
+
|
1005
1215
|
# @note When making an API call, you may pass DeleteServiceInput
|
1006
1216
|
# data as a hash:
|
1007
1217
|
#
|
@@ -1022,7 +1232,7 @@ module Aws::Proton
|
|
1022
1232
|
end
|
1023
1233
|
|
1024
1234
|
# @!attribute [rw] service
|
1025
|
-
# The service detail data that's returned by
|
1235
|
+
# The service detail data that's returned by Proton.
|
1026
1236
|
# @return [Types::Service]
|
1027
1237
|
#
|
1028
1238
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteServiceOutput AWS API Documentation
|
@@ -1053,7 +1263,7 @@ module Aws::Proton
|
|
1053
1263
|
end
|
1054
1264
|
|
1055
1265
|
# @!attribute [rw] service_template
|
1056
|
-
# The service template detail data that's returned by
|
1266
|
+
# The service template detail data that's returned by Proton.
|
1057
1267
|
# @return [Types::ServiceTemplate]
|
1058
1268
|
#
|
1059
1269
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteServiceTemplateOutput AWS API Documentation
|
@@ -1096,8 +1306,7 @@ module Aws::Proton
|
|
1096
1306
|
end
|
1097
1307
|
|
1098
1308
|
# @!attribute [rw] service_template_version
|
1099
|
-
# The service template version detail data that's returned by
|
1100
|
-
# Proton.
|
1309
|
+
# The service template version detail data that's returned by Proton.
|
1101
1310
|
# @return [Types::ServiceTemplateVersion]
|
1102
1311
|
#
|
1103
1312
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteServiceTemplateVersionOutput AWS API Documentation
|
@@ -1108,8 +1317,46 @@ module Aws::Proton
|
|
1108
1317
|
include Aws::Structure
|
1109
1318
|
end
|
1110
1319
|
|
1111
|
-
#
|
1112
|
-
#
|
1320
|
+
# @note When making an API call, you may pass DeleteTemplateSyncConfigInput
|
1321
|
+
# data as a hash:
|
1322
|
+
#
|
1323
|
+
# {
|
1324
|
+
# template_name: "ResourceName", # required
|
1325
|
+
# template_type: "ENVIRONMENT", # required, accepts ENVIRONMENT, SERVICE
|
1326
|
+
# }
|
1327
|
+
#
|
1328
|
+
# @!attribute [rw] template_name
|
1329
|
+
# The template name.
|
1330
|
+
# @return [String]
|
1331
|
+
#
|
1332
|
+
# @!attribute [rw] template_type
|
1333
|
+
# The template type.
|
1334
|
+
# @return [String]
|
1335
|
+
#
|
1336
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteTemplateSyncConfigInput AWS API Documentation
|
1337
|
+
#
|
1338
|
+
class DeleteTemplateSyncConfigInput < Struct.new(
|
1339
|
+
:template_name,
|
1340
|
+
:template_type)
|
1341
|
+
SENSITIVE = []
|
1342
|
+
include Aws::Structure
|
1343
|
+
end
|
1344
|
+
|
1345
|
+
# @!attribute [rw] template_sync_config
|
1346
|
+
# The template sync configuration detail data that's returned by
|
1347
|
+
# Proton.
|
1348
|
+
# @return [Types::TemplateSyncConfig]
|
1349
|
+
#
|
1350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteTemplateSyncConfigOutput AWS API Documentation
|
1351
|
+
#
|
1352
|
+
class DeleteTemplateSyncConfigOutput < Struct.new(
|
1353
|
+
:template_sync_config)
|
1354
|
+
SENSITIVE = []
|
1355
|
+
include Aws::Structure
|
1356
|
+
end
|
1357
|
+
|
1358
|
+
# The environment detail data. An Proton environment is a set resources
|
1359
|
+
# shared across an Proton service.
|
1113
1360
|
#
|
1114
1361
|
# @!attribute [rw] arn
|
1115
1362
|
# The Amazon Resource Name (ARN) of the environment.
|
@@ -1154,8 +1401,8 @@ module Aws::Proton
|
|
1154
1401
|
# @return [String]
|
1155
1402
|
#
|
1156
1403
|
# @!attribute [rw] proton_service_role_arn
|
1157
|
-
# The Amazon Resource Name (ARN) of the
|
1158
|
-
# allows
|
1404
|
+
# The Amazon Resource Name (ARN) of the Proton service role that
|
1405
|
+
# allows Proton to make calls to other services on your behalf.
|
1159
1406
|
# @return [String]
|
1160
1407
|
#
|
1161
1408
|
# @!attribute [rw] provisioning
|
@@ -1163,6 +1410,19 @@ module Aws::Proton
|
|
1163
1410
|
# customer provisioned and managed infrastructure.
|
1164
1411
|
# @return [String]
|
1165
1412
|
#
|
1413
|
+
# @!attribute [rw] provisioning_repository
|
1414
|
+
# The repository that you provide with pull request provisioning.
|
1415
|
+
#
|
1416
|
+
# Provisioning by pull request is currently in feature preview and is
|
1417
|
+
# only usable with Terraform based Proton Templates. To learn more
|
1418
|
+
# about [Amazon Web Services Feature Preview terms][1], see section 2
|
1419
|
+
# on Beta and Previews.
|
1420
|
+
#
|
1421
|
+
#
|
1422
|
+
#
|
1423
|
+
# [1]: https://aws.amazon.com/service-terms
|
1424
|
+
# @return [Types::RepositoryBranch]
|
1425
|
+
#
|
1166
1426
|
# @!attribute [rw] spec
|
1167
1427
|
# The environment spec.
|
1168
1428
|
# @return [String]
|
@@ -1194,6 +1454,7 @@ module Aws::Proton
|
|
1194
1454
|
:name,
|
1195
1455
|
:proton_service_role_arn,
|
1196
1456
|
:provisioning,
|
1457
|
+
:provisioning_repository,
|
1197
1458
|
:spec,
|
1198
1459
|
:template_major_version,
|
1199
1460
|
:template_minor_version,
|
@@ -1365,8 +1626,8 @@ module Aws::Proton
|
|
1365
1626
|
# @return [String]
|
1366
1627
|
#
|
1367
1628
|
# @!attribute [rw] proton_service_role_arn
|
1368
|
-
# The Amazon Resource Name (ARN) of the
|
1369
|
-
# allows
|
1629
|
+
# The Amazon Resource Name (ARN) of the Proton service role that
|
1630
|
+
# allows Proton to make calls to other services on your behalf.
|
1370
1631
|
# @return [String]
|
1371
1632
|
#
|
1372
1633
|
# @!attribute [rw] provisioning
|
@@ -1375,11 +1636,11 @@ module Aws::Proton
|
|
1375
1636
|
# @return [String]
|
1376
1637
|
#
|
1377
1638
|
# @!attribute [rw] template_major_version
|
1378
|
-
# The
|
1639
|
+
# The major version of the environment template.
|
1379
1640
|
# @return [String]
|
1380
1641
|
#
|
1381
1642
|
# @!attribute [rw] template_minor_version
|
1382
|
-
# The
|
1643
|
+
# The minor version of the environment template.
|
1383
1644
|
# @return [String]
|
1384
1645
|
#
|
1385
1646
|
# @!attribute [rw] template_name
|
@@ -1524,7 +1785,7 @@ module Aws::Proton
|
|
1524
1785
|
# @return [String]
|
1525
1786
|
#
|
1526
1787
|
# @!attribute [rw] recommended_version
|
1527
|
-
# The
|
1788
|
+
# The recommended version of the environment template.
|
1528
1789
|
# @return [String]
|
1529
1790
|
#
|
1530
1791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/EnvironmentTemplateSummary AWS API Documentation
|
@@ -1563,16 +1824,16 @@ module Aws::Proton
|
|
1563
1824
|
# @return [Time]
|
1564
1825
|
#
|
1565
1826
|
# @!attribute [rw] major_version
|
1566
|
-
# The
|
1567
|
-
#
|
1827
|
+
# The latest major version that's associated with the version of an
|
1828
|
+
# environment template.
|
1568
1829
|
# @return [String]
|
1569
1830
|
#
|
1570
1831
|
# @!attribute [rw] minor_version
|
1571
|
-
# The
|
1832
|
+
# The minor version of an environment template.
|
1572
1833
|
# @return [String]
|
1573
1834
|
#
|
1574
1835
|
# @!attribute [rw] recommended_minor_version
|
1575
|
-
# The
|
1836
|
+
# The recommended minor version of the environment template.
|
1576
1837
|
# @return [String]
|
1577
1838
|
#
|
1578
1839
|
# @!attribute [rw] schema
|
@@ -1630,16 +1891,16 @@ module Aws::Proton
|
|
1630
1891
|
# @return [Time]
|
1631
1892
|
#
|
1632
1893
|
# @!attribute [rw] major_version
|
1633
|
-
# The
|
1634
|
-
#
|
1894
|
+
# The latest major version that's associated with the version of an
|
1895
|
+
# environment template.
|
1635
1896
|
# @return [String]
|
1636
1897
|
#
|
1637
1898
|
# @!attribute [rw] minor_version
|
1638
|
-
# The
|
1899
|
+
# The version of an environment template.
|
1639
1900
|
# @return [String]
|
1640
1901
|
#
|
1641
1902
|
# @!attribute [rw] recommended_minor_version
|
1642
|
-
# The
|
1903
|
+
# The recommended minor version of the environment template.
|
1643
1904
|
# @return [String]
|
1644
1905
|
#
|
1645
1906
|
# @!attribute [rw] status
|
@@ -1678,8 +1939,8 @@ module Aws::Proton
|
|
1678
1939
|
class GetAccountSettingsInput < Aws::EmptyStructure; end
|
1679
1940
|
|
1680
1941
|
# @!attribute [rw] account_settings
|
1681
|
-
# The
|
1682
|
-
#
|
1942
|
+
# The Proton pipeline service role detail data that's returned by
|
1943
|
+
# Proton.
|
1683
1944
|
# @return [Types::AccountSettings]
|
1684
1945
|
#
|
1685
1946
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetAccountSettingsOutput AWS API Documentation
|
@@ -1711,7 +1972,7 @@ module Aws::Proton
|
|
1711
1972
|
|
1712
1973
|
# @!attribute [rw] environment_account_connection
|
1713
1974
|
# The environment account connection detail data that's returned by
|
1714
|
-
#
|
1975
|
+
# Proton.
|
1715
1976
|
# @return [Types::EnvironmentAccountConnection]
|
1716
1977
|
#
|
1717
1978
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentAccountConnectionOutput AWS API Documentation
|
@@ -1743,7 +2004,7 @@ module Aws::Proton
|
|
1743
2004
|
end
|
1744
2005
|
|
1745
2006
|
# @!attribute [rw] environment
|
1746
|
-
# The environment detail data that's returned by
|
2007
|
+
# The environment detail data that's returned by Proton.
|
1747
2008
|
# @return [Types::Environment]
|
1748
2009
|
#
|
1749
2010
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentOutput AWS API Documentation
|
@@ -1775,7 +2036,7 @@ module Aws::Proton
|
|
1775
2036
|
end
|
1776
2037
|
|
1777
2038
|
# @!attribute [rw] environment_template
|
1778
|
-
# The environment template detail data that's returned by
|
2039
|
+
# The environment template detail data that's returned by Proton.
|
1779
2040
|
# @return [Types::EnvironmentTemplate]
|
1780
2041
|
#
|
1781
2042
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentTemplateOutput AWS API Documentation
|
@@ -1797,7 +2058,7 @@ module Aws::Proton
|
|
1797
2058
|
#
|
1798
2059
|
# @!attribute [rw] major_version
|
1799
2060
|
# To view environment template major version detail data, include
|
1800
|
-
# `
|
2061
|
+
# `major Version`.
|
1801
2062
|
# @return [String]
|
1802
2063
|
#
|
1803
2064
|
# @!attribute [rw] minor_version
|
@@ -1820,7 +2081,7 @@ module Aws::Proton
|
|
1820
2081
|
end
|
1821
2082
|
|
1822
2083
|
# @!attribute [rw] environment_template_version
|
1823
|
-
# The environment template version detail data that's returned by
|
2084
|
+
# The environment template version detail data that's returned by
|
1824
2085
|
# Proton.
|
1825
2086
|
# @return [Types::EnvironmentTemplateVersion]
|
1826
2087
|
#
|
@@ -1832,6 +2093,92 @@ module Aws::Proton
|
|
1832
2093
|
include Aws::Structure
|
1833
2094
|
end
|
1834
2095
|
|
2096
|
+
# @note When making an API call, you may pass GetRepositoryInput
|
2097
|
+
# data as a hash:
|
2098
|
+
#
|
2099
|
+
# {
|
2100
|
+
# name: "RepositoryName", # required
|
2101
|
+
# provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
|
2102
|
+
# }
|
2103
|
+
#
|
2104
|
+
# @!attribute [rw] name
|
2105
|
+
# The repository name, for example `myrepos/myrepo`.
|
2106
|
+
# @return [String]
|
2107
|
+
#
|
2108
|
+
# @!attribute [rw] provider
|
2109
|
+
# The repository provider.
|
2110
|
+
# @return [String]
|
2111
|
+
#
|
2112
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetRepositoryInput AWS API Documentation
|
2113
|
+
#
|
2114
|
+
class GetRepositoryInput < Struct.new(
|
2115
|
+
:name,
|
2116
|
+
:provider)
|
2117
|
+
SENSITIVE = []
|
2118
|
+
include Aws::Structure
|
2119
|
+
end
|
2120
|
+
|
2121
|
+
# @!attribute [rw] repository
|
2122
|
+
# The repository detail data that's returned by Proton.
|
2123
|
+
# @return [Types::Repository]
|
2124
|
+
#
|
2125
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetRepositoryOutput AWS API Documentation
|
2126
|
+
#
|
2127
|
+
class GetRepositoryOutput < Struct.new(
|
2128
|
+
:repository)
|
2129
|
+
SENSITIVE = []
|
2130
|
+
include Aws::Structure
|
2131
|
+
end
|
2132
|
+
|
2133
|
+
# @note When making an API call, you may pass GetRepositorySyncStatusInput
|
2134
|
+
# data as a hash:
|
2135
|
+
#
|
2136
|
+
# {
|
2137
|
+
# branch: "GitBranchName", # required
|
2138
|
+
# repository_name: "RepositoryName", # required
|
2139
|
+
# repository_provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
|
2140
|
+
# sync_type: "TEMPLATE_SYNC", # required, accepts TEMPLATE_SYNC
|
2141
|
+
# }
|
2142
|
+
#
|
2143
|
+
# @!attribute [rw] branch
|
2144
|
+
# The repository branch.
|
2145
|
+
# @return [String]
|
2146
|
+
#
|
2147
|
+
# @!attribute [rw] repository_name
|
2148
|
+
# The repository name.
|
2149
|
+
# @return [String]
|
2150
|
+
#
|
2151
|
+
# @!attribute [rw] repository_provider
|
2152
|
+
# The repository provider.
|
2153
|
+
# @return [String]
|
2154
|
+
#
|
2155
|
+
# @!attribute [rw] sync_type
|
2156
|
+
# The repository sync type.
|
2157
|
+
# @return [String]
|
2158
|
+
#
|
2159
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetRepositorySyncStatusInput AWS API Documentation
|
2160
|
+
#
|
2161
|
+
class GetRepositorySyncStatusInput < Struct.new(
|
2162
|
+
:branch,
|
2163
|
+
:repository_name,
|
2164
|
+
:repository_provider,
|
2165
|
+
:sync_type)
|
2166
|
+
SENSITIVE = []
|
2167
|
+
include Aws::Structure
|
2168
|
+
end
|
2169
|
+
|
2170
|
+
# @!attribute [rw] latest_sync
|
2171
|
+
# The repository sync status detail data that's returned by Proton.
|
2172
|
+
# @return [Types::RepositorySyncAttempt]
|
2173
|
+
#
|
2174
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetRepositorySyncStatusOutput AWS API Documentation
|
2175
|
+
#
|
2176
|
+
class GetRepositorySyncStatusOutput < Struct.new(
|
2177
|
+
:latest_sync)
|
2178
|
+
SENSITIVE = []
|
2179
|
+
include Aws::Structure
|
2180
|
+
end
|
2181
|
+
|
1835
2182
|
# @note When making an API call, you may pass GetServiceInput
|
1836
2183
|
# data as a hash:
|
1837
2184
|
#
|
@@ -1878,7 +2225,7 @@ module Aws::Proton
|
|
1878
2225
|
end
|
1879
2226
|
|
1880
2227
|
# @!attribute [rw] service_instance
|
1881
|
-
# The service instance detail data that's returned by
|
2228
|
+
# The service instance detail data that's returned by Proton.
|
1882
2229
|
# @return [Types::ServiceInstance]
|
1883
2230
|
#
|
1884
2231
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceInstanceOutput AWS API Documentation
|
@@ -1890,7 +2237,7 @@ module Aws::Proton
|
|
1890
2237
|
end
|
1891
2238
|
|
1892
2239
|
# @!attribute [rw] service
|
1893
|
-
# The service detail data that's returned by
|
2240
|
+
# The service detail data that's returned by Proton.
|
1894
2241
|
# @return [Types::Service]
|
1895
2242
|
#
|
1896
2243
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceOutput AWS API Documentation
|
@@ -1922,7 +2269,7 @@ module Aws::Proton
|
|
1922
2269
|
end
|
1923
2270
|
|
1924
2271
|
# @!attribute [rw] service_template
|
1925
|
-
# The service template detail data that's returned by
|
2272
|
+
# The service template detail data that's returned by Proton.
|
1926
2273
|
# @return [Types::ServiceTemplate]
|
1927
2274
|
#
|
1928
2275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceTemplateOutput AWS API Documentation
|
@@ -1943,8 +2290,8 @@ module Aws::Proton
|
|
1943
2290
|
# }
|
1944
2291
|
#
|
1945
2292
|
# @!attribute [rw] major_version
|
1946
|
-
# To view service template major version detail data, include
|
1947
|
-
#
|
2293
|
+
# To view service template major version detail data, include `major
|
2294
|
+
# Version`.
|
1948
2295
|
# @return [String]
|
1949
2296
|
#
|
1950
2297
|
# @!attribute [rw] minor_version
|
@@ -1967,8 +2314,7 @@ module Aws::Proton
|
|
1967
2314
|
end
|
1968
2315
|
|
1969
2316
|
# @!attribute [rw] service_template_version
|
1970
|
-
# The service template version detail data that's returned by
|
1971
|
-
# Proton.
|
2317
|
+
# The service template version detail data that's returned by Proton.
|
1972
2318
|
# @return [Types::ServiceTemplateVersion]
|
1973
2319
|
#
|
1974
2320
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceTemplateVersionOutput AWS API Documentation
|
@@ -1979,6 +2325,97 @@ module Aws::Proton
|
|
1979
2325
|
include Aws::Structure
|
1980
2326
|
end
|
1981
2327
|
|
2328
|
+
# @note When making an API call, you may pass GetTemplateSyncConfigInput
|
2329
|
+
# data as a hash:
|
2330
|
+
#
|
2331
|
+
# {
|
2332
|
+
# template_name: "ResourceName", # required
|
2333
|
+
# template_type: "ENVIRONMENT", # required, accepts ENVIRONMENT, SERVICE
|
2334
|
+
# }
|
2335
|
+
#
|
2336
|
+
# @!attribute [rw] template_name
|
2337
|
+
# The template name.
|
2338
|
+
# @return [String]
|
2339
|
+
#
|
2340
|
+
# @!attribute [rw] template_type
|
2341
|
+
# The template type.
|
2342
|
+
# @return [String]
|
2343
|
+
#
|
2344
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetTemplateSyncConfigInput AWS API Documentation
|
2345
|
+
#
|
2346
|
+
class GetTemplateSyncConfigInput < Struct.new(
|
2347
|
+
:template_name,
|
2348
|
+
:template_type)
|
2349
|
+
SENSITIVE = []
|
2350
|
+
include Aws::Structure
|
2351
|
+
end
|
2352
|
+
|
2353
|
+
# @!attribute [rw] template_sync_config
|
2354
|
+
# The template sync configuration detail data that's returned by
|
2355
|
+
# Proton.
|
2356
|
+
# @return [Types::TemplateSyncConfig]
|
2357
|
+
#
|
2358
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetTemplateSyncConfigOutput AWS API Documentation
|
2359
|
+
#
|
2360
|
+
class GetTemplateSyncConfigOutput < Struct.new(
|
2361
|
+
:template_sync_config)
|
2362
|
+
SENSITIVE = []
|
2363
|
+
include Aws::Structure
|
2364
|
+
end
|
2365
|
+
|
2366
|
+
# @note When making an API call, you may pass GetTemplateSyncStatusInput
|
2367
|
+
# data as a hash:
|
2368
|
+
#
|
2369
|
+
# {
|
2370
|
+
# template_name: "ResourceName", # required
|
2371
|
+
# template_type: "ENVIRONMENT", # required, accepts ENVIRONMENT, SERVICE
|
2372
|
+
# template_version: "TemplateVersionPart", # required
|
2373
|
+
# }
|
2374
|
+
#
|
2375
|
+
# @!attribute [rw] template_name
|
2376
|
+
# The template name.
|
2377
|
+
# @return [String]
|
2378
|
+
#
|
2379
|
+
# @!attribute [rw] template_type
|
2380
|
+
# The template type.
|
2381
|
+
# @return [String]
|
2382
|
+
#
|
2383
|
+
# @!attribute [rw] template_version
|
2384
|
+
# The template version.
|
2385
|
+
# @return [String]
|
2386
|
+
#
|
2387
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetTemplateSyncStatusInput AWS API Documentation
|
2388
|
+
#
|
2389
|
+
class GetTemplateSyncStatusInput < Struct.new(
|
2390
|
+
:template_name,
|
2391
|
+
:template_type,
|
2392
|
+
:template_version)
|
2393
|
+
SENSITIVE = []
|
2394
|
+
include Aws::Structure
|
2395
|
+
end
|
2396
|
+
|
2397
|
+
# @!attribute [rw] desired_state
|
2398
|
+
# The template sync desired state that's returned by Proton.
|
2399
|
+
# @return [Types::Revision]
|
2400
|
+
#
|
2401
|
+
# @!attribute [rw] latest_successful_sync
|
2402
|
+
# The details of the last successful sync that's returned by Proton.
|
2403
|
+
# @return [Types::ResourceSyncAttempt]
|
2404
|
+
#
|
2405
|
+
# @!attribute [rw] latest_sync
|
2406
|
+
# The details of the last sync that's returned by Proton.
|
2407
|
+
# @return [Types::ResourceSyncAttempt]
|
2408
|
+
#
|
2409
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetTemplateSyncStatusOutput AWS API Documentation
|
2410
|
+
#
|
2411
|
+
class GetTemplateSyncStatusOutput < Struct.new(
|
2412
|
+
:desired_state,
|
2413
|
+
:latest_successful_sync,
|
2414
|
+
:latest_sync)
|
2415
|
+
SENSITIVE = []
|
2416
|
+
include Aws::Structure
|
2417
|
+
end
|
2418
|
+
|
1982
2419
|
# The request failed to register with the service.
|
1983
2420
|
#
|
1984
2421
|
# @!attribute [rw] message
|
@@ -2042,7 +2479,7 @@ module Aws::Proton
|
|
2042
2479
|
|
2043
2480
|
# @!attribute [rw] environment_account_connections
|
2044
2481
|
# An array of environment account connections with details that's
|
2045
|
-
# returned by
|
2482
|
+
# returned by Proton.
|
2046
2483
|
# @return [Array<Types::EnvironmentAccountConnectionSummary>]
|
2047
2484
|
#
|
2048
2485
|
# @!attribute [rw] next_token
|
@@ -2060,22 +2497,115 @@ module Aws::Proton
|
|
2060
2497
|
include Aws::Structure
|
2061
2498
|
end
|
2062
2499
|
|
2063
|
-
# @note When making an API call, you may pass
|
2500
|
+
# @note When making an API call, you may pass ListEnvironmentOutputsInput
|
2064
2501
|
# data as a hash:
|
2065
2502
|
#
|
2066
2503
|
# {
|
2067
|
-
#
|
2068
|
-
#
|
2504
|
+
# environment_name: "ResourceName", # required
|
2505
|
+
# next_token: "EmptyNextToken",
|
2506
|
+
# }
|
2507
|
+
#
|
2508
|
+
# @!attribute [rw] environment_name
|
2509
|
+
# The environment name.
|
2510
|
+
# @return [String]
|
2511
|
+
#
|
2512
|
+
# @!attribute [rw] next_token
|
2513
|
+
# A token to indicate the location of the next environment output in
|
2514
|
+
# the array of environment outputs, after the list of environment
|
2515
|
+
# outputs that was previously requested.
|
2516
|
+
# @return [String]
|
2517
|
+
#
|
2518
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListEnvironmentOutputsInput AWS API Documentation
|
2519
|
+
#
|
2520
|
+
class ListEnvironmentOutputsInput < Struct.new(
|
2521
|
+
:environment_name,
|
2522
|
+
:next_token)
|
2523
|
+
SENSITIVE = []
|
2524
|
+
include Aws::Structure
|
2525
|
+
end
|
2526
|
+
|
2527
|
+
# @!attribute [rw] next_token
|
2528
|
+
# A token to indicate the location of the next environment output in
|
2529
|
+
# the array of environment outputs, after the current requested list
|
2530
|
+
# of environment outputs.
|
2531
|
+
# @return [String]
|
2532
|
+
#
|
2533
|
+
# @!attribute [rw] outputs
|
2534
|
+
# An array of environment outputs with detail data.
|
2535
|
+
# @return [Array<Types::Output>]
|
2536
|
+
#
|
2537
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListEnvironmentOutputsOutput AWS API Documentation
|
2538
|
+
#
|
2539
|
+
class ListEnvironmentOutputsOutput < Struct.new(
|
2540
|
+
:next_token,
|
2541
|
+
:outputs)
|
2542
|
+
SENSITIVE = []
|
2543
|
+
include Aws::Structure
|
2544
|
+
end
|
2545
|
+
|
2546
|
+
# @note When making an API call, you may pass ListEnvironmentProvisionedResourcesInput
|
2547
|
+
# data as a hash:
|
2548
|
+
#
|
2549
|
+
# {
|
2550
|
+
# environment_name: "ResourceName", # required
|
2551
|
+
# next_token: "EmptyNextToken",
|
2552
|
+
# }
|
2553
|
+
#
|
2554
|
+
# @!attribute [rw] environment_name
|
2555
|
+
# The environment name.
|
2556
|
+
# @return [String]
|
2557
|
+
#
|
2558
|
+
# @!attribute [rw] next_token
|
2559
|
+
# A token to indicate the location of the next environment provisioned
|
2560
|
+
# resource in the array of environment provisioned resources, after
|
2561
|
+
# the list of environment provisioned resources that was previously
|
2562
|
+
# requested.
|
2563
|
+
# @return [String]
|
2564
|
+
#
|
2565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListEnvironmentProvisionedResourcesInput AWS API Documentation
|
2566
|
+
#
|
2567
|
+
class ListEnvironmentProvisionedResourcesInput < Struct.new(
|
2568
|
+
:environment_name,
|
2569
|
+
:next_token)
|
2570
|
+
SENSITIVE = []
|
2571
|
+
include Aws::Structure
|
2572
|
+
end
|
2573
|
+
|
2574
|
+
# @!attribute [rw] next_token
|
2575
|
+
# A token to indicate the location of the next environment provisioned
|
2576
|
+
# resource in the array of provisioned resources, after the current
|
2577
|
+
# requested list of environment provisioned resources.
|
2578
|
+
# @return [String]
|
2579
|
+
#
|
2580
|
+
# @!attribute [rw] provisioned_resources
|
2581
|
+
# An array of environment provisioned resources.
|
2582
|
+
# @return [Array<Types::ProvisionedResource>]
|
2583
|
+
#
|
2584
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListEnvironmentProvisionedResourcesOutput AWS API Documentation
|
2585
|
+
#
|
2586
|
+
class ListEnvironmentProvisionedResourcesOutput < Struct.new(
|
2587
|
+
:next_token,
|
2588
|
+
:provisioned_resources)
|
2589
|
+
SENSITIVE = []
|
2590
|
+
include Aws::Structure
|
2591
|
+
end
|
2592
|
+
|
2593
|
+
# @note When making an API call, you may pass ListEnvironmentTemplateVersionsInput
|
2594
|
+
# data as a hash:
|
2595
|
+
#
|
2596
|
+
# {
|
2597
|
+
# major_version: "TemplateVersionPart",
|
2598
|
+
# max_results: 1,
|
2069
2599
|
# next_token: "NextToken",
|
2070
2600
|
# template_name: "ResourceName", # required
|
2071
2601
|
# }
|
2072
2602
|
#
|
2073
2603
|
# @!attribute [rw] major_version
|
2074
2604
|
# To view a list of minor of versions under a major version of an
|
2075
|
-
# environment template, include `
|
2605
|
+
# environment template, include `major Version`.
|
2076
2606
|
#
|
2077
2607
|
# To view a list of major versions of an environment template,
|
2078
|
-
# *exclude* `
|
2608
|
+
# *exclude* `major Version`.
|
2079
2609
|
# @return [String]
|
2080
2610
|
#
|
2081
2611
|
# @!attribute [rw] max_results
|
@@ -2229,6 +2759,211 @@ module Aws::Proton
|
|
2229
2759
|
include Aws::Structure
|
2230
2760
|
end
|
2231
2761
|
|
2762
|
+
# @note When making an API call, you may pass ListRepositoriesInput
|
2763
|
+
# data as a hash:
|
2764
|
+
#
|
2765
|
+
# {
|
2766
|
+
# max_results: 1,
|
2767
|
+
# next_token: "NextToken",
|
2768
|
+
# }
|
2769
|
+
#
|
2770
|
+
# @!attribute [rw] max_results
|
2771
|
+
# The maximum number of repositories to list.
|
2772
|
+
# @return [Integer]
|
2773
|
+
#
|
2774
|
+
# @!attribute [rw] next_token
|
2775
|
+
# A token to indicate the location of the next repository in the array
|
2776
|
+
# of repositories, after the list of repositories previously
|
2777
|
+
# requested.
|
2778
|
+
# @return [String]
|
2779
|
+
#
|
2780
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListRepositoriesInput AWS API Documentation
|
2781
|
+
#
|
2782
|
+
class ListRepositoriesInput < Struct.new(
|
2783
|
+
:max_results,
|
2784
|
+
:next_token)
|
2785
|
+
SENSITIVE = []
|
2786
|
+
include Aws::Structure
|
2787
|
+
end
|
2788
|
+
|
2789
|
+
# @!attribute [rw] next_token
|
2790
|
+
# A token to indicate the location of the next repository in the array
|
2791
|
+
# of repositories, after the current requested list of repositories.
|
2792
|
+
# @return [String]
|
2793
|
+
#
|
2794
|
+
# @!attribute [rw] repositories
|
2795
|
+
# An array of repositories.
|
2796
|
+
# @return [Array<Types::RepositorySummary>]
|
2797
|
+
#
|
2798
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListRepositoriesOutput AWS API Documentation
|
2799
|
+
#
|
2800
|
+
class ListRepositoriesOutput < Struct.new(
|
2801
|
+
:next_token,
|
2802
|
+
:repositories)
|
2803
|
+
SENSITIVE = []
|
2804
|
+
include Aws::Structure
|
2805
|
+
end
|
2806
|
+
|
2807
|
+
# @note When making an API call, you may pass ListRepositorySyncDefinitionsInput
|
2808
|
+
# data as a hash:
|
2809
|
+
#
|
2810
|
+
# {
|
2811
|
+
# next_token: "EmptyNextToken",
|
2812
|
+
# repository_name: "RepositoryName", # required
|
2813
|
+
# repository_provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
|
2814
|
+
# sync_type: "TEMPLATE_SYNC", # required, accepts TEMPLATE_SYNC
|
2815
|
+
# }
|
2816
|
+
#
|
2817
|
+
# @!attribute [rw] next_token
|
2818
|
+
# A token to indicate the location of the next repository sync
|
2819
|
+
# definition in the array of repository sync definitions, after the
|
2820
|
+
# list of repository sync definitions previously requested.
|
2821
|
+
# @return [String]
|
2822
|
+
#
|
2823
|
+
# @!attribute [rw] repository_name
|
2824
|
+
# The repository name.
|
2825
|
+
# @return [String]
|
2826
|
+
#
|
2827
|
+
# @!attribute [rw] repository_provider
|
2828
|
+
# The repository provider.
|
2829
|
+
# @return [String]
|
2830
|
+
#
|
2831
|
+
# @!attribute [rw] sync_type
|
2832
|
+
# The sync type. The only supported value is `TEMPLATE_SYNC`.
|
2833
|
+
# @return [String]
|
2834
|
+
#
|
2835
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListRepositorySyncDefinitionsInput AWS API Documentation
|
2836
|
+
#
|
2837
|
+
class ListRepositorySyncDefinitionsInput < Struct.new(
|
2838
|
+
:next_token,
|
2839
|
+
:repository_name,
|
2840
|
+
:repository_provider,
|
2841
|
+
:sync_type)
|
2842
|
+
SENSITIVE = []
|
2843
|
+
include Aws::Structure
|
2844
|
+
end
|
2845
|
+
|
2846
|
+
# @!attribute [rw] next_token
|
2847
|
+
# A token to indicate the location of the next repository sync
|
2848
|
+
# definition in the array of repository sync definitions, after the
|
2849
|
+
# current requested list of repository sync definitions.
|
2850
|
+
# @return [String]
|
2851
|
+
#
|
2852
|
+
# @!attribute [rw] sync_definitions
|
2853
|
+
# An array of repository sync definitions.
|
2854
|
+
# @return [Array<Types::RepositorySyncDefinition>]
|
2855
|
+
#
|
2856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListRepositorySyncDefinitionsOutput AWS API Documentation
|
2857
|
+
#
|
2858
|
+
class ListRepositorySyncDefinitionsOutput < Struct.new(
|
2859
|
+
:next_token,
|
2860
|
+
:sync_definitions)
|
2861
|
+
SENSITIVE = []
|
2862
|
+
include Aws::Structure
|
2863
|
+
end
|
2864
|
+
|
2865
|
+
# @note When making an API call, you may pass ListServiceInstanceOutputsInput
|
2866
|
+
# data as a hash:
|
2867
|
+
#
|
2868
|
+
# {
|
2869
|
+
# next_token: "EmptyNextToken",
|
2870
|
+
# service_instance_name: "ResourceName", # required
|
2871
|
+
# service_name: "ResourceName", # required
|
2872
|
+
# }
|
2873
|
+
#
|
2874
|
+
# @!attribute [rw] next_token
|
2875
|
+
# A token to indicate the location of the next output in the array of
|
2876
|
+
# outputs, after the list of outputs that was previously requested.
|
2877
|
+
# @return [String]
|
2878
|
+
#
|
2879
|
+
# @!attribute [rw] service_instance_name
|
2880
|
+
# The service instance name.
|
2881
|
+
# @return [String]
|
2882
|
+
#
|
2883
|
+
# @!attribute [rw] service_name
|
2884
|
+
# The service name.
|
2885
|
+
# @return [String]
|
2886
|
+
#
|
2887
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstanceOutputsInput AWS API Documentation
|
2888
|
+
#
|
2889
|
+
class ListServiceInstanceOutputsInput < Struct.new(
|
2890
|
+
:next_token,
|
2891
|
+
:service_instance_name,
|
2892
|
+
:service_name)
|
2893
|
+
SENSITIVE = []
|
2894
|
+
include Aws::Structure
|
2895
|
+
end
|
2896
|
+
|
2897
|
+
# @!attribute [rw] next_token
|
2898
|
+
# A token to indicate the location of the next output in the array of
|
2899
|
+
# outputs, after the current requested list of outputs.
|
2900
|
+
# @return [String]
|
2901
|
+
#
|
2902
|
+
# @!attribute [rw] outputs
|
2903
|
+
# An array of service instance infrastructure as code outputs.
|
2904
|
+
# @return [Array<Types::Output>]
|
2905
|
+
#
|
2906
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstanceOutputsOutput AWS API Documentation
|
2907
|
+
#
|
2908
|
+
class ListServiceInstanceOutputsOutput < Struct.new(
|
2909
|
+
:next_token,
|
2910
|
+
:outputs)
|
2911
|
+
SENSITIVE = []
|
2912
|
+
include Aws::Structure
|
2913
|
+
end
|
2914
|
+
|
2915
|
+
# @note When making an API call, you may pass ListServiceInstanceProvisionedResourcesInput
|
2916
|
+
# data as a hash:
|
2917
|
+
#
|
2918
|
+
# {
|
2919
|
+
# next_token: "EmptyNextToken",
|
2920
|
+
# service_instance_name: "ResourceName", # required
|
2921
|
+
# service_name: "ResourceName", # required
|
2922
|
+
# }
|
2923
|
+
#
|
2924
|
+
# @!attribute [rw] next_token
|
2925
|
+
# A token to indicate the location of the next provisioned resource in
|
2926
|
+
# the array of provisioned resources, after the list of provisioned
|
2927
|
+
# resources that was previously requested.
|
2928
|
+
# @return [String]
|
2929
|
+
#
|
2930
|
+
# @!attribute [rw] service_instance_name
|
2931
|
+
# The service instance name.
|
2932
|
+
# @return [String]
|
2933
|
+
#
|
2934
|
+
# @!attribute [rw] service_name
|
2935
|
+
# The service name.
|
2936
|
+
# @return [String]
|
2937
|
+
#
|
2938
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstanceProvisionedResourcesInput AWS API Documentation
|
2939
|
+
#
|
2940
|
+
class ListServiceInstanceProvisionedResourcesInput < Struct.new(
|
2941
|
+
:next_token,
|
2942
|
+
:service_instance_name,
|
2943
|
+
:service_name)
|
2944
|
+
SENSITIVE = []
|
2945
|
+
include Aws::Structure
|
2946
|
+
end
|
2947
|
+
|
2948
|
+
# @!attribute [rw] next_token
|
2949
|
+
# A token to indicate the location of the next provisioned resource in
|
2950
|
+
# the array of provisioned resources, after the current requested list
|
2951
|
+
# of provisioned resources.
|
2952
|
+
# @return [String]
|
2953
|
+
#
|
2954
|
+
# @!attribute [rw] provisioned_resources
|
2955
|
+
# An array of provisioned resources for a service instance.
|
2956
|
+
# @return [Array<Types::ProvisionedResource>]
|
2957
|
+
#
|
2958
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstanceProvisionedResourcesOutput AWS API Documentation
|
2959
|
+
#
|
2960
|
+
class ListServiceInstanceProvisionedResourcesOutput < Struct.new(
|
2961
|
+
:next_token,
|
2962
|
+
:provisioned_resources)
|
2963
|
+
SENSITIVE = []
|
2964
|
+
include Aws::Structure
|
2965
|
+
end
|
2966
|
+
|
2232
2967
|
# @note When making an API call, you may pass ListServiceInstancesInput
|
2233
2968
|
# data as a hash:
|
2234
2969
|
#
|
@@ -2281,6 +3016,96 @@ module Aws::Proton
|
|
2281
3016
|
include Aws::Structure
|
2282
3017
|
end
|
2283
3018
|
|
3019
|
+
# @note When making an API call, you may pass ListServicePipelineOutputsInput
|
3020
|
+
# data as a hash:
|
3021
|
+
#
|
3022
|
+
# {
|
3023
|
+
# next_token: "EmptyNextToken",
|
3024
|
+
# service_name: "ResourceName", # required
|
3025
|
+
# }
|
3026
|
+
#
|
3027
|
+
# @!attribute [rw] next_token
|
3028
|
+
# A token to indicate the location of the next output in the array of
|
3029
|
+
# outputs, after the list of outputs that was previously requested.
|
3030
|
+
# @return [String]
|
3031
|
+
#
|
3032
|
+
# @!attribute [rw] service_name
|
3033
|
+
# The service name.
|
3034
|
+
# @return [String]
|
3035
|
+
#
|
3036
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicePipelineOutputsInput AWS API Documentation
|
3037
|
+
#
|
3038
|
+
class ListServicePipelineOutputsInput < Struct.new(
|
3039
|
+
:next_token,
|
3040
|
+
:service_name)
|
3041
|
+
SENSITIVE = []
|
3042
|
+
include Aws::Structure
|
3043
|
+
end
|
3044
|
+
|
3045
|
+
# @!attribute [rw] next_token
|
3046
|
+
# A token to indicate the location of the next output in the array of
|
3047
|
+
# outputs, after the current requested list of outputs.
|
3048
|
+
# @return [String]
|
3049
|
+
#
|
3050
|
+
# @!attribute [rw] outputs
|
3051
|
+
# An array of outputs.
|
3052
|
+
# @return [Array<Types::Output>]
|
3053
|
+
#
|
3054
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicePipelineOutputsOutput AWS API Documentation
|
3055
|
+
#
|
3056
|
+
class ListServicePipelineOutputsOutput < Struct.new(
|
3057
|
+
:next_token,
|
3058
|
+
:outputs)
|
3059
|
+
SENSITIVE = []
|
3060
|
+
include Aws::Structure
|
3061
|
+
end
|
3062
|
+
|
3063
|
+
# @note When making an API call, you may pass ListServicePipelineProvisionedResourcesInput
|
3064
|
+
# data as a hash:
|
3065
|
+
#
|
3066
|
+
# {
|
3067
|
+
# next_token: "EmptyNextToken",
|
3068
|
+
# service_name: "ResourceName", # required
|
3069
|
+
# }
|
3070
|
+
#
|
3071
|
+
# @!attribute [rw] next_token
|
3072
|
+
# A token to indicate the location of the next provisioned resource in
|
3073
|
+
# the array of provisioned resources, after the list of provisioned
|
3074
|
+
# resources that was previously requested.
|
3075
|
+
# @return [String]
|
3076
|
+
#
|
3077
|
+
# @!attribute [rw] service_name
|
3078
|
+
# The service name.
|
3079
|
+
# @return [String]
|
3080
|
+
#
|
3081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicePipelineProvisionedResourcesInput AWS API Documentation
|
3082
|
+
#
|
3083
|
+
class ListServicePipelineProvisionedResourcesInput < Struct.new(
|
3084
|
+
:next_token,
|
3085
|
+
:service_name)
|
3086
|
+
SENSITIVE = []
|
3087
|
+
include Aws::Structure
|
3088
|
+
end
|
3089
|
+
|
3090
|
+
# @!attribute [rw] next_token
|
3091
|
+
# A token to indicate the location of the next provisioned resource in
|
3092
|
+
# the array of provisioned resources, after the current requested list
|
3093
|
+
# of provisioned resources.
|
3094
|
+
# @return [String]
|
3095
|
+
#
|
3096
|
+
# @!attribute [rw] provisioned_resources
|
3097
|
+
# An array of provisioned resources for a service and pipeline.
|
3098
|
+
# @return [Array<Types::ProvisionedResource>]
|
3099
|
+
#
|
3100
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicePipelineProvisionedResourcesOutput AWS API Documentation
|
3101
|
+
#
|
3102
|
+
class ListServicePipelineProvisionedResourcesOutput < Struct.new(
|
3103
|
+
:next_token,
|
3104
|
+
:provisioned_resources)
|
3105
|
+
SENSITIVE = []
|
3106
|
+
include Aws::Structure
|
3107
|
+
end
|
3108
|
+
|
2284
3109
|
# @note When making an API call, you may pass ListServiceTemplateVersionsInput
|
2285
3110
|
# data as a hash:
|
2286
3111
|
#
|
@@ -2293,10 +3118,10 @@ module Aws::Proton
|
|
2293
3118
|
#
|
2294
3119
|
# @!attribute [rw] major_version
|
2295
3120
|
# To view a list of minor of versions under a major version of a
|
2296
|
-
# service template, include `
|
3121
|
+
# service template, include `major Version`.
|
2297
3122
|
#
|
2298
3123
|
# To view a list of major versions of a service template, *exclude*
|
2299
|
-
# `
|
3124
|
+
# `major Version`.
|
2300
3125
|
# @return [String]
|
2301
3126
|
#
|
2302
3127
|
# @!attribute [rw] max_results
|
@@ -2328,207 +3153,647 @@ module Aws::Proton
|
|
2328
3153
|
# @!attribute [rw] next_token
|
2329
3154
|
# A token to indicate the location of the next major or minor version
|
2330
3155
|
# in the array of major or minor versions of a service template, after
|
2331
|
-
# the list of major or minor versions
|
3156
|
+
# the current requested list of service major or minor versions.
|
3157
|
+
# @return [String]
|
3158
|
+
#
|
3159
|
+
# @!attribute [rw] template_versions
|
3160
|
+
# An array of major or minor versions of a service template with
|
3161
|
+
# detail data.
|
3162
|
+
# @return [Array<Types::ServiceTemplateVersionSummary>]
|
3163
|
+
#
|
3164
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceTemplateVersionsOutput AWS API Documentation
|
3165
|
+
#
|
3166
|
+
class ListServiceTemplateVersionsOutput < Struct.new(
|
3167
|
+
:next_token,
|
3168
|
+
:template_versions)
|
3169
|
+
SENSITIVE = []
|
3170
|
+
include Aws::Structure
|
3171
|
+
end
|
3172
|
+
|
3173
|
+
# @note When making an API call, you may pass ListServiceTemplatesInput
|
3174
|
+
# data as a hash:
|
3175
|
+
#
|
3176
|
+
# {
|
3177
|
+
# max_results: 1,
|
3178
|
+
# next_token: "NextToken",
|
3179
|
+
# }
|
3180
|
+
#
|
3181
|
+
# @!attribute [rw] max_results
|
3182
|
+
# The maximum number of service templates to list.
|
3183
|
+
# @return [Integer]
|
3184
|
+
#
|
3185
|
+
# @!attribute [rw] next_token
|
3186
|
+
# A token to indicate the location of the next service template in the
|
3187
|
+
# array of service templates, after the list of service templates
|
3188
|
+
# previously requested.
|
3189
|
+
# @return [String]
|
3190
|
+
#
|
3191
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceTemplatesInput AWS API Documentation
|
3192
|
+
#
|
3193
|
+
class ListServiceTemplatesInput < Struct.new(
|
3194
|
+
:max_results,
|
3195
|
+
:next_token)
|
3196
|
+
SENSITIVE = []
|
3197
|
+
include Aws::Structure
|
3198
|
+
end
|
3199
|
+
|
3200
|
+
# @!attribute [rw] next_token
|
3201
|
+
# A token to indicate the location of the next service template in the
|
3202
|
+
# array of service templates, after the current requested list of
|
3203
|
+
# service templates.
|
3204
|
+
# @return [String]
|
3205
|
+
#
|
3206
|
+
# @!attribute [rw] templates
|
3207
|
+
# An array of service templates with detail data.
|
3208
|
+
# @return [Array<Types::ServiceTemplateSummary>]
|
3209
|
+
#
|
3210
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceTemplatesOutput AWS API Documentation
|
3211
|
+
#
|
3212
|
+
class ListServiceTemplatesOutput < Struct.new(
|
3213
|
+
:next_token,
|
3214
|
+
:templates)
|
3215
|
+
SENSITIVE = []
|
3216
|
+
include Aws::Structure
|
3217
|
+
end
|
3218
|
+
|
3219
|
+
# @note When making an API call, you may pass ListServicesInput
|
3220
|
+
# data as a hash:
|
3221
|
+
#
|
3222
|
+
# {
|
3223
|
+
# max_results: 1,
|
3224
|
+
# next_token: "NextToken",
|
3225
|
+
# }
|
3226
|
+
#
|
3227
|
+
# @!attribute [rw] max_results
|
3228
|
+
# The maximum number of services to list.
|
3229
|
+
# @return [Integer]
|
3230
|
+
#
|
3231
|
+
# @!attribute [rw] next_token
|
3232
|
+
# A token to indicate the location of the next service in the array of
|
3233
|
+
# services, after the list of services that was previously requested.
|
3234
|
+
# @return [String]
|
3235
|
+
#
|
3236
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicesInput AWS API Documentation
|
3237
|
+
#
|
3238
|
+
class ListServicesInput < Struct.new(
|
3239
|
+
:max_results,
|
3240
|
+
:next_token)
|
3241
|
+
SENSITIVE = []
|
3242
|
+
include Aws::Structure
|
3243
|
+
end
|
3244
|
+
|
3245
|
+
# @!attribute [rw] next_token
|
3246
|
+
# A token to indicate the location of the next service in the array of
|
3247
|
+
# services, after the current requested list of services.
|
3248
|
+
# @return [String]
|
3249
|
+
#
|
3250
|
+
# @!attribute [rw] services
|
3251
|
+
# An array of services with summaries of detail data.
|
3252
|
+
# @return [Array<Types::ServiceSummary>]
|
3253
|
+
#
|
3254
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicesOutput AWS API Documentation
|
3255
|
+
#
|
3256
|
+
class ListServicesOutput < Struct.new(
|
3257
|
+
:next_token,
|
3258
|
+
:services)
|
3259
|
+
SENSITIVE = []
|
3260
|
+
include Aws::Structure
|
3261
|
+
end
|
3262
|
+
|
3263
|
+
# @note When making an API call, you may pass ListTagsForResourceInput
|
3264
|
+
# data as a hash:
|
3265
|
+
#
|
3266
|
+
# {
|
3267
|
+
# max_results: 1,
|
3268
|
+
# next_token: "String",
|
3269
|
+
# resource_arn: "Arn", # required
|
3270
|
+
# }
|
3271
|
+
#
|
3272
|
+
# @!attribute [rw] max_results
|
3273
|
+
# The maximum number of tags to list.
|
3274
|
+
# @return [Integer]
|
3275
|
+
#
|
3276
|
+
# @!attribute [rw] next_token
|
3277
|
+
# A token to indicate the location of the next resource tag in the
|
3278
|
+
# array of resource tags, after the list of resource tags that was
|
3279
|
+
# previously requested.
|
3280
|
+
# @return [String]
|
3281
|
+
#
|
3282
|
+
# @!attribute [rw] resource_arn
|
3283
|
+
# The Amazon Resource Name (ARN) of the resource for the listed tags.
|
3284
|
+
# @return [String]
|
3285
|
+
#
|
3286
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListTagsForResourceInput AWS API Documentation
|
3287
|
+
#
|
3288
|
+
class ListTagsForResourceInput < Struct.new(
|
3289
|
+
:max_results,
|
3290
|
+
:next_token,
|
3291
|
+
:resource_arn)
|
3292
|
+
SENSITIVE = []
|
3293
|
+
include Aws::Structure
|
3294
|
+
end
|
3295
|
+
|
3296
|
+
# @!attribute [rw] next_token
|
3297
|
+
# A token to indicate the location of the next resource tag in the
|
3298
|
+
# array of resource tags, after the current requested list of resource
|
3299
|
+
# tags.
|
3300
|
+
# @return [String]
|
3301
|
+
#
|
3302
|
+
# @!attribute [rw] tags
|
3303
|
+
# An array of resource tags with detail data.
|
3304
|
+
# @return [Array<Types::Tag>]
|
3305
|
+
#
|
3306
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListTagsForResourceOutput AWS API Documentation
|
3307
|
+
#
|
3308
|
+
class ListTagsForResourceOutput < Struct.new(
|
3309
|
+
:next_token,
|
3310
|
+
:tags)
|
3311
|
+
SENSITIVE = []
|
3312
|
+
include Aws::Structure
|
3313
|
+
end
|
3314
|
+
|
3315
|
+
# @note When making an API call, you may pass NotifyResourceDeploymentStatusChangeInput
|
3316
|
+
# data as a hash:
|
3317
|
+
#
|
3318
|
+
# {
|
3319
|
+
# deployment_id: "DeploymentId",
|
3320
|
+
# outputs: [
|
3321
|
+
# {
|
3322
|
+
# key: "OutputKey",
|
3323
|
+
# value_string: "OutputValueString",
|
3324
|
+
# },
|
3325
|
+
# ],
|
3326
|
+
# resource_arn: "Arn", # required
|
3327
|
+
# status: "IN_PROGRESS", # required, accepts IN_PROGRESS, FAILED, SUCCEEDED
|
3328
|
+
# status_message: "SyntheticNotifyResourceDeploymentStatusChangeInputString",
|
3329
|
+
# }
|
3330
|
+
#
|
3331
|
+
# @!attribute [rw] deployment_id
|
3332
|
+
# The deployment ID for your provisioned resource.
|
3333
|
+
# @return [String]
|
3334
|
+
#
|
3335
|
+
# @!attribute [rw] outputs
|
3336
|
+
# The provisioned resource state change detail data that's returned
|
3337
|
+
# by Proton.
|
3338
|
+
# @return [Array<Types::Output>]
|
3339
|
+
#
|
3340
|
+
# @!attribute [rw] resource_arn
|
3341
|
+
# The provisioned resource Amazon Resource Name (ARN).
|
3342
|
+
# @return [String]
|
3343
|
+
#
|
3344
|
+
# @!attribute [rw] status
|
3345
|
+
# The status of your provisioned resource.
|
3346
|
+
# @return [String]
|
3347
|
+
#
|
3348
|
+
# @!attribute [rw] status_message
|
3349
|
+
# The deployment status message for your provisioned resource.
|
3350
|
+
# @return [String]
|
3351
|
+
#
|
3352
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/NotifyResourceDeploymentStatusChangeInput AWS API Documentation
|
3353
|
+
#
|
3354
|
+
class NotifyResourceDeploymentStatusChangeInput < Struct.new(
|
3355
|
+
:deployment_id,
|
3356
|
+
:outputs,
|
3357
|
+
:resource_arn,
|
3358
|
+
:status,
|
3359
|
+
:status_message)
|
3360
|
+
SENSITIVE = [:status_message]
|
3361
|
+
include Aws::Structure
|
3362
|
+
end
|
3363
|
+
|
3364
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/NotifyResourceDeploymentStatusChangeOutput AWS API Documentation
|
3365
|
+
#
|
3366
|
+
class NotifyResourceDeploymentStatusChangeOutput < Aws::EmptyStructure; end
|
3367
|
+
|
3368
|
+
# An infrastructure as code defined resource output.
|
3369
|
+
#
|
3370
|
+
# @note When making an API call, you may pass Output
|
3371
|
+
# data as a hash:
|
3372
|
+
#
|
3373
|
+
# {
|
3374
|
+
# key: "OutputKey",
|
3375
|
+
# value_string: "OutputValueString",
|
3376
|
+
# }
|
3377
|
+
#
|
3378
|
+
# @!attribute [rw] key
|
3379
|
+
# The output key.
|
3380
|
+
# @return [String]
|
3381
|
+
#
|
3382
|
+
# @!attribute [rw] value_string
|
3383
|
+
# The output value.
|
3384
|
+
# @return [String]
|
3385
|
+
#
|
3386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/Output AWS API Documentation
|
3387
|
+
#
|
3388
|
+
class Output < Struct.new(
|
3389
|
+
:key,
|
3390
|
+
:value_string)
|
3391
|
+
SENSITIVE = []
|
3392
|
+
include Aws::Structure
|
3393
|
+
end
|
3394
|
+
|
3395
|
+
# Detail data for a provisioned resource.
|
3396
|
+
#
|
3397
|
+
# @!attribute [rw] identifier
|
3398
|
+
# The provisioned resource identifier.
|
3399
|
+
# @return [String]
|
3400
|
+
#
|
3401
|
+
# @!attribute [rw] name
|
3402
|
+
# The provisioned resource name.
|
3403
|
+
# @return [String]
|
3404
|
+
#
|
3405
|
+
# @!attribute [rw] provisioning_engine
|
3406
|
+
# The resource provisioning engine.
|
3407
|
+
#
|
3408
|
+
# Provisioning by pull request is currently in feature preview and is
|
3409
|
+
# only usable with Terraform based Proton Templates. To learn more
|
3410
|
+
# about [Amazon Web Services Feature Preview terms][1], see section 2
|
3411
|
+
# on Beta and Previews.
|
3412
|
+
#
|
3413
|
+
#
|
3414
|
+
#
|
3415
|
+
# [1]: https://aws.amazon.com/service-terms
|
3416
|
+
# @return [String]
|
3417
|
+
#
|
3418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ProvisionedResource AWS API Documentation
|
3419
|
+
#
|
3420
|
+
class ProvisionedResource < Struct.new(
|
3421
|
+
:identifier,
|
3422
|
+
:name,
|
3423
|
+
:provisioning_engine)
|
3424
|
+
SENSITIVE = []
|
3425
|
+
include Aws::Structure
|
3426
|
+
end
|
3427
|
+
|
3428
|
+
# @note When making an API call, you may pass RejectEnvironmentAccountConnectionInput
|
3429
|
+
# data as a hash:
|
3430
|
+
#
|
3431
|
+
# {
|
3432
|
+
# id: "EnvironmentAccountConnectionId", # required
|
3433
|
+
# }
|
3434
|
+
#
|
3435
|
+
# @!attribute [rw] id
|
3436
|
+
# The ID of the environment account connection to reject.
|
3437
|
+
# @return [String]
|
3438
|
+
#
|
3439
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/RejectEnvironmentAccountConnectionInput AWS API Documentation
|
3440
|
+
#
|
3441
|
+
class RejectEnvironmentAccountConnectionInput < Struct.new(
|
3442
|
+
:id)
|
3443
|
+
SENSITIVE = []
|
3444
|
+
include Aws::Structure
|
3445
|
+
end
|
3446
|
+
|
3447
|
+
# @!attribute [rw] environment_account_connection
|
3448
|
+
# The environment connection account detail data that's returned by
|
3449
|
+
# Proton.
|
3450
|
+
# @return [Types::EnvironmentAccountConnection]
|
3451
|
+
#
|
3452
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/RejectEnvironmentAccountConnectionOutput AWS API Documentation
|
3453
|
+
#
|
3454
|
+
class RejectEnvironmentAccountConnectionOutput < Struct.new(
|
3455
|
+
:environment_account_connection)
|
3456
|
+
SENSITIVE = []
|
3457
|
+
include Aws::Structure
|
3458
|
+
end
|
3459
|
+
|
3460
|
+
# Detail date for a repository that has been registered with Proton.
|
3461
|
+
#
|
3462
|
+
# @!attribute [rw] arn
|
3463
|
+
# The repository Amazon Resource Name (ARN).
|
3464
|
+
# @return [String]
|
3465
|
+
#
|
3466
|
+
# @!attribute [rw] connection_arn
|
3467
|
+
# The repository Amazon Web Services CodeStar connection that connects
|
3468
|
+
# Proton to your repository.
|
3469
|
+
# @return [String]
|
3470
|
+
#
|
3471
|
+
# @!attribute [rw] encryption_key
|
3472
|
+
# Your customer Amazon Web Services KMS encryption key.
|
3473
|
+
# @return [String]
|
3474
|
+
#
|
3475
|
+
# @!attribute [rw] name
|
3476
|
+
# The repository name.
|
3477
|
+
# @return [String]
|
3478
|
+
#
|
3479
|
+
# @!attribute [rw] provider
|
3480
|
+
# The repository provider.
|
3481
|
+
# @return [String]
|
3482
|
+
#
|
3483
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/Repository AWS API Documentation
|
3484
|
+
#
|
3485
|
+
class Repository < Struct.new(
|
3486
|
+
:arn,
|
3487
|
+
:connection_arn,
|
3488
|
+
:encryption_key,
|
3489
|
+
:name,
|
3490
|
+
:provider)
|
3491
|
+
SENSITIVE = []
|
3492
|
+
include Aws::Structure
|
3493
|
+
end
|
3494
|
+
|
3495
|
+
# Detail data for a repository branch.
|
3496
|
+
#
|
3497
|
+
# Provisioning by pull request is currently in feature preview and is
|
3498
|
+
# only usable with Terraform based Proton Templates. To learn more about
|
3499
|
+
# [Amazon Web Services Feature Preview terms][1], see section 2 on Beta
|
3500
|
+
# and Previews.
|
3501
|
+
#
|
3502
|
+
#
|
3503
|
+
#
|
3504
|
+
# [1]: https://aws.amazon.com/service-terms
|
3505
|
+
#
|
3506
|
+
# @!attribute [rw] arn
|
3507
|
+
# The Amazon Resource Name (ARN) of the repository branch.
|
3508
|
+
# @return [String]
|
3509
|
+
#
|
3510
|
+
# @!attribute [rw] branch
|
3511
|
+
# The repository branch.
|
3512
|
+
# @return [String]
|
3513
|
+
#
|
3514
|
+
# @!attribute [rw] name
|
3515
|
+
# The repository name.
|
2332
3516
|
# @return [String]
|
2333
3517
|
#
|
2334
|
-
# @!attribute [rw]
|
2335
|
-
#
|
2336
|
-
#
|
2337
|
-
# @return [Array<Types::ServiceTemplateVersionSummary>]
|
3518
|
+
# @!attribute [rw] provider
|
3519
|
+
# The repository provider.
|
3520
|
+
# @return [String]
|
2338
3521
|
#
|
2339
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/
|
3522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/RepositoryBranch AWS API Documentation
|
2340
3523
|
#
|
2341
|
-
class
|
2342
|
-
:
|
2343
|
-
:
|
3524
|
+
class RepositoryBranch < Struct.new(
|
3525
|
+
:arn,
|
3526
|
+
:branch,
|
3527
|
+
:name,
|
3528
|
+
:provider)
|
2344
3529
|
SENSITIVE = []
|
2345
3530
|
include Aws::Structure
|
2346
3531
|
end
|
2347
3532
|
|
2348
|
-
#
|
3533
|
+
# Detail input data for a repository branch.
|
3534
|
+
#
|
3535
|
+
# Provisioning by pull request is currently in feature preview and is
|
3536
|
+
# only usable with Terraform based Proton Templates. To learn more about
|
3537
|
+
# [Amazon Web Services Feature Preview terms][1], see section 2 on Beta
|
3538
|
+
# and Previews.
|
3539
|
+
#
|
3540
|
+
#
|
3541
|
+
#
|
3542
|
+
# [1]: https://aws.amazon.com/service-terms
|
3543
|
+
#
|
3544
|
+
# @note When making an API call, you may pass RepositoryBranchInput
|
2349
3545
|
# data as a hash:
|
2350
3546
|
#
|
2351
3547
|
# {
|
2352
|
-
#
|
2353
|
-
#
|
3548
|
+
# branch: "GitBranchName", # required
|
3549
|
+
# name: "RepositoryName", # required
|
3550
|
+
# provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
|
2354
3551
|
# }
|
2355
3552
|
#
|
2356
|
-
# @!attribute [rw]
|
2357
|
-
# The
|
2358
|
-
# @return [
|
3553
|
+
# @!attribute [rw] branch
|
3554
|
+
# The repository branch.
|
3555
|
+
# @return [String]
|
2359
3556
|
#
|
2360
|
-
# @!attribute [rw]
|
2361
|
-
#
|
2362
|
-
# array of service templates, after the list of service templates
|
2363
|
-
# previously requested.
|
3557
|
+
# @!attribute [rw] name
|
3558
|
+
# The repository name.
|
2364
3559
|
# @return [String]
|
2365
3560
|
#
|
2366
|
-
#
|
3561
|
+
# @!attribute [rw] provider
|
3562
|
+
# The repository provider.
|
3563
|
+
# @return [String]
|
2367
3564
|
#
|
2368
|
-
|
2369
|
-
|
2370
|
-
|
3565
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/RepositoryBranchInput AWS API Documentation
|
3566
|
+
#
|
3567
|
+
class RepositoryBranchInput < Struct.new(
|
3568
|
+
:branch,
|
3569
|
+
:name,
|
3570
|
+
:provider)
|
2371
3571
|
SENSITIVE = []
|
2372
3572
|
include Aws::Structure
|
2373
3573
|
end
|
2374
3574
|
|
2375
|
-
#
|
2376
|
-
#
|
2377
|
-
#
|
2378
|
-
#
|
3575
|
+
# A summary of detail data for a registered repository.
|
3576
|
+
#
|
3577
|
+
# @!attribute [rw] arn
|
3578
|
+
# The Amazon Resource Name (ARN) for a repository.
|
2379
3579
|
# @return [String]
|
2380
3580
|
#
|
2381
|
-
# @!attribute [rw]
|
2382
|
-
#
|
2383
|
-
# @return [
|
3581
|
+
# @!attribute [rw] name
|
3582
|
+
# The repository name.
|
3583
|
+
# @return [String]
|
2384
3584
|
#
|
2385
|
-
#
|
3585
|
+
# @!attribute [rw] provider
|
3586
|
+
# The repository provider.
|
3587
|
+
# @return [String]
|
2386
3588
|
#
|
2387
|
-
|
2388
|
-
|
2389
|
-
|
3589
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/RepositorySummary AWS API Documentation
|
3590
|
+
#
|
3591
|
+
class RepositorySummary < Struct.new(
|
3592
|
+
:arn,
|
3593
|
+
:name,
|
3594
|
+
:provider)
|
2390
3595
|
SENSITIVE = []
|
2391
3596
|
include Aws::Structure
|
2392
3597
|
end
|
2393
3598
|
|
2394
|
-
#
|
2395
|
-
#
|
3599
|
+
# Detail data for a repository sync attempt activated by a push to a
|
3600
|
+
# repository.
|
2396
3601
|
#
|
2397
|
-
#
|
2398
|
-
#
|
2399
|
-
#
|
2400
|
-
# }
|
3602
|
+
# @!attribute [rw] events
|
3603
|
+
# Detail data for sync attempt events.
|
3604
|
+
# @return [Array<Types::RepositorySyncEvent>]
|
2401
3605
|
#
|
2402
|
-
# @!attribute [rw]
|
2403
|
-
# The
|
2404
|
-
# @return [
|
3606
|
+
# @!attribute [rw] started_at
|
3607
|
+
# The time when the sync attempt started.
|
3608
|
+
# @return [Time]
|
2405
3609
|
#
|
2406
|
-
# @!attribute [rw]
|
2407
|
-
#
|
2408
|
-
# services, after the list of services that was previously requested.
|
3610
|
+
# @!attribute [rw] status
|
3611
|
+
# The sync attempt status.
|
2409
3612
|
# @return [String]
|
2410
3613
|
#
|
2411
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/
|
3614
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/RepositorySyncAttempt AWS API Documentation
|
2412
3615
|
#
|
2413
|
-
class
|
2414
|
-
:
|
2415
|
-
:
|
3616
|
+
class RepositorySyncAttempt < Struct.new(
|
3617
|
+
:events,
|
3618
|
+
:started_at,
|
3619
|
+
:status)
|
2416
3620
|
SENSITIVE = []
|
2417
3621
|
include Aws::Structure
|
2418
3622
|
end
|
2419
3623
|
|
2420
|
-
#
|
2421
|
-
#
|
2422
|
-
#
|
3624
|
+
# The repository sync definition.
|
3625
|
+
#
|
3626
|
+
# @!attribute [rw] branch
|
3627
|
+
# The repository branch.
|
2423
3628
|
# @return [String]
|
2424
3629
|
#
|
2425
|
-
# @!attribute [rw]
|
2426
|
-
#
|
2427
|
-
# @return [
|
3630
|
+
# @!attribute [rw] directory
|
3631
|
+
# The directory in the repository.
|
3632
|
+
# @return [String]
|
2428
3633
|
#
|
2429
|
-
#
|
3634
|
+
# @!attribute [rw] parent
|
3635
|
+
# The resource that is synced from.
|
3636
|
+
# @return [String]
|
2430
3637
|
#
|
2431
|
-
|
2432
|
-
|
2433
|
-
|
3638
|
+
# @!attribute [rw] target
|
3639
|
+
# The resource that is synced to.
|
3640
|
+
# @return [String]
|
3641
|
+
#
|
3642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/RepositorySyncDefinition AWS API Documentation
|
3643
|
+
#
|
3644
|
+
class RepositorySyncDefinition < Struct.new(
|
3645
|
+
:branch,
|
3646
|
+
:directory,
|
3647
|
+
:parent,
|
3648
|
+
:target)
|
2434
3649
|
SENSITIVE = []
|
2435
3650
|
include Aws::Structure
|
2436
3651
|
end
|
2437
3652
|
|
2438
|
-
#
|
2439
|
-
# data as a hash:
|
2440
|
-
#
|
2441
|
-
# {
|
2442
|
-
# max_results: 1,
|
2443
|
-
# next_token: "String",
|
2444
|
-
# resource_arn: "Arn", # required
|
2445
|
-
# }
|
3653
|
+
# Repository sync event detail data for a sync attempt.
|
2446
3654
|
#
|
2447
|
-
# @!attribute [rw]
|
2448
|
-
#
|
2449
|
-
# @return [
|
3655
|
+
# @!attribute [rw] event
|
3656
|
+
# Event detail for a repository sync attempt.
|
3657
|
+
# @return [String]
|
2450
3658
|
#
|
2451
|
-
# @!attribute [rw]
|
2452
|
-
#
|
2453
|
-
# array of resource tags, after the list of resource tags that was
|
2454
|
-
# previously requested.
|
3659
|
+
# @!attribute [rw] external_id
|
3660
|
+
# The external ID of the sync event.
|
2455
3661
|
# @return [String]
|
2456
3662
|
#
|
2457
|
-
# @!attribute [rw]
|
2458
|
-
# The
|
3663
|
+
# @!attribute [rw] time
|
3664
|
+
# The time that the sync event occurred.
|
3665
|
+
# @return [Time]
|
3666
|
+
#
|
3667
|
+
# @!attribute [rw] type
|
3668
|
+
# The type of event.
|
2459
3669
|
# @return [String]
|
2460
3670
|
#
|
2461
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/
|
3671
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/RepositorySyncEvent AWS API Documentation
|
2462
3672
|
#
|
2463
|
-
class
|
2464
|
-
:
|
2465
|
-
:
|
2466
|
-
:
|
3673
|
+
class RepositorySyncEvent < Struct.new(
|
3674
|
+
:event,
|
3675
|
+
:external_id,
|
3676
|
+
:time,
|
3677
|
+
:type)
|
2467
3678
|
SENSITIVE = []
|
2468
3679
|
include Aws::Structure
|
2469
3680
|
end
|
2470
3681
|
|
2471
|
-
#
|
2472
|
-
# A token to indicate the location of the next resource tag in the
|
2473
|
-
# array of resource tags, after the current requested list of resource
|
2474
|
-
# tags.
|
2475
|
-
# @return [String]
|
3682
|
+
# The requested resource *wasn't* found.
|
2476
3683
|
#
|
2477
|
-
# @!attribute [rw]
|
2478
|
-
#
|
2479
|
-
# @return [Array<Types::Tag>]
|
3684
|
+
# @!attribute [rw] message
|
3685
|
+
# @return [String]
|
2480
3686
|
#
|
2481
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/
|
3687
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ResourceNotFoundException AWS API Documentation
|
2482
3688
|
#
|
2483
|
-
class
|
2484
|
-
:
|
2485
|
-
:
|
2486
|
-
SENSITIVE = []
|
3689
|
+
class ResourceNotFoundException < Struct.new(
|
3690
|
+
:message)
|
3691
|
+
SENSITIVE = [:message]
|
2487
3692
|
include Aws::Structure
|
2488
3693
|
end
|
2489
3694
|
|
2490
|
-
#
|
2491
|
-
#
|
3695
|
+
# Detail data for a resource sync attempt activated by a push to a
|
3696
|
+
# repository.
|
2492
3697
|
#
|
2493
|
-
#
|
2494
|
-
#
|
2495
|
-
#
|
3698
|
+
# @!attribute [rw] events
|
3699
|
+
# An array of events with detail data.
|
3700
|
+
# @return [Array<Types::ResourceSyncEvent>]
|
2496
3701
|
#
|
2497
|
-
# @!attribute [rw]
|
2498
|
-
#
|
3702
|
+
# @!attribute [rw] initial_revision
|
3703
|
+
# Detail data for the initial repository commit, path and push.
|
3704
|
+
# @return [Types::Revision]
|
3705
|
+
#
|
3706
|
+
# @!attribute [rw] started_at
|
3707
|
+
# The time when the sync attempt started.
|
3708
|
+
# @return [Time]
|
3709
|
+
#
|
3710
|
+
# @!attribute [rw] status
|
3711
|
+
# The status of the sync attempt.
|
2499
3712
|
# @return [String]
|
2500
3713
|
#
|
2501
|
-
#
|
3714
|
+
# @!attribute [rw] target
|
3715
|
+
# The resource that is synced to.
|
3716
|
+
# @return [String]
|
2502
3717
|
#
|
2503
|
-
|
2504
|
-
|
3718
|
+
# @!attribute [rw] target_revision
|
3719
|
+
# Detail data for the target revision.
|
3720
|
+
# @return [Types::Revision]
|
3721
|
+
#
|
3722
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ResourceSyncAttempt AWS API Documentation
|
3723
|
+
#
|
3724
|
+
class ResourceSyncAttempt < Struct.new(
|
3725
|
+
:events,
|
3726
|
+
:initial_revision,
|
3727
|
+
:started_at,
|
3728
|
+
:status,
|
3729
|
+
:target,
|
3730
|
+
:target_revision)
|
2505
3731
|
SENSITIVE = []
|
2506
3732
|
include Aws::Structure
|
2507
3733
|
end
|
2508
3734
|
|
2509
|
-
#
|
2510
|
-
# The environment connection account detail data that's returned by
|
2511
|
-
# AWS Proton.
|
2512
|
-
# @return [Types::EnvironmentAccountConnection]
|
3735
|
+
# Detail data for a resource sync event.
|
2513
3736
|
#
|
2514
|
-
#
|
3737
|
+
# @!attribute [rw] event
|
3738
|
+
# A resource sync event.
|
3739
|
+
# @return [String]
|
2515
3740
|
#
|
2516
|
-
|
2517
|
-
|
3741
|
+
# @!attribute [rw] external_id
|
3742
|
+
# The external ID for the event.
|
3743
|
+
# @return [String]
|
3744
|
+
#
|
3745
|
+
# @!attribute [rw] time
|
3746
|
+
# The time when the event occurred.
|
3747
|
+
# @return [Time]
|
3748
|
+
#
|
3749
|
+
# @!attribute [rw] type
|
3750
|
+
# The type of event.
|
3751
|
+
# @return [String]
|
3752
|
+
#
|
3753
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ResourceSyncEvent AWS API Documentation
|
3754
|
+
#
|
3755
|
+
class ResourceSyncEvent < Struct.new(
|
3756
|
+
:event,
|
3757
|
+
:external_id,
|
3758
|
+
:time,
|
3759
|
+
:type)
|
2518
3760
|
SENSITIVE = []
|
2519
3761
|
include Aws::Structure
|
2520
3762
|
end
|
2521
3763
|
|
2522
|
-
#
|
3764
|
+
# Revision detail data for a commit and push that activates a sync
|
3765
|
+
# attempt
|
2523
3766
|
#
|
2524
|
-
# @!attribute [rw]
|
3767
|
+
# @!attribute [rw] branch
|
3768
|
+
# The repository branch.
|
2525
3769
|
# @return [String]
|
2526
3770
|
#
|
2527
|
-
#
|
3771
|
+
# @!attribute [rw] directory
|
3772
|
+
# The repository directory changed by a commit and push that activated
|
3773
|
+
# the sync attempt.
|
3774
|
+
# @return [String]
|
2528
3775
|
#
|
2529
|
-
|
2530
|
-
|
2531
|
-
|
3776
|
+
# @!attribute [rw] repository_name
|
3777
|
+
# The repository name.
|
3778
|
+
# @return [String]
|
3779
|
+
#
|
3780
|
+
# @!attribute [rw] repository_provider
|
3781
|
+
# The repository provider.
|
3782
|
+
# @return [String]
|
3783
|
+
#
|
3784
|
+
# @!attribute [rw] sha
|
3785
|
+
# The secure hash algorithm (SHA) hash for the revision.
|
3786
|
+
# @return [String]
|
3787
|
+
#
|
3788
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/Revision AWS API Documentation
|
3789
|
+
#
|
3790
|
+
class Revision < Struct.new(
|
3791
|
+
:branch,
|
3792
|
+
:directory,
|
3793
|
+
:repository_name,
|
3794
|
+
:repository_provider,
|
3795
|
+
:sha)
|
3796
|
+
SENSITIVE = []
|
2532
3797
|
include Aws::Structure
|
2533
3798
|
end
|
2534
3799
|
|
@@ -2567,7 +3832,7 @@ module Aws::Proton
|
|
2567
3832
|
#
|
2568
3833
|
# @!attribute [rw] branch_name
|
2569
3834
|
# The name of the code repository branch that holds the code that's
|
2570
|
-
# deployed in
|
3835
|
+
# deployed in Proton.
|
2571
3836
|
# @return [String]
|
2572
3837
|
#
|
2573
3838
|
# @!attribute [rw] created_at
|
@@ -2593,8 +3858,8 @@ module Aws::Proton
|
|
2593
3858
|
# @!attribute [rw] repository_connection_arn
|
2594
3859
|
# The Amazon Resource Name (ARN) of the repository connection. For
|
2595
3860
|
# more information, see [Set up a repository connection][1] in the
|
2596
|
-
# *
|
2597
|
-
#
|
3861
|
+
# *Proton Administrator Guide* and [Setting up with Proton][2] in the
|
3862
|
+
# *Proton User Guide*.
|
2598
3863
|
#
|
2599
3864
|
#
|
2600
3865
|
#
|
@@ -2603,7 +3868,7 @@ module Aws::Proton
|
|
2603
3868
|
# @return [String]
|
2604
3869
|
#
|
2605
3870
|
# @!attribute [rw] repository_id
|
2606
|
-
# The ID of the code repository.
|
3871
|
+
# The ID of the source code repository.
|
2607
3872
|
# @return [String]
|
2608
3873
|
#
|
2609
3874
|
# @!attribute [rw] spec
|
@@ -2687,13 +3952,13 @@ module Aws::Proton
|
|
2687
3952
|
# @return [String]
|
2688
3953
|
#
|
2689
3954
|
# @!attribute [rw] template_major_version
|
2690
|
-
# The
|
2691
|
-
#
|
3955
|
+
# The major version of the service template that was used to create
|
3956
|
+
# the service instance.
|
2692
3957
|
# @return [String]
|
2693
3958
|
#
|
2694
3959
|
# @!attribute [rw] template_minor_version
|
2695
|
-
# The
|
2696
|
-
#
|
3960
|
+
# The minor version of the service template that was used to create
|
3961
|
+
# the service instance.
|
2697
3962
|
# @return [String]
|
2698
3963
|
#
|
2699
3964
|
# @!attribute [rw] template_name
|
@@ -2761,11 +4026,11 @@ module Aws::Proton
|
|
2761
4026
|
# @return [String]
|
2762
4027
|
#
|
2763
4028
|
# @!attribute [rw] template_major_version
|
2764
|
-
# The
|
4029
|
+
# The service instance template major version.
|
2765
4030
|
# @return [String]
|
2766
4031
|
#
|
2767
4032
|
# @!attribute [rw] template_minor_version
|
2768
|
-
# The
|
4033
|
+
# The service instance template minor version.
|
2769
4034
|
# @return [String]
|
2770
4035
|
#
|
2771
4036
|
# @!attribute [rw] template_name
|
@@ -2823,13 +4088,13 @@ module Aws::Proton
|
|
2823
4088
|
# @return [String]
|
2824
4089
|
#
|
2825
4090
|
# @!attribute [rw] template_major_version
|
2826
|
-
# The
|
2827
|
-
#
|
4091
|
+
# The major version of the service template that was used to create
|
4092
|
+
# the service pipeline.
|
2828
4093
|
# @return [String]
|
2829
4094
|
#
|
2830
4095
|
# @!attribute [rw] template_minor_version
|
2831
|
-
# The
|
2832
|
-
#
|
4096
|
+
# The minor version of the service template that was used to create
|
4097
|
+
# the service pipeline.
|
2833
4098
|
# @return [String]
|
2834
4099
|
#
|
2835
4100
|
# @!attribute [rw] template_name
|
@@ -2854,8 +4119,8 @@ module Aws::Proton
|
|
2854
4119
|
include Aws::Structure
|
2855
4120
|
end
|
2856
4121
|
|
2857
|
-
# A quota was exceeded. For more information, see [
|
2858
|
-
#
|
4122
|
+
# A quota was exceeded. For more information, see [Proton Quotas][1] in
|
4123
|
+
# the *Proton Administrator Guide*.
|
2859
4124
|
#
|
2860
4125
|
#
|
2861
4126
|
#
|
@@ -2959,7 +4224,7 @@ module Aws::Proton
|
|
2959
4224
|
# @return [String]
|
2960
4225
|
#
|
2961
4226
|
# @!attribute [rw] recommended_version
|
2962
|
-
# The
|
4227
|
+
# The recommended version of the service template.
|
2963
4228
|
# @return [String]
|
2964
4229
|
#
|
2965
4230
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ServiceTemplate AWS API Documentation
|
@@ -3011,7 +4276,7 @@ module Aws::Proton
|
|
3011
4276
|
# @return [String]
|
3012
4277
|
#
|
3013
4278
|
# @!attribute [rw] recommended_version
|
3014
|
-
# The
|
4279
|
+
# The recommended version of the service template.
|
3015
4280
|
# @return [String]
|
3016
4281
|
#
|
3017
4282
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ServiceTemplateSummary AWS API Documentation
|
@@ -3053,16 +4318,16 @@ module Aws::Proton
|
|
3053
4318
|
# @return [Time]
|
3054
4319
|
#
|
3055
4320
|
# @!attribute [rw] major_version
|
3056
|
-
# The
|
3057
|
-
#
|
4321
|
+
# The latest major version that's associated with the version of a
|
4322
|
+
# service template.
|
3058
4323
|
# @return [String]
|
3059
4324
|
#
|
3060
4325
|
# @!attribute [rw] minor_version
|
3061
|
-
# The
|
4326
|
+
# The minor version of a service template.
|
3062
4327
|
# @return [String]
|
3063
4328
|
#
|
3064
4329
|
# @!attribute [rw] recommended_minor_version
|
3065
|
-
# The
|
4330
|
+
# The recommended minor version of the service template.
|
3066
4331
|
# @return [String]
|
3067
4332
|
#
|
3068
4333
|
# @!attribute [rw] schema
|
@@ -3119,16 +4384,16 @@ module Aws::Proton
|
|
3119
4384
|
# @return [Time]
|
3120
4385
|
#
|
3121
4386
|
# @!attribute [rw] major_version
|
3122
|
-
# The
|
3123
|
-
#
|
4387
|
+
# The latest major version that's associated with the version of a
|
4388
|
+
# service template.
|
3124
4389
|
# @return [String]
|
3125
4390
|
#
|
3126
4391
|
# @!attribute [rw] minor_version
|
3127
|
-
# The
|
4392
|
+
# The minor version of a service template.
|
3128
4393
|
# @return [String]
|
3129
4394
|
#
|
3130
4395
|
# @!attribute [rw] recommended_minor_version
|
3131
|
-
# The
|
4396
|
+
# The recommended minor version of the service template.
|
3132
4397
|
# @return [String]
|
3133
4398
|
#
|
3134
4399
|
# @!attribute [rw] status
|
@@ -3222,6 +4487,45 @@ module Aws::Proton
|
|
3222
4487
|
#
|
3223
4488
|
class TagResourceOutput < Aws::EmptyStructure; end
|
3224
4489
|
|
4490
|
+
# The detail data for a template sync configuration.
|
4491
|
+
#
|
4492
|
+
# @!attribute [rw] branch
|
4493
|
+
# The repository branch.
|
4494
|
+
# @return [String]
|
4495
|
+
#
|
4496
|
+
# @!attribute [rw] repository_name
|
4497
|
+
# The name of the repository, for example `myrepos/myrepo`.
|
4498
|
+
# @return [String]
|
4499
|
+
#
|
4500
|
+
# @!attribute [rw] repository_provider
|
4501
|
+
# The repository provider.
|
4502
|
+
# @return [String]
|
4503
|
+
#
|
4504
|
+
# @!attribute [rw] subdirectory
|
4505
|
+
# A subdirectory path to your template bundle version.
|
4506
|
+
# @return [String]
|
4507
|
+
#
|
4508
|
+
# @!attribute [rw] template_name
|
4509
|
+
# The template name.
|
4510
|
+
# @return [String]
|
4511
|
+
#
|
4512
|
+
# @!attribute [rw] template_type
|
4513
|
+
# The template type.
|
4514
|
+
# @return [String]
|
4515
|
+
#
|
4516
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/TemplateSyncConfig AWS API Documentation
|
4517
|
+
#
|
4518
|
+
class TemplateSyncConfig < Struct.new(
|
4519
|
+
:branch,
|
4520
|
+
:repository_name,
|
4521
|
+
:repository_provider,
|
4522
|
+
:subdirectory,
|
4523
|
+
:template_name,
|
4524
|
+
:template_type)
|
4525
|
+
SENSITIVE = []
|
4526
|
+
include Aws::Structure
|
4527
|
+
end
|
4528
|
+
|
3225
4529
|
# Template version source data.
|
3226
4530
|
#
|
3227
4531
|
# @note TemplateVersionSourceInput is a union - when making an API calls you must set exactly one of the members.
|
@@ -3292,25 +4596,52 @@ module Aws::Proton
|
|
3292
4596
|
# data as a hash:
|
3293
4597
|
#
|
3294
4598
|
# {
|
3295
|
-
#
|
4599
|
+
# pipeline_provisioning_repository: {
|
4600
|
+
# branch: "GitBranchName", # required
|
4601
|
+
# name: "RepositoryName", # required
|
4602
|
+
# provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
|
4603
|
+
# },
|
4604
|
+
# pipeline_service_role_arn: "PipelineRoleArn",
|
3296
4605
|
# }
|
3297
4606
|
#
|
4607
|
+
# @!attribute [rw] pipeline_provisioning_repository
|
4608
|
+
# The repository that you provide with pull request provisioning.
|
4609
|
+
#
|
4610
|
+
# Provisioning by pull request is currently in feature preview and is
|
4611
|
+
# only usable with Terraform based Proton Templates. To learn more
|
4612
|
+
# about [Amazon Web Services Feature Preview terms][1], see section 2
|
4613
|
+
# on Beta and Previews.
|
4614
|
+
#
|
4615
|
+
#
|
4616
|
+
#
|
4617
|
+
# [1]: https://aws.amazon.com/service-terms
|
4618
|
+
# @return [Types::RepositoryBranchInput]
|
4619
|
+
#
|
3298
4620
|
# @!attribute [rw] pipeline_service_role_arn
|
3299
|
-
# The Amazon Resource Name (ARN) of the
|
3300
|
-
#
|
4621
|
+
# The Amazon Resource Name (ARN) of the Proton pipeline service role.
|
4622
|
+
#
|
4623
|
+
# Provisioning by pull request is currently in feature preview and is
|
4624
|
+
# only usable with Terraform based Proton Templates. To learn more
|
4625
|
+
# about [Amazon Web Services Feature Preview terms][1], see section 2
|
4626
|
+
# on Beta and Previews.
|
4627
|
+
#
|
4628
|
+
#
|
4629
|
+
#
|
4630
|
+
# [1]: https://aws.amazon.com/service-terms
|
3301
4631
|
# @return [String]
|
3302
4632
|
#
|
3303
4633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateAccountSettingsInput AWS API Documentation
|
3304
4634
|
#
|
3305
4635
|
class UpdateAccountSettingsInput < Struct.new(
|
4636
|
+
:pipeline_provisioning_repository,
|
3306
4637
|
:pipeline_service_role_arn)
|
3307
4638
|
SENSITIVE = []
|
3308
4639
|
include Aws::Structure
|
3309
4640
|
end
|
3310
4641
|
|
3311
4642
|
# @!attribute [rw] account_settings
|
3312
|
-
# The
|
3313
|
-
#
|
4643
|
+
# The Proton pipeline service role repository detail data that's
|
4644
|
+
# returned by Proton.
|
3314
4645
|
# @return [Types::AccountSettings]
|
3315
4646
|
#
|
3316
4647
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateAccountSettingsOutput AWS API Documentation
|
@@ -3349,7 +4680,7 @@ module Aws::Proton
|
|
3349
4680
|
|
3350
4681
|
# @!attribute [rw] environment_account_connection
|
3351
4682
|
# The environment account connection detail data that's returned by
|
3352
|
-
#
|
4683
|
+
# Proton.
|
3353
4684
|
# @return [Types::EnvironmentAccountConnection]
|
3354
4685
|
#
|
3355
4686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateEnvironmentAccountConnectionOutput AWS API Documentation
|
@@ -3369,6 +4700,11 @@ module Aws::Proton
|
|
3369
4700
|
# environment_account_connection_id: "EnvironmentAccountConnectionId",
|
3370
4701
|
# name: "ResourceName", # required
|
3371
4702
|
# proton_service_role_arn: "Arn",
|
4703
|
+
# provisioning_repository: {
|
4704
|
+
# branch: "GitBranchName", # required
|
4705
|
+
# name: "RepositoryName", # required
|
4706
|
+
# provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
|
4707
|
+
# },
|
3372
4708
|
# spec: "SpecContents",
|
3373
4709
|
# template_major_version: "TemplateVersionPart",
|
3374
4710
|
# template_minor_version: "TemplateVersionPart",
|
@@ -3432,20 +4768,33 @@ module Aws::Proton
|
|
3432
4768
|
# @return [String]
|
3433
4769
|
#
|
3434
4770
|
# @!attribute [rw] proton_service_role_arn
|
3435
|
-
# The Amazon Resource Name (ARN) of the
|
3436
|
-
# allows
|
4771
|
+
# The Amazon Resource Name (ARN) of the Proton service role that
|
4772
|
+
# allows Proton to make API calls to other services your behalf.
|
3437
4773
|
# @return [String]
|
3438
4774
|
#
|
4775
|
+
# @!attribute [rw] provisioning_repository
|
4776
|
+
# The repository that you provide with pull request provisioning.
|
4777
|
+
#
|
4778
|
+
# Provisioning by pull request is currently in feature preview and is
|
4779
|
+
# only usable with Terraform based Proton Templates. To learn more
|
4780
|
+
# about [Amazon Web Services Feature Preview terms][1], see section 2
|
4781
|
+
# on Beta and Previews.
|
4782
|
+
#
|
4783
|
+
#
|
4784
|
+
#
|
4785
|
+
# [1]: https://aws.amazon.com/service-terms
|
4786
|
+
# @return [Types::RepositoryBranchInput]
|
4787
|
+
#
|
3439
4788
|
# @!attribute [rw] spec
|
3440
4789
|
# The formatted specification that defines the update.
|
3441
4790
|
# @return [String]
|
3442
4791
|
#
|
3443
4792
|
# @!attribute [rw] template_major_version
|
3444
|
-
# The
|
4793
|
+
# The major version of the environment to update.
|
3445
4794
|
# @return [String]
|
3446
4795
|
#
|
3447
4796
|
# @!attribute [rw] template_minor_version
|
3448
|
-
# The
|
4797
|
+
# The minor version of the environment to update.
|
3449
4798
|
# @return [String]
|
3450
4799
|
#
|
3451
4800
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateEnvironmentInput AWS API Documentation
|
@@ -3456,6 +4805,7 @@ module Aws::Proton
|
|
3456
4805
|
:environment_account_connection_id,
|
3457
4806
|
:name,
|
3458
4807
|
:proton_service_role_arn,
|
4808
|
+
:provisioning_repository,
|
3459
4809
|
:spec,
|
3460
4810
|
:template_major_version,
|
3461
4811
|
:template_minor_version)
|
@@ -3464,7 +4814,7 @@ module Aws::Proton
|
|
3464
4814
|
end
|
3465
4815
|
|
3466
4816
|
# @!attribute [rw] environment
|
3467
|
-
# The environment detail data that's returned by
|
4817
|
+
# The environment detail data that's returned by Proton.
|
3468
4818
|
# @return [Types::Environment]
|
3469
4819
|
#
|
3470
4820
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateEnvironmentOutput AWS API Documentation
|
@@ -3508,7 +4858,7 @@ module Aws::Proton
|
|
3508
4858
|
end
|
3509
4859
|
|
3510
4860
|
# @!attribute [rw] environment_template
|
3511
|
-
# The environment template detail data that's returned by
|
4861
|
+
# The environment template detail data that's returned by Proton.
|
3512
4862
|
# @return [Types::EnvironmentTemplate]
|
3513
4863
|
#
|
3514
4864
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateEnvironmentTemplateOutput AWS API Documentation
|
@@ -3535,8 +4885,8 @@ module Aws::Proton
|
|
3535
4885
|
# @return [String]
|
3536
4886
|
#
|
3537
4887
|
# @!attribute [rw] major_version
|
3538
|
-
# To update a major version of an environment template, include
|
3539
|
-
#
|
4888
|
+
# To update a major version of an environment template, include `major
|
4889
|
+
# Version`.
|
3540
4890
|
# @return [String]
|
3541
4891
|
#
|
3542
4892
|
# @!attribute [rw] minor_version
|
@@ -3565,7 +4915,7 @@ module Aws::Proton
|
|
3565
4915
|
end
|
3566
4916
|
|
3567
4917
|
# @!attribute [rw] environment_template_version
|
3568
|
-
# The environment template version detail data that's returned by
|
4918
|
+
# The environment template version detail data that's returned by
|
3569
4919
|
# Proton.
|
3570
4920
|
# @return [Types::EnvironmentTemplateVersion]
|
3571
4921
|
#
|
@@ -3599,8 +4949,7 @@ module Aws::Proton
|
|
3599
4949
|
# instances to remain. Omit the existing service instances to delete
|
3600
4950
|
# from the list. *Don't* include edits to the existing service
|
3601
4951
|
# instances or pipeline. For more information, see *Edit a service* in
|
3602
|
-
# the [
|
3603
|
-
# Guide][2].
|
4952
|
+
# the [Proton Administrator Guide][1] or the [Proton User Guide][2].
|
3604
4953
|
#
|
3605
4954
|
#
|
3606
4955
|
#
|
@@ -3707,7 +5056,7 @@ module Aws::Proton
|
|
3707
5056
|
end
|
3708
5057
|
|
3709
5058
|
# @!attribute [rw] service_instance
|
3710
|
-
# The service instance summary data returned by
|
5059
|
+
# The service instance summary data returned by Proton.
|
3711
5060
|
# @return [Types::ServiceInstance]
|
3712
5061
|
#
|
3713
5062
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServiceInstanceOutput AWS API Documentation
|
@@ -3719,7 +5068,7 @@ module Aws::Proton
|
|
3719
5068
|
end
|
3720
5069
|
|
3721
5070
|
# @!attribute [rw] service
|
3722
|
-
# The service detail data that's returned by
|
5071
|
+
# The service detail data that's returned by Proton.
|
3723
5072
|
# @return [Types::Service]
|
3724
5073
|
#
|
3725
5074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServiceOutput AWS API Documentation
|
@@ -3814,7 +5163,7 @@ module Aws::Proton
|
|
3814
5163
|
end
|
3815
5164
|
|
3816
5165
|
# @!attribute [rw] pipeline
|
3817
|
-
# The pipeline details returned by
|
5166
|
+
# The pipeline details returned by Proton.
|
3818
5167
|
# @return [Types::ServicePipeline]
|
3819
5168
|
#
|
3820
5169
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServicePipelineOutput AWS API Documentation
|
@@ -3858,7 +5207,7 @@ module Aws::Proton
|
|
3858
5207
|
end
|
3859
5208
|
|
3860
5209
|
# @!attribute [rw] service_template
|
3861
|
-
# The service template detail data that's returned by
|
5210
|
+
# The service template detail data that's returned by Proton.
|
3862
5211
|
# @return [Types::ServiceTemplate]
|
3863
5212
|
#
|
3864
5213
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServiceTemplateOutput AWS API Documentation
|
@@ -3896,8 +5245,8 @@ module Aws::Proton
|
|
3896
5245
|
# @return [String]
|
3897
5246
|
#
|
3898
5247
|
# @!attribute [rw] major_version
|
3899
|
-
# To update a major version of a service template, include
|
3900
|
-
#
|
5248
|
+
# To update a major version of a service template, include `major
|
5249
|
+
# Version`.
|
3901
5250
|
# @return [String]
|
3902
5251
|
#
|
3903
5252
|
# @!attribute [rw] minor_version
|
@@ -3927,8 +5276,7 @@ module Aws::Proton
|
|
3927
5276
|
end
|
3928
5277
|
|
3929
5278
|
# @!attribute [rw] service_template_version
|
3930
|
-
# The service template version detail data that's returned by
|
3931
|
-
# Proton.
|
5279
|
+
# The service template version detail data that's returned by Proton.
|
3932
5280
|
# @return [Types::ServiceTemplateVersion]
|
3933
5281
|
#
|
3934
5282
|
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServiceTemplateVersionOutput AWS API Documentation
|
@@ -3939,6 +5287,69 @@ module Aws::Proton
|
|
3939
5287
|
include Aws::Structure
|
3940
5288
|
end
|
3941
5289
|
|
5290
|
+
# @note When making an API call, you may pass UpdateTemplateSyncConfigInput
|
5291
|
+
# data as a hash:
|
5292
|
+
#
|
5293
|
+
# {
|
5294
|
+
# branch: "GitBranchName", # required
|
5295
|
+
# repository_name: "RepositoryName", # required
|
5296
|
+
# repository_provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
|
5297
|
+
# subdirectory: "Subdirectory",
|
5298
|
+
# template_name: "ResourceName", # required
|
5299
|
+
# template_type: "ENVIRONMENT", # required, accepts ENVIRONMENT, SERVICE
|
5300
|
+
# }
|
5301
|
+
#
|
5302
|
+
# @!attribute [rw] branch
|
5303
|
+
# The repository branch.
|
5304
|
+
# @return [String]
|
5305
|
+
#
|
5306
|
+
# @!attribute [rw] repository_name
|
5307
|
+
# The name of the repository, for example `myrepos/myrepo`.
|
5308
|
+
# @return [String]
|
5309
|
+
#
|
5310
|
+
# @!attribute [rw] repository_provider
|
5311
|
+
# The repository provider.
|
5312
|
+
# @return [String]
|
5313
|
+
#
|
5314
|
+
# @!attribute [rw] subdirectory
|
5315
|
+
# A subdirectory path to your template bundle version. When included,
|
5316
|
+
# limits the template bundle search to this repository directory.
|
5317
|
+
# @return [String]
|
5318
|
+
#
|
5319
|
+
# @!attribute [rw] template_name
|
5320
|
+
# The synced template name.
|
5321
|
+
# @return [String]
|
5322
|
+
#
|
5323
|
+
# @!attribute [rw] template_type
|
5324
|
+
# The synced template type.
|
5325
|
+
# @return [String]
|
5326
|
+
#
|
5327
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateTemplateSyncConfigInput AWS API Documentation
|
5328
|
+
#
|
5329
|
+
class UpdateTemplateSyncConfigInput < Struct.new(
|
5330
|
+
:branch,
|
5331
|
+
:repository_name,
|
5332
|
+
:repository_provider,
|
5333
|
+
:subdirectory,
|
5334
|
+
:template_name,
|
5335
|
+
:template_type)
|
5336
|
+
SENSITIVE = []
|
5337
|
+
include Aws::Structure
|
5338
|
+
end
|
5339
|
+
|
5340
|
+
# @!attribute [rw] template_sync_config
|
5341
|
+
# The template sync configuration detail data that's returned by
|
5342
|
+
# Proton.
|
5343
|
+
# @return [Types::TemplateSyncConfig]
|
5344
|
+
#
|
5345
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateTemplateSyncConfigOutput AWS API Documentation
|
5346
|
+
#
|
5347
|
+
class UpdateTemplateSyncConfigOutput < Struct.new(
|
5348
|
+
:template_sync_config)
|
5349
|
+
SENSITIVE = []
|
5350
|
+
include Aws::Structure
|
5351
|
+
end
|
5352
|
+
|
3942
5353
|
# The input is invalid or an out-of-range value was supplied for the
|
3943
5354
|
# input parameter.
|
3944
5355
|
#
|