aws-sdk-proton 1.13.0 → 1.16.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.
@@ -54,23 +54,21 @@ module Aws::Proton
54
54
  include Aws::Structure
55
55
  end
56
56
 
57
- # The Proton pipeline service role and repository data.
57
+ # The Proton pipeline service role and repository data shared across the
58
+ # Amazon Web Services account.
58
59
  #
59
60
  # @!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
61
+ # The repository configured in the Amazon Web Services account for
62
+ # pipeline provisioning. Required it if you have environments
63
+ # configured for self-managed provisioning with services that include
64
+ # pipelines.
70
65
  # @return [Types::RepositoryBranch]
71
66
  #
72
67
  # @!attribute [rw] pipeline_service_role_arn
73
- # The Amazon Resource Name (ARN) of the Proton pipeline service role.
68
+ # The Amazon Resource Name (ARN) of the service role you want to use
69
+ # for provisioning pipelines. Assumed by Proton for Amazon Web
70
+ # Services-managed provisioning, and by customer-owned automation for
71
+ # self-managed provisioning.
74
72
  # @return [String]
75
73
  #
76
74
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/AccountSettings AWS API Documentation
@@ -82,6 +80,38 @@ module Aws::Proton
82
80
  include Aws::Structure
83
81
  end
84
82
 
83
+ # @note When making an API call, you may pass CancelComponentDeploymentInput
84
+ # data as a hash:
85
+ #
86
+ # {
87
+ # component_name: "ResourceName", # required
88
+ # }
89
+ #
90
+ # @!attribute [rw] component_name
91
+ # The name of the component with the deployment to cancel.
92
+ # @return [String]
93
+ #
94
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CancelComponentDeploymentInput AWS API Documentation
95
+ #
96
+ class CancelComponentDeploymentInput < Struct.new(
97
+ :component_name)
98
+ SENSITIVE = []
99
+ include Aws::Structure
100
+ end
101
+
102
+ # @!attribute [rw] component
103
+ # The detailed data of the component with the deployment that is being
104
+ # canceled.
105
+ # @return [Types::Component]
106
+ #
107
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CancelComponentDeploymentOutput AWS API Documentation
108
+ #
109
+ class CancelComponentDeploymentOutput < Struct.new(
110
+ :component)
111
+ SENSITIVE = []
112
+ include Aws::Structure
113
+ end
114
+
85
115
  # @note When making an API call, you may pass CancelEnvironmentDeploymentInput
86
116
  # data as a hash:
87
117
  #
@@ -229,6 +259,165 @@ module Aws::Proton
229
259
  include Aws::Structure
230
260
  end
231
261
 
262
+ # Detailed data of an Proton component resource.
263
+ #
264
+ # For more information about components, see [Proton components][1] in
265
+ # the *Proton Administrator Guide*.
266
+ #
267
+ #
268
+ #
269
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
270
+ #
271
+ # @!attribute [rw] arn
272
+ # The Amazon Resource Name (ARN) of the component.
273
+ # @return [String]
274
+ #
275
+ # @!attribute [rw] created_at
276
+ # The time when the component was created.
277
+ # @return [Time]
278
+ #
279
+ # @!attribute [rw] deployment_status
280
+ # The component deployment status.
281
+ # @return [String]
282
+ #
283
+ # @!attribute [rw] deployment_status_message
284
+ # The message associated with the component deployment status.
285
+ # @return [String]
286
+ #
287
+ # @!attribute [rw] description
288
+ # A description of the component.
289
+ # @return [String]
290
+ #
291
+ # @!attribute [rw] environment_name
292
+ # The name of the Proton environment that this component is associated
293
+ # with.
294
+ # @return [String]
295
+ #
296
+ # @!attribute [rw] last_deployment_attempted_at
297
+ # The time when a deployment of the component was last attempted.
298
+ # @return [Time]
299
+ #
300
+ # @!attribute [rw] last_deployment_succeeded_at
301
+ # The time when the component was last deployed successfully.
302
+ # @return [Time]
303
+ #
304
+ # @!attribute [rw] last_modified_at
305
+ # The time when the component was last modified.
306
+ # @return [Time]
307
+ #
308
+ # @!attribute [rw] name
309
+ # The name of the component.
310
+ # @return [String]
311
+ #
312
+ # @!attribute [rw] service_instance_name
313
+ # The name of the service instance that this component is attached to.
314
+ # Provided when a component is attached to a service instance.
315
+ # @return [String]
316
+ #
317
+ # @!attribute [rw] service_name
318
+ # The name of the service that `serviceInstanceName` is associated
319
+ # with. Provided when a component is attached to a service instance.
320
+ # @return [String]
321
+ #
322
+ # @!attribute [rw] service_spec
323
+ # The service spec that the component uses to access service inputs.
324
+ # Provided when a component is attached to a service instance.
325
+ # @return [String]
326
+ #
327
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/Component AWS API Documentation
328
+ #
329
+ class Component < Struct.new(
330
+ :arn,
331
+ :created_at,
332
+ :deployment_status,
333
+ :deployment_status_message,
334
+ :description,
335
+ :environment_name,
336
+ :last_deployment_attempted_at,
337
+ :last_deployment_succeeded_at,
338
+ :last_modified_at,
339
+ :name,
340
+ :service_instance_name,
341
+ :service_name,
342
+ :service_spec)
343
+ SENSITIVE = [:deployment_status_message, :description, :service_spec]
344
+ include Aws::Structure
345
+ end
346
+
347
+ # Summary data of an Proton component resource.
348
+ #
349
+ # For more information about components, see [Proton components][1] in
350
+ # the *Proton Administrator Guide*.
351
+ #
352
+ #
353
+ #
354
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
355
+ #
356
+ # @!attribute [rw] arn
357
+ # The Amazon Resource Name (ARN) of the component.
358
+ # @return [String]
359
+ #
360
+ # @!attribute [rw] created_at
361
+ # The time when the component was created.
362
+ # @return [Time]
363
+ #
364
+ # @!attribute [rw] deployment_status
365
+ # The component deployment status.
366
+ # @return [String]
367
+ #
368
+ # @!attribute [rw] deployment_status_message
369
+ # The message associated with the component deployment status.
370
+ # @return [String]
371
+ #
372
+ # @!attribute [rw] environment_name
373
+ # The name of the Proton environment that this component is associated
374
+ # with.
375
+ # @return [String]
376
+ #
377
+ # @!attribute [rw] last_deployment_attempted_at
378
+ # The time when a deployment of the component was last attempted.
379
+ # @return [Time]
380
+ #
381
+ # @!attribute [rw] last_deployment_succeeded_at
382
+ # The time when the component was last deployed successfully.
383
+ # @return [Time]
384
+ #
385
+ # @!attribute [rw] last_modified_at
386
+ # The time when the component was last modified.
387
+ # @return [Time]
388
+ #
389
+ # @!attribute [rw] name
390
+ # The name of the component.
391
+ # @return [String]
392
+ #
393
+ # @!attribute [rw] service_instance_name
394
+ # The name of the service instance that this component is attached to.
395
+ # Provided when a component is attached to a service instance.
396
+ # @return [String]
397
+ #
398
+ # @!attribute [rw] service_name
399
+ # The name of the service that `serviceInstanceName` is associated
400
+ # with. Provided when a component is attached to a service instance.
401
+ # @return [String]
402
+ #
403
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ComponentSummary AWS API Documentation
404
+ #
405
+ class ComponentSummary < Struct.new(
406
+ :arn,
407
+ :created_at,
408
+ :deployment_status,
409
+ :deployment_status_message,
410
+ :environment_name,
411
+ :last_deployment_attempted_at,
412
+ :last_deployment_succeeded_at,
413
+ :last_modified_at,
414
+ :name,
415
+ :service_instance_name,
416
+ :service_name)
417
+ SENSITIVE = [:deployment_status_message]
418
+ include Aws::Structure
419
+ end
420
+
232
421
  # The request *couldn't* be made due to a conflicting operation or
233
422
  # resource.
234
423
  #
@@ -243,11 +432,123 @@ module Aws::Proton
243
432
  include Aws::Structure
244
433
  end
245
434
 
435
+ # @note When making an API call, you may pass CreateComponentInput
436
+ # data as a hash:
437
+ #
438
+ # {
439
+ # description: "Description",
440
+ # environment_name: "ResourceName",
441
+ # manifest: "TemplateManifestContents", # required
442
+ # name: "ResourceName", # required
443
+ # service_instance_name: "ResourceName",
444
+ # service_name: "ResourceName",
445
+ # service_spec: "SpecContents",
446
+ # tags: [
447
+ # {
448
+ # key: "TagKey", # required
449
+ # value: "TagValue", # required
450
+ # },
451
+ # ],
452
+ # template_file: "TemplateFileContents", # required
453
+ # }
454
+ #
455
+ # @!attribute [rw] description
456
+ # An optional customer-provided description of the component.
457
+ # @return [String]
458
+ #
459
+ # @!attribute [rw] environment_name
460
+ # The name of the Proton environment that you want to associate this
461
+ # component with. You must specify this when you don't specify
462
+ # `serviceInstanceName` and `serviceName`.
463
+ # @return [String]
464
+ #
465
+ # @!attribute [rw] manifest
466
+ # A path to a manifest file that lists the Infrastructure as Code
467
+ # (IaC) file, template language, and rendering engine for
468
+ # infrastructure that a custom component provisions.
469
+ # @return [String]
470
+ #
471
+ # @!attribute [rw] name
472
+ # The customer-provided name of the component.
473
+ # @return [String]
474
+ #
475
+ # @!attribute [rw] service_instance_name
476
+ # The name of the service instance that you want to attach this
477
+ # component to. If you don't specify this, the component isn't
478
+ # attached to any service instance. Specify both `serviceInstanceName`
479
+ # and `serviceName` or neither of them.
480
+ # @return [String]
481
+ #
482
+ # @!attribute [rw] service_name
483
+ # The name of the service that `serviceInstanceName` is associated
484
+ # with. If you don't specify this, the component isn't attached to
485
+ # any service instance. Specify both `serviceInstanceName` and
486
+ # `serviceName` or neither of them.
487
+ # @return [String]
488
+ #
489
+ # @!attribute [rw] service_spec
490
+ # The service spec that you want the component to use to access
491
+ # service inputs. Set this only when you attach the component to a
492
+ # service instance.
493
+ # @return [String]
494
+ #
495
+ # @!attribute [rw] tags
496
+ # An optional list of metadata items that you can associate with the
497
+ # Proton component. A tag is a key-value pair.
498
+ #
499
+ # For more information, see *Proton resources and tagging* in the
500
+ # [Proton Administrator Guide][1] or [Proton User Guide][2].
501
+ #
502
+ #
503
+ #
504
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
505
+ # [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
506
+ # @return [Array<Types::Tag>]
507
+ #
508
+ # @!attribute [rw] template_file
509
+ # A path to the Infrastructure as Code (IaC) file describing
510
+ # infrastructure that a custom component provisions.
511
+ #
512
+ # <note markdown="1"> Components support a single IaC file, even if you use Terraform as
513
+ # your template language.
514
+ #
515
+ # </note>
516
+ # @return [String]
517
+ #
518
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateComponentInput AWS API Documentation
519
+ #
520
+ class CreateComponentInput < Struct.new(
521
+ :description,
522
+ :environment_name,
523
+ :manifest,
524
+ :name,
525
+ :service_instance_name,
526
+ :service_name,
527
+ :service_spec,
528
+ :tags,
529
+ :template_file)
530
+ SENSITIVE = [:description, :manifest, :service_spec, :template_file]
531
+ include Aws::Structure
532
+ end
533
+
534
+ # @!attribute [rw] component
535
+ # The detailed data of the created component.
536
+ # @return [Types::Component]
537
+ #
538
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateComponentOutput AWS API Documentation
539
+ #
540
+ class CreateComponentOutput < Struct.new(
541
+ :component)
542
+ SENSITIVE = []
543
+ include Aws::Structure
544
+ end
545
+
246
546
  # @note When making an API call, you may pass CreateEnvironmentAccountConnectionInput
247
547
  # data as a hash:
248
548
  #
249
549
  # {
250
550
  # client_token: "ClientToken",
551
+ # component_role_arn: "Arn",
251
552
  # environment_name: "ResourceName", # required
252
553
  # management_account_id: "AwsAccountId", # required
253
554
  # role_arn: "Arn", # required
@@ -268,6 +569,24 @@ module Aws::Proton
268
569
  # not need to pass this option.
269
570
  # @return [String]
270
571
  #
572
+ # @!attribute [rw] component_role_arn
573
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
574
+ # uses when provisioning directly defined components in the associated
575
+ # environment account. It determines the scope of infrastructure that
576
+ # a component can provision in the account.
577
+ #
578
+ # You must specify `componentRoleArn` to allow directly defined
579
+ # components to be associated with any environments running in this
580
+ # account.
581
+ #
582
+ # For more information about components, see [Proton components][1] in
583
+ # the *Proton Administrator Guide*.
584
+ #
585
+ #
586
+ #
587
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
588
+ # @return [String]
589
+ #
271
590
  # @!attribute [rw] environment_name
272
591
  # The name of the Proton environment that's created in the associated
273
592
  # management account.
@@ -275,7 +594,7 @@ module Aws::Proton
275
594
  #
276
595
  # @!attribute [rw] management_account_id
277
596
  # The ID of the management account that accepts or rejects the
278
- # environment account connection. You create an manage the Proton
597
+ # environment account connection. You create and manage the Proton
279
598
  # environment in this account. If the management account accepts the
280
599
  # environment account connection, Proton can use the associated IAM
281
600
  # role to provision environment infrastructure resources in the
@@ -290,9 +609,11 @@ module Aws::Proton
290
609
  # @return [String]
291
610
  #
292
611
  # @!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*.
612
+ # An optional list of metadata items that you can associate with the
613
+ # Proton environment account connection. A tag is a key-value pair.
614
+ #
615
+ # For more information, see [Proton resources and tagging][1] in the
616
+ # *Proton Administrator Guide*.
296
617
  #
297
618
  #
298
619
  #
@@ -303,6 +624,7 @@ module Aws::Proton
303
624
  #
304
625
  class CreateEnvironmentAccountConnectionInput < Struct.new(
305
626
  :client_token,
627
+ :component_role_arn,
306
628
  :environment_name,
307
629
  :management_account_id,
308
630
  :role_arn,
@@ -328,6 +650,7 @@ module Aws::Proton
328
650
  # data as a hash:
329
651
  #
330
652
  # {
653
+ # component_role_arn: "Arn",
331
654
  # description: "Description",
332
655
  # environment_account_connection_id: "EnvironmentAccountConnectionId",
333
656
  # name: "ResourceName", # required
@@ -349,6 +672,23 @@ module Aws::Proton
349
672
  # template_name: "ResourceName", # required
350
673
  # }
351
674
  #
675
+ # @!attribute [rw] component_role_arn
676
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
677
+ # uses when provisioning directly defined components in this
678
+ # environment. It determines the scope of infrastructure that a
679
+ # component can provision.
680
+ #
681
+ # You must specify `componentRoleArn` to allow directly defined
682
+ # components to be associated with this environment.
683
+ #
684
+ # For more information about components, see [Proton components][1] in
685
+ # the *Proton Administrator Guide*.
686
+ #
687
+ #
688
+ #
689
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
690
+ # @return [String]
691
+ #
352
692
  # @!attribute [rw] description
353
693
  # A description of the environment that's being created and deployed.
354
694
  # @return [String]
@@ -356,12 +696,14 @@ module Aws::Proton
356
696
  # @!attribute [rw] environment_account_connection_id
357
697
  # The ID of the environment account connection that you provide if
358
698
  # you're provisioning your environment infrastructure resources to an
359
- # environment account. You must include either the
360
- # `environmentAccountConnectionId` or `protonServiceRoleArn` parameter
361
- # and value and omit the `provisioningRepository` parameter and
362
- # values. For more information, see [Environment account
699
+ # environment account. For more information, see [Environment account
363
700
  # connections][1] in the *Proton Administrator guide*.
364
701
  #
702
+ # To use Amazon Web Services-managed provisioning for the environment,
703
+ # specify either the `environmentAccountConnectionId` or
704
+ # `protonServiceRoleArn` parameter and omit the
705
+ # `provisioningRepository` parameter.
706
+ #
365
707
  #
366
708
  #
367
709
  # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html
@@ -373,34 +715,27 @@ module Aws::Proton
373
715
  #
374
716
  # @!attribute [rw] proton_service_role_arn
375
717
  # 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.
718
+ # allows Proton to make calls to other services on your behalf.
719
+ #
720
+ # To use Amazon Web Services-managed provisioning for the environment,
721
+ # specify either the `environmentAccountConnectionId` or
722
+ # `protonServiceRoleArn` parameter and omit the
723
+ # `provisioningRepository` parameter.
381
724
  # @return [String]
382
725
  #
383
726
  # @!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
- #
727
+ # The infrastructure repository that you use to host your rendered
728
+ # infrastructure templates for self-managed provisioning.
395
729
  #
396
- # [1]: https://aws.amazon.com/service-terms
730
+ # To use self-managed provisioning for the environment, specify this
731
+ # parameter and omit the `environmentAccountConnectionId` and
732
+ # `protonServiceRoleArn` parameters.
397
733
  # @return [Types::RepositoryBranchInput]
398
734
  #
399
735
  # @!attribute [rw] spec
400
- # A link to a YAML formatted spec file that provides inputs as defined
401
- # in the environment template bundle schema file. For more
402
- # information, see [Environments][1] in the *Proton Administrator
403
- # Guide*.
736
+ # A YAML formatted string that provides inputs as defined in the
737
+ # environment template bundle schema file. For more information, see
738
+ # [Environments][1] in the *Proton Administrator Guide*.
404
739
  #
405
740
  #
406
741
  #
@@ -408,9 +743,11 @@ module Aws::Proton
408
743
  # @return [String]
409
744
  #
410
745
  # @!attribute [rw] tags
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].
746
+ # An optional list of metadata items that you can associate with the
747
+ # Proton environment. A tag is a key-value pair.
748
+ #
749
+ # For more information, see *Proton resources and tagging* in the
750
+ # [Proton Administrator Guide][1] or [Proton User Guide][2].
414
751
  #
415
752
  #
416
753
  #
@@ -438,6 +775,7 @@ module Aws::Proton
438
775
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateEnvironmentInput AWS API Documentation
439
776
  #
440
777
  class CreateEnvironmentInput < Struct.new(
778
+ :component_role_arn,
441
779
  :description,
442
780
  :environment_account_connection_id,
443
781
  :name,
@@ -504,9 +842,11 @@ module Aws::Proton
504
842
  # @return [String]
505
843
  #
506
844
  # @!attribute [rw] tags
507
- # Create tags for your environment template. For more information, see
508
- # *Proton resources and tagging* in the [Proton Administrator
509
- # Guide][1] or [Proton User Guide][2].
845
+ # An optional list of metadata items that you can associate with the
846
+ # Proton environment template. A tag is a key-value pair.
847
+ #
848
+ # For more information, see *Proton resources and tagging* in the
849
+ # [Proton Administrator Guide][1] or [Proton User Guide][2].
510
850
  #
511
851
  #
512
852
  #
@@ -575,11 +915,11 @@ module Aws::Proton
575
915
  # @return [String]
576
916
  #
577
917
  # @!attribute [rw] major_version
578
- # To create a new minor version of the environment template, include a
918
+ # To create a new minor version of the environment template, include
579
919
  # `major Version`.
580
920
  #
581
921
  # To create a new major and minor version of the environment template,
582
- # *exclude* `major Version`.
922
+ # exclude `major Version`.
583
923
  # @return [String]
584
924
  #
585
925
  # @!attribute [rw] source
@@ -588,7 +928,16 @@ module Aws::Proton
588
928
  # @return [Types::TemplateVersionSourceInput]
589
929
  #
590
930
  # @!attribute [rw] tags
591
- # Create tags for a new version of an environment template.
931
+ # An optional list of metadata items that you can associate with the
932
+ # Proton environment template version. A tag is a key-value pair.
933
+ #
934
+ # For more information, see *Proton resources and tagging* in the
935
+ # [Proton Administrator Guide][1] or [Proton User Guide][2].
936
+ #
937
+ #
938
+ #
939
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
940
+ # [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
592
941
  # @return [Array<Types::Tag>]
593
942
  #
594
943
  # @!attribute [rw] template_name
@@ -628,6 +977,12 @@ module Aws::Proton
628
977
  # encryption_key: "Arn",
629
978
  # name: "RepositoryName", # required
630
979
  # provider: "GITHUB", # required, accepts GITHUB, GITHUB_ENTERPRISE, BITBUCKET
980
+ # tags: [
981
+ # {
982
+ # key: "TagKey", # required
983
+ # value: "TagValue", # required
984
+ # },
985
+ # ],
631
986
  # }
632
987
  #
633
988
  # @!attribute [rw] connection_arn
@@ -637,7 +992,7 @@ module Aws::Proton
637
992
  #
638
993
  #
639
994
  #
640
- # [1]: https://docs.aws.amazon.com/setting-up-for-service
995
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html
641
996
  # @return [String]
642
997
  #
643
998
  # @!attribute [rw] encryption_key
@@ -646,20 +1001,34 @@ module Aws::Proton
646
1001
  # @return [String]
647
1002
  #
648
1003
  # @!attribute [rw] name
649
- # The repository name, for example `myrepos/myrepo`.
1004
+ # The repository name (for example, `myrepos/myrepo`).
650
1005
  # @return [String]
651
1006
  #
652
1007
  # @!attribute [rw] provider
653
1008
  # The repository provider.
654
1009
  # @return [String]
655
1010
  #
1011
+ # @!attribute [rw] tags
1012
+ # An optional list of metadata items that you can associate with the
1013
+ # Proton repository. A tag is a key-value pair.
1014
+ #
1015
+ # For more information, see *Proton resources and tagging* in the
1016
+ # [Proton Administrator Guide][1] or [Proton User Guide][2].
1017
+ #
1018
+ #
1019
+ #
1020
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
1021
+ # [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
1022
+ # @return [Array<Types::Tag>]
1023
+ #
656
1024
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateRepositoryInput AWS API Documentation
657
1025
  #
658
1026
  class CreateRepositoryInput < Struct.new(
659
1027
  :connection_arn,
660
1028
  :encryption_key,
661
1029
  :name,
662
- :provider)
1030
+ :provider,
1031
+ :tags)
663
1032
  SENSITIVE = []
664
1033
  include Aws::Structure
665
1034
  end
@@ -731,8 +1100,8 @@ module Aws::Proton
731
1100
  #
732
1101
  # @!attribute [rw] spec
733
1102
  # A link to a spec file that provides inputs as defined in the service
734
- # template bundle schema file. The spec file is in YAML format. Don’t
735
- # include pipeline inputs in the spec if your service template
1103
+ # template bundle schema file. The spec file is in YAML format.
1104
+ # *Don’t* include pipeline inputs in the spec if your service template
736
1105
  # *doesn’t* include a service pipeline. For more information, see
737
1106
  # [Create a service][1] in the *Proton Administrator Guide* and
738
1107
  # [Create a service][2] in the *Proton User Guide*.
@@ -744,9 +1113,11 @@ module Aws::Proton
744
1113
  # @return [String]
745
1114
  #
746
1115
  # @!attribute [rw] tags
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].
1116
+ # An optional list of metadata items that you can associate with the
1117
+ # Proton service. A tag is a key-value pair.
1118
+ #
1119
+ # For more information, see *Proton resources and tagging* in the
1120
+ # [Proton Administrator Guide][1] or [Proton User Guide][2].
750
1121
  #
751
1122
  #
752
1123
  #
@@ -832,11 +1203,11 @@ module Aws::Proton
832
1203
  # @return [String]
833
1204
  #
834
1205
  # @!attribute [rw] pipeline_provisioning
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
838
- # parameter *can't* be changed. For more information, see [Service
839
- # template bundles][1] in the *Proton Administrator Guide*.
1206
+ # By default, Proton provides a service pipeline for your service.
1207
+ # When this parameter is included, it indicates that an Proton service
1208
+ # pipeline *isn't* provided for your service. After it's included,
1209
+ # it *can't* be changed. For more information, see [Service template
1210
+ # bundles][1] in the *Proton Administrator Guide*.
840
1211
  #
841
1212
  #
842
1213
  #
@@ -844,9 +1215,11 @@ module Aws::Proton
844
1215
  # @return [String]
845
1216
  #
846
1217
  # @!attribute [rw] tags
847
- # Create tags for your service template. For more information, see
848
- # *Proton resources and tagging* in the [Proton Administrator
849
- # Guide][1] or [Proton User Guide][2].
1218
+ # An optional list of metadata items that you can associate with the
1219
+ # Proton service template. A tag is a key-value pair.
1220
+ #
1221
+ # For more information, see *Proton resources and tagging* in the
1222
+ # [Proton Administrator Guide][1] or [Proton User Guide][2].
850
1223
  #
851
1224
  #
852
1225
  #
@@ -898,6 +1271,7 @@ module Aws::Proton
898
1271
  # key: "S3Key", # required
899
1272
  # },
900
1273
  # },
1274
+ # supported_component_sources: ["DIRECTLY_DEFINED"], # accepts DIRECTLY_DEFINED
901
1275
  # tags: [
902
1276
  # {
903
1277
  # key: "TagKey", # required
@@ -917,8 +1291,10 @@ module Aws::Proton
917
1291
  # @return [String]
918
1292
  #
919
1293
  # @!attribute [rw] compatible_environment_templates
920
- # An array of compatible environment template objects for the new
921
- # version of a service template.
1294
+ # An array of environment template objects that are compatible with
1295
+ # the new service template version. A service instance based on this
1296
+ # service template version can run in environments based on compatible
1297
+ # templates.
922
1298
  # @return [Array<Types::CompatibleEnvironmentTemplateInput>]
923
1299
  #
924
1300
  # @!attribute [rw] description
@@ -938,8 +1314,30 @@ module Aws::Proton
938
1314
  # for the new version of a service template.
939
1315
  # @return [Types::TemplateVersionSourceInput]
940
1316
  #
1317
+ # @!attribute [rw] supported_component_sources
1318
+ # An array of supported component sources. Components with supported
1319
+ # sources can be attached to service instances based on this service
1320
+ # template version.
1321
+ #
1322
+ # For more information about components, see [Proton components][1] in
1323
+ # the *Proton Administrator Guide*.
1324
+ #
1325
+ #
1326
+ #
1327
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
1328
+ # @return [Array<String>]
1329
+ #
941
1330
  # @!attribute [rw] tags
942
- # Create tags for a new version of a service template.
1331
+ # An optional list of metadata items that you can associate with the
1332
+ # Proton service template version. A tag is a key-value pair.
1333
+ #
1334
+ # For more information, see *Proton resources and tagging* in the
1335
+ # [Proton Administrator Guide][1] or [Proton User Guide][2].
1336
+ #
1337
+ #
1338
+ #
1339
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
1340
+ # [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
943
1341
  # @return [Array<Types::Tag>]
944
1342
  #
945
1343
  # @!attribute [rw] template_name
@@ -954,6 +1352,7 @@ module Aws::Proton
954
1352
  :description,
955
1353
  :major_version,
956
1354
  :source,
1355
+ :supported_component_sources,
957
1356
  :tags,
958
1357
  :template_name)
959
1358
  SENSITIVE = [:description]
@@ -990,7 +1389,7 @@ module Aws::Proton
990
1389
  # @return [String]
991
1390
  #
992
1391
  # @!attribute [rw] repository_name
993
- # The name of your repository, for example `myrepos/myrepo`.
1392
+ # The name of your repository (for example, `myrepos/myrepo`).
994
1393
  # @return [String]
995
1394
  #
996
1395
  # @!attribute [rw] repository_provider
@@ -1037,6 +1436,37 @@ module Aws::Proton
1037
1436
  include Aws::Structure
1038
1437
  end
1039
1438
 
1439
+ # @note When making an API call, you may pass DeleteComponentInput
1440
+ # data as a hash:
1441
+ #
1442
+ # {
1443
+ # name: "ResourceName", # required
1444
+ # }
1445
+ #
1446
+ # @!attribute [rw] name
1447
+ # The name of the component to delete.
1448
+ # @return [String]
1449
+ #
1450
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteComponentInput AWS API Documentation
1451
+ #
1452
+ class DeleteComponentInput < Struct.new(
1453
+ :name)
1454
+ SENSITIVE = []
1455
+ include Aws::Structure
1456
+ end
1457
+
1458
+ # @!attribute [rw] component
1459
+ # The detailed data of the component being deleted.
1460
+ # @return [Types::Component]
1461
+ #
1462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteComponentOutput AWS API Documentation
1463
+ #
1464
+ class DeleteComponentOutput < Struct.new(
1465
+ :component)
1466
+ SENSITIVE = []
1467
+ include Aws::Structure
1468
+ end
1469
+
1040
1470
  # @note When making an API call, you may pass DeleteEnvironmentAccountConnectionInput
1041
1471
  # data as a hash:
1042
1472
  #
@@ -1057,8 +1487,8 @@ module Aws::Proton
1057
1487
  end
1058
1488
 
1059
1489
  # @!attribute [rw] environment_account_connection
1060
- # The environment account connection detail data that's returned by
1061
- # Proton.
1490
+ # The detailed data of the environment account connection being
1491
+ # deleted.
1062
1492
  # @return [Types::EnvironmentAccountConnection]
1063
1493
  #
1064
1494
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteEnvironmentAccountConnectionOutput AWS API Documentation
@@ -1089,7 +1519,7 @@ module Aws::Proton
1089
1519
  end
1090
1520
 
1091
1521
  # @!attribute [rw] environment
1092
- # The environment detail data that's returned by Proton.
1522
+ # The detailed data of the environment being deleted.
1093
1523
  # @return [Types::Environment]
1094
1524
  #
1095
1525
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteEnvironmentOutput AWS API Documentation
@@ -1120,7 +1550,7 @@ module Aws::Proton
1120
1550
  end
1121
1551
 
1122
1552
  # @!attribute [rw] environment_template
1123
- # The environment template detail data that's returned by Proton.
1553
+ # The detailed data of the environment template being deleted.
1124
1554
  # @return [Types::EnvironmentTemplate]
1125
1555
  #
1126
1556
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteEnvironmentTemplateOutput AWS API Documentation
@@ -1163,8 +1593,7 @@ module Aws::Proton
1163
1593
  end
1164
1594
 
1165
1595
  # @!attribute [rw] environment_template_version
1166
- # The environment template version detail data that's returned by
1167
- # Proton.
1596
+ # The detailed data of the environment template version being deleted.
1168
1597
  # @return [Types::EnvironmentTemplateVersion]
1169
1598
  #
1170
1599
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteEnvironmentTemplateVersionOutput AWS API Documentation
@@ -1232,7 +1661,7 @@ module Aws::Proton
1232
1661
  end
1233
1662
 
1234
1663
  # @!attribute [rw] service
1235
- # The service detail data that's returned by Proton.
1664
+ # The detailed data of the service being deleted.
1236
1665
  # @return [Types::Service]
1237
1666
  #
1238
1667
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteServiceOutput AWS API Documentation
@@ -1263,7 +1692,7 @@ module Aws::Proton
1263
1692
  end
1264
1693
 
1265
1694
  # @!attribute [rw] service_template
1266
- # The service template detail data that's returned by Proton.
1695
+ # The detailed data of the service template being deleted.
1267
1696
  # @return [Types::ServiceTemplate]
1268
1697
  #
1269
1698
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteServiceTemplateOutput AWS API Documentation
@@ -1306,7 +1735,7 @@ module Aws::Proton
1306
1735
  end
1307
1736
 
1308
1737
  # @!attribute [rw] service_template_version
1309
- # The service template version detail data that's returned by Proton.
1738
+ # The detailed data of the service template version being deleted.
1310
1739
  # @return [Types::ServiceTemplateVersion]
1311
1740
  #
1312
1741
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteServiceTemplateVersionOutput AWS API Documentation
@@ -1355,13 +1784,30 @@ module Aws::Proton
1355
1784
  include Aws::Structure
1356
1785
  end
1357
1786
 
1358
- # The environment detail data. An Proton environment is a set resources
1359
- # shared across an Proton service.
1787
+ # Detailed data of an Proton environment resource. An Proton environment
1788
+ # is a set of resources shared across Proton services.
1360
1789
  #
1361
1790
  # @!attribute [rw] arn
1362
1791
  # The Amazon Resource Name (ARN) of the environment.
1363
1792
  # @return [String]
1364
1793
  #
1794
+ # @!attribute [rw] component_role_arn
1795
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
1796
+ # uses when provisioning directly defined components in this
1797
+ # environment. It determines the scope of infrastructure that a
1798
+ # component can provision.
1799
+ #
1800
+ # The environment must have a `componentRoleArn` to allow directly
1801
+ # defined components to be associated with the environment.
1802
+ #
1803
+ # For more information about components, see [Proton components][1] in
1804
+ # the *Proton Administrator Guide*.
1805
+ #
1806
+ #
1807
+ #
1808
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
1809
+ # @return [String]
1810
+ #
1365
1811
  # @!attribute [rw] created_at
1366
1812
  # The time when the environment was created.
1367
1813
  # @return [Time]
@@ -1411,16 +1857,8 @@ module Aws::Proton
1411
1857
  # @return [String]
1412
1858
  #
1413
1859
  # @!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
1860
+ # The infrastructure repository that you use to host your rendered
1861
+ # infrastructure templates for self-managed provisioning.
1424
1862
  # @return [Types::RepositoryBranch]
1425
1863
  #
1426
1864
  # @!attribute [rw] spec
@@ -1428,11 +1866,11 @@ module Aws::Proton
1428
1866
  # @return [String]
1429
1867
  #
1430
1868
  # @!attribute [rw] template_major_version
1431
- # The ID of the major version of the environment template.
1869
+ # The major version of the environment template.
1432
1870
  # @return [String]
1433
1871
  #
1434
1872
  # @!attribute [rw] template_minor_version
1435
- # The ID of the minor version of the environment template.
1873
+ # The minor version of the environment template.
1436
1874
  # @return [String]
1437
1875
  #
1438
1876
  # @!attribute [rw] template_name
@@ -1443,6 +1881,7 @@ module Aws::Proton
1443
1881
  #
1444
1882
  class Environment < Struct.new(
1445
1883
  :arn,
1884
+ :component_role_arn,
1446
1885
  :created_at,
1447
1886
  :deployment_status,
1448
1887
  :deployment_status_message,
@@ -1463,13 +1902,31 @@ module Aws::Proton
1463
1902
  include Aws::Structure
1464
1903
  end
1465
1904
 
1466
- # The environment account connection detail data.
1905
+ # Detailed data of an Proton environment account connection resource.
1467
1906
  #
1468
1907
  # @!attribute [rw] arn
1469
1908
  # The Amazon Resource Name (ARN) of the environment account
1470
1909
  # connection.
1471
1910
  # @return [String]
1472
1911
  #
1912
+ # @!attribute [rw] component_role_arn
1913
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
1914
+ # uses when provisioning directly defined components in the associated
1915
+ # environment account. It determines the scope of infrastructure that
1916
+ # a component can provision in the account.
1917
+ #
1918
+ # The environment account connection must have a `componentRoleArn` to
1919
+ # allow directly defined components to be associated with any
1920
+ # environments running in the account.
1921
+ #
1922
+ # For more information about components, see [Proton components][1] in
1923
+ # the *Proton Administrator Guide*.
1924
+ #
1925
+ #
1926
+ #
1927
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
1928
+ # @return [String]
1929
+ #
1473
1930
  # @!attribute [rw] environment_account_id
1474
1931
  # The environment account that's connected to the environment account
1475
1932
  # connection.
@@ -1510,6 +1967,7 @@ module Aws::Proton
1510
1967
  #
1511
1968
  class EnvironmentAccountConnection < Struct.new(
1512
1969
  :arn,
1970
+ :component_role_arn,
1513
1971
  :environment_account_id,
1514
1972
  :environment_name,
1515
1973
  :id,
@@ -1522,13 +1980,31 @@ module Aws::Proton
1522
1980
  include Aws::Structure
1523
1981
  end
1524
1982
 
1525
- # A summary of the environment account connection detail data.
1983
+ # Summary data of an Proton environment account connection resource.
1526
1984
  #
1527
1985
  # @!attribute [rw] arn
1528
1986
  # The Amazon Resource Name (ARN) of the environment account
1529
1987
  # connection.
1530
1988
  # @return [String]
1531
1989
  #
1990
+ # @!attribute [rw] component_role_arn
1991
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
1992
+ # uses when provisioning directly defined components in the associated
1993
+ # environment account. It determines the scope of infrastructure that
1994
+ # a component can provision in the account.
1995
+ #
1996
+ # The environment account connection must have a `componentRoleArn` to
1997
+ # allow directly defined components to be associated with any
1998
+ # environments running in the account.
1999
+ #
2000
+ # For more information about components, see [Proton components][1] in
2001
+ # the *Proton Administrator Guide*.
2002
+ #
2003
+ #
2004
+ #
2005
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
2006
+ # @return [String]
2007
+ #
1532
2008
  # @!attribute [rw] environment_account_id
1533
2009
  # The ID of the environment account that's connected to the
1534
2010
  # environment account connection.
@@ -1569,6 +2045,7 @@ module Aws::Proton
1569
2045
  #
1570
2046
  class EnvironmentAccountConnectionSummary < Struct.new(
1571
2047
  :arn,
2048
+ :component_role_arn,
1572
2049
  :environment_account_id,
1573
2050
  :environment_name,
1574
2051
  :id,
@@ -1581,12 +2058,30 @@ module Aws::Proton
1581
2058
  include Aws::Structure
1582
2059
  end
1583
2060
 
1584
- # A summary of the environment detail data.
2061
+ # Summary data of an Proton environment resource. An Proton environment
2062
+ # is a set of resources shared across Proton services.
1585
2063
  #
1586
2064
  # @!attribute [rw] arn
1587
2065
  # The Amazon Resource Name (ARN) of the environment.
1588
2066
  # @return [String]
1589
2067
  #
2068
+ # @!attribute [rw] component_role_arn
2069
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
2070
+ # uses when provisioning directly defined components in this
2071
+ # environment. It determines the scope of infrastructure that a
2072
+ # component can provision.
2073
+ #
2074
+ # The environment must have a `componentRoleArn` to allow directly
2075
+ # defined components to be associated with the environment.
2076
+ #
2077
+ # For more information about components, see [Proton components][1] in
2078
+ # the *Proton Administrator Guide*.
2079
+ #
2080
+ #
2081
+ #
2082
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
2083
+ # @return [String]
2084
+ #
1590
2085
  # @!attribute [rw] created_at
1591
2086
  # The time when the environment was created.
1592
2087
  # @return [Time]
@@ -1651,6 +2146,7 @@ module Aws::Proton
1651
2146
  #
1652
2147
  class EnvironmentSummary < Struct.new(
1653
2148
  :arn,
2149
+ :component_role_arn,
1654
2150
  :created_at,
1655
2151
  :deployment_status,
1656
2152
  :deployment_status_message,
@@ -1912,7 +2408,7 @@ module Aws::Proton
1912
2408
  # @return [String]
1913
2409
  #
1914
2410
  # @!attribute [rw] template_name
1915
- # The name of the version of an environment template.
2411
+ # The name of the environment template.
1916
2412
  # @return [String]
1917
2413
  #
1918
2414
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/EnvironmentTemplateVersionSummary AWS API Documentation
@@ -1951,6 +2447,38 @@ module Aws::Proton
1951
2447
  include Aws::Structure
1952
2448
  end
1953
2449
 
2450
+ # @note When making an API call, you may pass GetComponentInput
2451
+ # data as a hash:
2452
+ #
2453
+ # {
2454
+ # name: "ResourceName", # required
2455
+ # }
2456
+ #
2457
+ # @!attribute [rw] name
2458
+ # The name of the component that you want to get the detailed data
2459
+ # for.
2460
+ # @return [String]
2461
+ #
2462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetComponentInput AWS API Documentation
2463
+ #
2464
+ class GetComponentInput < Struct.new(
2465
+ :name)
2466
+ SENSITIVE = []
2467
+ include Aws::Structure
2468
+ end
2469
+
2470
+ # @!attribute [rw] component
2471
+ # The detailed data of the requested component.
2472
+ # @return [Types::Component]
2473
+ #
2474
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetComponentOutput AWS API Documentation
2475
+ #
2476
+ class GetComponentOutput < Struct.new(
2477
+ :component)
2478
+ SENSITIVE = []
2479
+ include Aws::Structure
2480
+ end
2481
+
1954
2482
  # @note When making an API call, you may pass GetEnvironmentAccountConnectionInput
1955
2483
  # data as a hash:
1956
2484
  #
@@ -1959,7 +2487,8 @@ module Aws::Proton
1959
2487
  # }
1960
2488
  #
1961
2489
  # @!attribute [rw] id
1962
- # The ID of the environment account connection.
2490
+ # The ID of the environment account connection that you want to get
2491
+ # the detailed data for.
1963
2492
  # @return [String]
1964
2493
  #
1965
2494
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentAccountConnectionInput AWS API Documentation
@@ -1971,8 +2500,7 @@ module Aws::Proton
1971
2500
  end
1972
2501
 
1973
2502
  # @!attribute [rw] environment_account_connection
1974
- # The environment account connection detail data that's returned by
1975
- # Proton.
2503
+ # The detailed data of the requested environment account connection.
1976
2504
  # @return [Types::EnvironmentAccountConnection]
1977
2505
  #
1978
2506
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentAccountConnectionOutput AWS API Documentation
@@ -1991,7 +2519,7 @@ module Aws::Proton
1991
2519
  # }
1992
2520
  #
1993
2521
  # @!attribute [rw] name
1994
- # The name of the environment that you want to get the detail data
2522
+ # The name of the environment that you want to get the detailed data
1995
2523
  # for.
1996
2524
  # @return [String]
1997
2525
  #
@@ -2004,7 +2532,7 @@ module Aws::Proton
2004
2532
  end
2005
2533
 
2006
2534
  # @!attribute [rw] environment
2007
- # The environment detail data that's returned by Proton.
2535
+ # The detailed data of the requested environment.
2008
2536
  # @return [Types::Environment]
2009
2537
  #
2010
2538
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentOutput AWS API Documentation
@@ -2023,8 +2551,8 @@ module Aws::Proton
2023
2551
  # }
2024
2552
  #
2025
2553
  # @!attribute [rw] name
2026
- # The name of the environment template that you want to get the detail
2027
- # data for.
2554
+ # The name of the environment template that you want to get the
2555
+ # detailed data for.
2028
2556
  # @return [String]
2029
2557
  #
2030
2558
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentTemplateInput AWS API Documentation
@@ -2036,7 +2564,7 @@ module Aws::Proton
2036
2564
  end
2037
2565
 
2038
2566
  # @!attribute [rw] environment_template
2039
- # The environment template detail data that's returned by Proton.
2567
+ # The detailed data of the requested environment template.
2040
2568
  # @return [Types::EnvironmentTemplate]
2041
2569
  #
2042
2570
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentTemplateOutput AWS API Documentation
@@ -2057,17 +2585,18 @@ module Aws::Proton
2057
2585
  # }
2058
2586
  #
2059
2587
  # @!attribute [rw] major_version
2060
- # To view environment template major version detail data, include
2588
+ # To get environment template major version detail data, include
2061
2589
  # `major Version`.
2062
2590
  # @return [String]
2063
2591
  #
2064
2592
  # @!attribute [rw] minor_version
2065
- # To view environment template minor version detail data, include
2593
+ # To get environment template minor version detail data, include
2066
2594
  # `minorVersion`.
2067
2595
  # @return [String]
2068
2596
  #
2069
2597
  # @!attribute [rw] template_name
2070
- # The name of the environment template.
2598
+ # The name of the environment template a version of which you want to
2599
+ # get detailed data for..
2071
2600
  # @return [String]
2072
2601
  #
2073
2602
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentTemplateVersionInput AWS API Documentation
@@ -2081,8 +2610,7 @@ module Aws::Proton
2081
2610
  end
2082
2611
 
2083
2612
  # @!attribute [rw] environment_template_version
2084
- # The environment template version detail data that's returned by
2085
- # Proton.
2613
+ # The detailed data of the requested environment template version.
2086
2614
  # @return [Types::EnvironmentTemplateVersion]
2087
2615
  #
2088
2616
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentTemplateVersionOutput AWS API Documentation
@@ -2187,7 +2715,7 @@ module Aws::Proton
2187
2715
  # }
2188
2716
  #
2189
2717
  # @!attribute [rw] name
2190
- # The name of the service that you want to get the detail data for.
2718
+ # The name of the service that you want to get the detailed data for.
2191
2719
  # @return [String]
2192
2720
  #
2193
2721
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceInput AWS API Documentation
@@ -2207,8 +2735,8 @@ module Aws::Proton
2207
2735
  # }
2208
2736
  #
2209
2737
  # @!attribute [rw] name
2210
- # The name of a service instance that you want to get the detail data
2211
- # for.
2738
+ # The name of a service instance that you want to get the detailed
2739
+ # data for.
2212
2740
  # @return [String]
2213
2741
  #
2214
2742
  # @!attribute [rw] service_name
@@ -2225,7 +2753,7 @@ module Aws::Proton
2225
2753
  end
2226
2754
 
2227
2755
  # @!attribute [rw] service_instance
2228
- # The service instance detail data that's returned by Proton.
2756
+ # The detailed data of the requested service instance.
2229
2757
  # @return [Types::ServiceInstance]
2230
2758
  #
2231
2759
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceInstanceOutput AWS API Documentation
@@ -2237,7 +2765,7 @@ module Aws::Proton
2237
2765
  end
2238
2766
 
2239
2767
  # @!attribute [rw] service
2240
- # The service detail data that's returned by Proton.
2768
+ # The detailed data of the requested service.
2241
2769
  # @return [Types::Service]
2242
2770
  #
2243
2771
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceOutput AWS API Documentation
@@ -2256,7 +2784,7 @@ module Aws::Proton
2256
2784
  # }
2257
2785
  #
2258
2786
  # @!attribute [rw] name
2259
- # The name of the service template that you want to get detail data
2787
+ # The name of the service template that you want to get detailed data
2260
2788
  # for.
2261
2789
  # @return [String]
2262
2790
  #
@@ -2269,7 +2797,7 @@ module Aws::Proton
2269
2797
  end
2270
2798
 
2271
2799
  # @!attribute [rw] service_template
2272
- # The service template detail data that's returned by Proton.
2800
+ # The detailed data of the requested service template.
2273
2801
  # @return [Types::ServiceTemplate]
2274
2802
  #
2275
2803
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceTemplateOutput AWS API Documentation
@@ -2290,17 +2818,18 @@ module Aws::Proton
2290
2818
  # }
2291
2819
  #
2292
2820
  # @!attribute [rw] major_version
2293
- # To view service template major version detail data, include `major
2821
+ # To get service template major version detail data, include `major
2294
2822
  # Version`.
2295
2823
  # @return [String]
2296
2824
  #
2297
2825
  # @!attribute [rw] minor_version
2298
- # To view service template minor version detail data, include
2826
+ # To get service template minor version detail data, include
2299
2827
  # `minorVersion`.
2300
2828
  # @return [String]
2301
2829
  #
2302
2830
  # @!attribute [rw] template_name
2303
- # The name of the service template.
2831
+ # The name of the service template a version of which you want to get
2832
+ # detailed data for.
2304
2833
  # @return [String]
2305
2834
  #
2306
2835
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceTemplateVersionInput AWS API Documentation
@@ -2314,7 +2843,7 @@ module Aws::Proton
2314
2843
  end
2315
2844
 
2316
2845
  # @!attribute [rw] service_template_version
2317
- # The service template version detail data that's returned by Proton.
2846
+ # The detailed data of the requested service template version.
2318
2847
  # @return [Types::ServiceTemplateVersion]
2319
2848
  #
2320
2849
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceTemplateVersionOutput AWS API Documentation
@@ -2381,7 +2910,7 @@ module Aws::Proton
2381
2910
  # @return [String]
2382
2911
  #
2383
2912
  # @!attribute [rw] template_version
2384
- # The template version.
2913
+ # The template major version.
2385
2914
  # @return [String]
2386
2915
  #
2387
2916
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetTemplateSyncStatusInput AWS API Documentation
@@ -2429,6 +2958,163 @@ module Aws::Proton
2429
2958
  include Aws::Structure
2430
2959
  end
2431
2960
 
2961
+ # @note When making an API call, you may pass ListComponentOutputsInput
2962
+ # data as a hash:
2963
+ #
2964
+ # {
2965
+ # component_name: "ResourceName", # required
2966
+ # next_token: "EmptyNextToken",
2967
+ # }
2968
+ #
2969
+ # @!attribute [rw] component_name
2970
+ # The name of the component whose outputs you want.
2971
+ # @return [String]
2972
+ #
2973
+ # @!attribute [rw] next_token
2974
+ # A token that indicates the location of the next output in the array
2975
+ # of outputs, after the list of outputs that was previously requested.
2976
+ # @return [String]
2977
+ #
2978
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentOutputsInput AWS API Documentation
2979
+ #
2980
+ class ListComponentOutputsInput < Struct.new(
2981
+ :component_name,
2982
+ :next_token)
2983
+ SENSITIVE = []
2984
+ include Aws::Structure
2985
+ end
2986
+
2987
+ # @!attribute [rw] next_token
2988
+ # A token that indicates the location of the next output in the array
2989
+ # of outputs, after the list of outputs that was previously requested.
2990
+ # @return [String]
2991
+ #
2992
+ # @!attribute [rw] outputs
2993
+ # An array of component Infrastructure as Code (IaC) outputs.
2994
+ # @return [Array<Types::Output>]
2995
+ #
2996
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentOutputsOutput AWS API Documentation
2997
+ #
2998
+ class ListComponentOutputsOutput < Struct.new(
2999
+ :next_token,
3000
+ :outputs)
3001
+ SENSITIVE = []
3002
+ include Aws::Structure
3003
+ end
3004
+
3005
+ # @note When making an API call, you may pass ListComponentProvisionedResourcesInput
3006
+ # data as a hash:
3007
+ #
3008
+ # {
3009
+ # component_name: "ResourceName", # required
3010
+ # next_token: "EmptyNextToken",
3011
+ # }
3012
+ #
3013
+ # @!attribute [rw] component_name
3014
+ # The name of the component whose provisioned resources you want.
3015
+ # @return [String]
3016
+ #
3017
+ # @!attribute [rw] next_token
3018
+ # A token that indicates the location of the next provisioned resource
3019
+ # in the array of provisioned resources, after the list of provisioned
3020
+ # resources that was previously requested.
3021
+ # @return [String]
3022
+ #
3023
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentProvisionedResourcesInput AWS API Documentation
3024
+ #
3025
+ class ListComponentProvisionedResourcesInput < Struct.new(
3026
+ :component_name,
3027
+ :next_token)
3028
+ SENSITIVE = []
3029
+ include Aws::Structure
3030
+ end
3031
+
3032
+ # @!attribute [rw] next_token
3033
+ # A token that indicates the location of the next provisioned resource
3034
+ # in the array of provisioned resources, after the current requested
3035
+ # list of provisioned resources.
3036
+ # @return [String]
3037
+ #
3038
+ # @!attribute [rw] provisioned_resources
3039
+ # An array of provisioned resources for a component.
3040
+ # @return [Array<Types::ProvisionedResource>]
3041
+ #
3042
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentProvisionedResourcesOutput AWS API Documentation
3043
+ #
3044
+ class ListComponentProvisionedResourcesOutput < Struct.new(
3045
+ :next_token,
3046
+ :provisioned_resources)
3047
+ SENSITIVE = []
3048
+ include Aws::Structure
3049
+ end
3050
+
3051
+ # @note When making an API call, you may pass ListComponentsInput
3052
+ # data as a hash:
3053
+ #
3054
+ # {
3055
+ # environment_name: "ResourceName",
3056
+ # max_results: 1,
3057
+ # next_token: "NextToken",
3058
+ # service_instance_name: "ResourceName",
3059
+ # service_name: "ResourceName",
3060
+ # }
3061
+ #
3062
+ # @!attribute [rw] environment_name
3063
+ # The name of an environment for result list filtering. Proton returns
3064
+ # components associated with the environment or attached to service
3065
+ # instances running in it.
3066
+ # @return [String]
3067
+ #
3068
+ # @!attribute [rw] max_results
3069
+ # The maximum number of components to list.
3070
+ # @return [Integer]
3071
+ #
3072
+ # @!attribute [rw] next_token
3073
+ # A token that indicates the location of the next component in the
3074
+ # array of components, after the list of components that was
3075
+ # previously requested.
3076
+ # @return [String]
3077
+ #
3078
+ # @!attribute [rw] service_instance_name
3079
+ # The name of a service instance for result list filtering. Proton
3080
+ # returns the component attached to the service instance, if any.
3081
+ # @return [String]
3082
+ #
3083
+ # @!attribute [rw] service_name
3084
+ # The name of a service for result list filtering. Proton returns
3085
+ # components attached to service instances of the service.
3086
+ # @return [String]
3087
+ #
3088
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentsInput AWS API Documentation
3089
+ #
3090
+ class ListComponentsInput < Struct.new(
3091
+ :environment_name,
3092
+ :max_results,
3093
+ :next_token,
3094
+ :service_instance_name,
3095
+ :service_name)
3096
+ SENSITIVE = []
3097
+ include Aws::Structure
3098
+ end
3099
+
3100
+ # @!attribute [rw] components
3101
+ # An array of components with summary data.
3102
+ # @return [Array<Types::ComponentSummary>]
3103
+ #
3104
+ # @!attribute [rw] next_token
3105
+ # A token that indicates the location of the next component in the
3106
+ # array of components, after the current requested list of components.
3107
+ # @return [String]
3108
+ #
3109
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentsOutput AWS API Documentation
3110
+ #
3111
+ class ListComponentsOutput < Struct.new(
3112
+ :components,
3113
+ :next_token)
3114
+ SENSITIVE = []
3115
+ include Aws::Structure
3116
+ end
3117
+
2432
3118
  # @note When making an API call, you may pass ListEnvironmentAccountConnectionsInput
2433
3119
  # data as a hash:
2434
3120
  #
@@ -2450,7 +3136,7 @@ module Aws::Proton
2450
3136
  # @return [Integer]
2451
3137
  #
2452
3138
  # @!attribute [rw] next_token
2453
- # A token to indicate the location of the next environment account
3139
+ # A token that indicates the location of the next environment account
2454
3140
  # connection in the array of environment account connections, after
2455
3141
  # the list of environment account connections that was previously
2456
3142
  # requested.
@@ -2483,7 +3169,7 @@ module Aws::Proton
2483
3169
  # @return [Array<Types::EnvironmentAccountConnectionSummary>]
2484
3170
  #
2485
3171
  # @!attribute [rw] next_token
2486
- # A token to indicate the location of the next environment account
3172
+ # A token that indicates the location of the next environment account
2487
3173
  # connection in the array of environment account connections, after
2488
3174
  # the current requested list of environment account connections.
2489
3175
  # @return [String]
@@ -2510,8 +3196,8 @@ module Aws::Proton
2510
3196
  # @return [String]
2511
3197
  #
2512
3198
  # @!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
3199
+ # A token that indicates the location of the next environment output
3200
+ # in the array of environment outputs, after the list of environment
2515
3201
  # outputs that was previously requested.
2516
3202
  # @return [String]
2517
3203
  #
@@ -2525,9 +3211,9 @@ module Aws::Proton
2525
3211
  end
2526
3212
 
2527
3213
  # @!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.
3214
+ # A token that indicates the location of the next environment output
3215
+ # in the array of environment outputs, after the current requested
3216
+ # list of environment outputs.
2531
3217
  # @return [String]
2532
3218
  #
2533
3219
  # @!attribute [rw] outputs
@@ -2556,10 +3242,10 @@ module Aws::Proton
2556
3242
  # @return [String]
2557
3243
  #
2558
3244
  # @!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.
3245
+ # A token that indicates the location of the next environment
3246
+ # provisioned resource in the array of environment provisioned
3247
+ # resources, after the list of environment provisioned resources that
3248
+ # was previously requested.
2563
3249
  # @return [String]
2564
3250
  #
2565
3251
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListEnvironmentProvisionedResourcesInput AWS API Documentation
@@ -2572,9 +3258,9 @@ module Aws::Proton
2572
3258
  end
2573
3259
 
2574
3260
  # @!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.
3261
+ # A token that indicates the location of the next environment
3262
+ # provisioned resource in the array of provisioned resources, after
3263
+ # the current requested list of environment provisioned resources.
2578
3264
  # @return [String]
2579
3265
  #
2580
3266
  # @!attribute [rw] provisioned_resources
@@ -2614,10 +3300,10 @@ module Aws::Proton
2614
3300
  # @return [Integer]
2615
3301
  #
2616
3302
  # @!attribute [rw] next_token
2617
- # A token to indicate the location of the next major or minor version
2618
- # in the array of major or minor versions of an environment template,
2619
- # after the list of major or minor versions that was previously
2620
- # requested.
3303
+ # A token that indicates the location of the next major or minor
3304
+ # version in the array of major or minor versions of an environment
3305
+ # template, after the list of major or minor versions that was
3306
+ # previously requested.
2621
3307
  # @return [String]
2622
3308
  #
2623
3309
  # @!attribute [rw] template_name
@@ -2636,10 +3322,10 @@ module Aws::Proton
2636
3322
  end
2637
3323
 
2638
3324
  # @!attribute [rw] next_token
2639
- # A token to indicate the location of the next major or minor version
2640
- # in the array of major or minor versions of an environment template,
2641
- # after the list of major or minor versions that was previously
2642
- # requested.
3325
+ # A token that indicates the location of the next major or minor
3326
+ # version in the array of major or minor versions of an environment
3327
+ # template, after the list of major or minor versions that was
3328
+ # previously requested.
2643
3329
  # @return [String]
2644
3330
  #
2645
3331
  # @!attribute [rw] template_versions
@@ -2669,8 +3355,8 @@ module Aws::Proton
2669
3355
  # @return [Integer]
2670
3356
  #
2671
3357
  # @!attribute [rw] next_token
2672
- # A token to indicate the location of the next environment template in
2673
- # the array of environment templates, after the list of environment
3358
+ # A token that indicates the location of the next environment template
3359
+ # in the array of environment templates, after the list of environment
2674
3360
  # templates that was previously requested.
2675
3361
  # @return [String]
2676
3362
  #
@@ -2684,9 +3370,9 @@ module Aws::Proton
2684
3370
  end
2685
3371
 
2686
3372
  # @!attribute [rw] next_token
2687
- # A token to indicate the location of the next environment template in
2688
- # the array of environment templates, after the current requested list
2689
- # of environment templates.
3373
+ # A token that indicates the location of the next environment template
3374
+ # in the array of environment templates, after the current requested
3375
+ # list of environment templates.
2690
3376
  # @return [String]
2691
3377
  #
2692
3378
  # @!attribute [rw] templates
@@ -2725,7 +3411,7 @@ module Aws::Proton
2725
3411
  # @return [Integer]
2726
3412
  #
2727
3413
  # @!attribute [rw] next_token
2728
- # A token to indicate the location of the next environment in the
3414
+ # A token that indicates the location of the next environment in the
2729
3415
  # array of environments, after the list of environments that was
2730
3416
  # previously requested.
2731
3417
  # @return [String]
@@ -2745,7 +3431,7 @@ module Aws::Proton
2745
3431
  # @return [Array<Types::EnvironmentSummary>]
2746
3432
  #
2747
3433
  # @!attribute [rw] next_token
2748
- # A token to indicate the location of the next environment in the
3434
+ # A token that indicates the location of the next environment in the
2749
3435
  # array of environments, after the current requested list of
2750
3436
  # environments.
2751
3437
  # @return [String]
@@ -2772,8 +3458,8 @@ module Aws::Proton
2772
3458
  # @return [Integer]
2773
3459
  #
2774
3460
  # @!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
3461
+ # A token that indicates the location of the next repository in the
3462
+ # array of repositories, after the list of repositories previously
2777
3463
  # requested.
2778
3464
  # @return [String]
2779
3465
  #
@@ -2787,8 +3473,9 @@ module Aws::Proton
2787
3473
  end
2788
3474
 
2789
3475
  # @!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.
3476
+ # A token that indicates the location of the next repository in the
3477
+ # array of repositories, after the current requested list of
3478
+ # repositories.
2792
3479
  # @return [String]
2793
3480
  #
2794
3481
  # @!attribute [rw] repositories
@@ -2815,7 +3502,7 @@ module Aws::Proton
2815
3502
  # }
2816
3503
  #
2817
3504
  # @!attribute [rw] next_token
2818
- # A token to indicate the location of the next repository sync
3505
+ # A token that indicates the location of the next repository sync
2819
3506
  # definition in the array of repository sync definitions, after the
2820
3507
  # list of repository sync definitions previously requested.
2821
3508
  # @return [String]
@@ -2844,7 +3531,7 @@ module Aws::Proton
2844
3531
  end
2845
3532
 
2846
3533
  # @!attribute [rw] next_token
2847
- # A token to indicate the location of the next repository sync
3534
+ # A token that indicates the location of the next repository sync
2848
3535
  # definition in the array of repository sync definitions, after the
2849
3536
  # current requested list of repository sync definitions.
2850
3537
  # @return [String]
@@ -2872,16 +3559,16 @@ module Aws::Proton
2872
3559
  # }
2873
3560
  #
2874
3561
  # @!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.
3562
+ # A token that indicates the location of the next output in the array
3563
+ # of outputs, after the list of outputs that was previously requested.
2877
3564
  # @return [String]
2878
3565
  #
2879
3566
  # @!attribute [rw] service_instance_name
2880
- # The service instance name.
3567
+ # The name of the service instance whose outputs you want.
2881
3568
  # @return [String]
2882
3569
  #
2883
3570
  # @!attribute [rw] service_name
2884
- # The service name.
3571
+ # The name of the service that `serviceInstanceName` is associated to.
2885
3572
  # @return [String]
2886
3573
  #
2887
3574
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstanceOutputsInput AWS API Documentation
@@ -2895,12 +3582,12 @@ module Aws::Proton
2895
3582
  end
2896
3583
 
2897
3584
  # @!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.
3585
+ # A token that indicates the location of the next output in the array
3586
+ # of outputs, after the current requested list of outputs.
2900
3587
  # @return [String]
2901
3588
  #
2902
3589
  # @!attribute [rw] outputs
2903
- # An array of service instance infrastructure as code outputs.
3590
+ # An array of service instance Infrastructure as Code (IaC) outputs.
2904
3591
  # @return [Array<Types::Output>]
2905
3592
  #
2906
3593
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstanceOutputsOutput AWS API Documentation
@@ -2922,17 +3609,18 @@ module Aws::Proton
2922
3609
  # }
2923
3610
  #
2924
3611
  # @!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
3612
+ # A token that indicates the location of the next provisioned resource
3613
+ # in the array of provisioned resources, after the list of provisioned
2927
3614
  # resources that was previously requested.
2928
3615
  # @return [String]
2929
3616
  #
2930
3617
  # @!attribute [rw] service_instance_name
2931
- # The service instance name.
3618
+ # The name of the service instance whose provisioned resources you
3619
+ # want.
2932
3620
  # @return [String]
2933
3621
  #
2934
3622
  # @!attribute [rw] service_name
2935
- # The service name.
3623
+ # The name of the service that `serviceInstanceName` is associated to.
2936
3624
  # @return [String]
2937
3625
  #
2938
3626
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstanceProvisionedResourcesInput AWS API Documentation
@@ -2946,9 +3634,9 @@ module Aws::Proton
2946
3634
  end
2947
3635
 
2948
3636
  # @!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.
3637
+ # A token that indicates the location of the next provisioned resource
3638
+ # in the array of provisioned resources, after the current requested
3639
+ # list of provisioned resources.
2952
3640
  # @return [String]
2953
3641
  #
2954
3642
  # @!attribute [rw] provisioned_resources
@@ -2978,8 +3666,8 @@ module Aws::Proton
2978
3666
  # @return [Integer]
2979
3667
  #
2980
3668
  # @!attribute [rw] next_token
2981
- # A token to indicate the location of the next service in the array of
2982
- # service instances, after the list of service instances that was
3669
+ # A token that indicates the location of the next service in the array
3670
+ # of service instances, after the list of service instances that was
2983
3671
  # previously requested.
2984
3672
  # @return [String]
2985
3673
  #
@@ -2998,13 +3686,13 @@ module Aws::Proton
2998
3686
  end
2999
3687
 
3000
3688
  # @!attribute [rw] next_token
3001
- # A token to indicate the location of the next service instance in the
3002
- # array of service instances, after the current requested list of
3689
+ # A token that indicates the location of the next service instance in
3690
+ # the array of service instances, after the current requested list of
3003
3691
  # service instances.
3004
3692
  # @return [String]
3005
3693
  #
3006
3694
  # @!attribute [rw] service_instances
3007
- # An array of service instances with summaries of detail data.
3695
+ # An array of service instances with summary data.
3008
3696
  # @return [Array<Types::ServiceInstanceSummary>]
3009
3697
  #
3010
3698
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstancesOutput AWS API Documentation
@@ -3025,12 +3713,12 @@ module Aws::Proton
3025
3713
  # }
3026
3714
  #
3027
3715
  # @!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.
3716
+ # A token that indicates the location of the next output in the array
3717
+ # of outputs, after the list of outputs that was previously requested.
3030
3718
  # @return [String]
3031
3719
  #
3032
3720
  # @!attribute [rw] service_name
3033
- # The service name.
3721
+ # The name of the service whose pipeline's outputs you want.
3034
3722
  # @return [String]
3035
3723
  #
3036
3724
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicePipelineOutputsInput AWS API Documentation
@@ -3043,12 +3731,12 @@ module Aws::Proton
3043
3731
  end
3044
3732
 
3045
3733
  # @!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.
3734
+ # A token that indicates the location of the next output in the array
3735
+ # of outputs, after the current requested list of outputs.
3048
3736
  # @return [String]
3049
3737
  #
3050
3738
  # @!attribute [rw] outputs
3051
- # An array of outputs.
3739
+ # An array of service pipeline Infrastructure as Code (IaC) outputs.
3052
3740
  # @return [Array<Types::Output>]
3053
3741
  #
3054
3742
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicePipelineOutputsOutput AWS API Documentation
@@ -3069,13 +3757,14 @@ module Aws::Proton
3069
3757
  # }
3070
3758
  #
3071
3759
  # @!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
3760
+ # A token that indicates the location of the next provisioned resource
3761
+ # in the array of provisioned resources, after the list of provisioned
3074
3762
  # resources that was previously requested.
3075
3763
  # @return [String]
3076
3764
  #
3077
3765
  # @!attribute [rw] service_name
3078
- # The service name.
3766
+ # The name of the service whose pipeline's provisioned resources you
3767
+ # want.
3079
3768
  # @return [String]
3080
3769
  #
3081
3770
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicePipelineProvisionedResourcesInput AWS API Documentation
@@ -3088,9 +3777,9 @@ module Aws::Proton
3088
3777
  end
3089
3778
 
3090
3779
  # @!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.
3780
+ # A token that indicates the location of the next provisioned resource
3781
+ # in the array of provisioned resources, after the current requested
3782
+ # list of provisioned resources.
3094
3783
  # @return [String]
3095
3784
  #
3096
3785
  # @!attribute [rw] provisioned_resources
@@ -3130,9 +3819,10 @@ module Aws::Proton
3130
3819
  # @return [Integer]
3131
3820
  #
3132
3821
  # @!attribute [rw] next_token
3133
- # A token to indicate the location of the next major or minor version
3134
- # in the array of major or minor versions of a service template, after
3135
- # the list of major or minor versions that was previously requested.
3822
+ # A token that indicates the location of the next major or minor
3823
+ # version in the array of major or minor versions of a service
3824
+ # template, after the list of major or minor versions that was
3825
+ # previously requested.
3136
3826
  # @return [String]
3137
3827
  #
3138
3828
  # @!attribute [rw] template_name
@@ -3151,9 +3841,10 @@ module Aws::Proton
3151
3841
  end
3152
3842
 
3153
3843
  # @!attribute [rw] next_token
3154
- # A token to indicate the location of the next major or minor version
3155
- # in the array of major or minor versions of a service template, after
3156
- # the current requested list of service major or minor versions.
3844
+ # A token that indicates the location of the next major or minor
3845
+ # version in the array of major or minor versions of a service
3846
+ # template, after the current requested list of service major or minor
3847
+ # versions.
3157
3848
  # @return [String]
3158
3849
  #
3159
3850
  # @!attribute [rw] template_versions
@@ -3183,8 +3874,8 @@ module Aws::Proton
3183
3874
  # @return [Integer]
3184
3875
  #
3185
3876
  # @!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
3877
+ # A token that indicates the location of the next service template in
3878
+ # the array of service templates, after the list of service templates
3188
3879
  # previously requested.
3189
3880
  # @return [String]
3190
3881
  #
@@ -3198,8 +3889,8 @@ module Aws::Proton
3198
3889
  end
3199
3890
 
3200
3891
  # @!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
3892
+ # A token that indicates the location of the next service template in
3893
+ # the array of service templates, after the current requested list of
3203
3894
  # service templates.
3204
3895
  # @return [String]
3205
3896
  #
@@ -3229,8 +3920,9 @@ module Aws::Proton
3229
3920
  # @return [Integer]
3230
3921
  #
3231
3922
  # @!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.
3923
+ # A token that indicates the location of the next service in the array
3924
+ # of services, after the list of services that was previously
3925
+ # requested.
3234
3926
  # @return [String]
3235
3927
  #
3236
3928
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicesInput AWS API Documentation
@@ -3243,8 +3935,8 @@ module Aws::Proton
3243
3935
  end
3244
3936
 
3245
3937
  # @!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.
3938
+ # A token that indicates the location of the next service in the array
3939
+ # of services, after the current requested list of services.
3248
3940
  # @return [String]
3249
3941
  #
3250
3942
  # @!attribute [rw] services
@@ -3274,7 +3966,7 @@ module Aws::Proton
3274
3966
  # @return [Integer]
3275
3967
  #
3276
3968
  # @!attribute [rw] next_token
3277
- # A token to indicate the location of the next resource tag in the
3969
+ # A token that indicates the location of the next resource tag in the
3278
3970
  # array of resource tags, after the list of resource tags that was
3279
3971
  # previously requested.
3280
3972
  # @return [String]
@@ -3294,13 +3986,13 @@ module Aws::Proton
3294
3986
  end
3295
3987
 
3296
3988
  # @!attribute [rw] next_token
3297
- # A token to indicate the location of the next resource tag in the
3989
+ # A token that indicates the location of the next resource tag in the
3298
3990
  # array of resource tags, after the current requested list of resource
3299
3991
  # tags.
3300
3992
  # @return [String]
3301
3993
  #
3302
3994
  # @!attribute [rw] tags
3303
- # An array of resource tags with detail data.
3995
+ # A list of resource tags with detail data.
3304
3996
  # @return [Array<Types::Tag>]
3305
3997
  #
3306
3998
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListTagsForResourceOutput AWS API Documentation
@@ -3325,7 +4017,7 @@ module Aws::Proton
3325
4017
  # ],
3326
4018
  # resource_arn: "Arn", # required
3327
4019
  # status: "IN_PROGRESS", # required, accepts IN_PROGRESS, FAILED, SUCCEEDED
3328
- # status_message: "SyntheticNotifyResourceDeploymentStatusChangeInputString",
4020
+ # status_message: "NotifyResourceDeploymentStatusChangeInputStatusMessageString",
3329
4021
  # }
3330
4022
  #
3331
4023
  # @!attribute [rw] deployment_id
@@ -3403,16 +4095,16 @@ module Aws::Proton
3403
4095
  # @return [String]
3404
4096
  #
3405
4097
  # @!attribute [rw] provisioning_engine
3406
- # The resource provisioning engine.
4098
+ # The resource provisioning engine. At this time, `CLOUDFORMATION` can
4099
+ # be used for Amazon Web Services-managed provisioning, and
4100
+ # `TERRAFORM` can be used for self-managed provisioning.
3407
4101
  #
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.
4102
+ # For more information, see [Self-managed provisioning][1] in the
4103
+ # *Proton Administrator Guide*.
3412
4104
  #
3413
4105
  #
3414
4106
  #
3415
- # [1]: https://aws.amazon.com/service-terms
4107
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-works-prov-methods.html#ag-works-prov-methods-self
3416
4108
  # @return [String]
3417
4109
  #
3418
4110
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ProvisionedResource AWS API Documentation
@@ -3457,7 +4149,7 @@ module Aws::Proton
3457
4149
  include Aws::Structure
3458
4150
  end
3459
4151
 
3460
- # Detail date for a repository that has been registered with Proton.
4152
+ # Detailed data of a repository that has been registered with Proton.
3461
4153
  #
3462
4154
  # @!attribute [rw] arn
3463
4155
  # The repository Amazon Resource Name (ARN).
@@ -3494,15 +4186,6 @@ module Aws::Proton
3494
4186
 
3495
4187
  # Detail data for a repository branch.
3496
4188
  #
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
4189
  # @!attribute [rw] arn
3507
4190
  # The Amazon Resource Name (ARN) of the repository branch.
3508
4191
  # @return [String]
@@ -3532,15 +4215,6 @@ module Aws::Proton
3532
4215
 
3533
4216
  # Detail input data for a repository branch.
3534
4217
  #
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
4218
  # @note When making an API call, you may pass RepositoryBranchInput
3545
4219
  # data as a hash:
3546
4220
  #
@@ -3572,7 +4246,7 @@ module Aws::Proton
3572
4246
  include Aws::Structure
3573
4247
  end
3574
4248
 
3575
- # A summary of detail data for a registered repository.
4249
+ # Summary data of a repository that has been registered with Proton.
3576
4250
  #
3577
4251
  # @!attribute [rw] arn
3578
4252
  # The Amazon Resource Name (ARN) for a repository.
@@ -3824,7 +4498,7 @@ module Aws::Proton
3824
4498
  include Aws::Structure
3825
4499
  end
3826
4500
 
3827
- # The service detail data.
4501
+ # Detailed data of an Proton service resource.
3828
4502
  #
3829
4503
  # @!attribute [rw] arn
3830
4504
  # The Amazon Resource Name (ARN) of the service.
@@ -3840,7 +4514,7 @@ module Aws::Proton
3840
4514
  # @return [Time]
3841
4515
  #
3842
4516
  # @!attribute [rw] description
3843
- # A description of a service.
4517
+ # A description of the service.
3844
4518
  # @return [String]
3845
4519
  #
3846
4520
  # @!attribute [rw] last_modified_at
@@ -3907,7 +4581,7 @@ module Aws::Proton
3907
4581
  include Aws::Structure
3908
4582
  end
3909
4583
 
3910
- # The service instance detail data.
4584
+ # Detailed data of an Proton service instance resource.
3911
4585
  #
3912
4586
  # @!attribute [rw] arn
3913
4587
  # The Amazon Resource Name (ARN) of the service instance.
@@ -3922,7 +4596,7 @@ module Aws::Proton
3922
4596
  # @return [String]
3923
4597
  #
3924
4598
  # @!attribute [rw] deployment_status_message
3925
- # A service instance deployment status message.
4599
+ # The message associated with the service instance deployment status.
3926
4600
  # @return [String]
3927
4601
  #
3928
4602
  # @!attribute [rw] environment_name
@@ -3986,7 +4660,7 @@ module Aws::Proton
3986
4660
  include Aws::Structure
3987
4661
  end
3988
4662
 
3989
- # A summary of the service instance detail data.
4663
+ # Summary data of an Proton service instance resource.
3990
4664
  #
3991
4665
  # @!attribute [rw] arn
3992
4666
  # The Amazon Resource Name (ARN) of the service instance.
@@ -4056,7 +4730,7 @@ module Aws::Proton
4056
4730
  include Aws::Structure
4057
4731
  end
4058
4732
 
4059
- # The service pipeline detail data.
4733
+ # Detailed data of an Proton service instance pipeline resource.
4060
4734
  #
4061
4735
  # @!attribute [rw] arn
4062
4736
  # The Amazon Resource Name (ARN) of the service pipeline.
@@ -4137,7 +4811,7 @@ module Aws::Proton
4137
4811
  include Aws::Structure
4138
4812
  end
4139
4813
 
4140
- # A summary of the service detail data.
4814
+ # Summary data of an Proton service resource.
4141
4815
  #
4142
4816
  # @!attribute [rw] arn
4143
4817
  # The Amazon Resource Name (ARN) of the service.
@@ -4186,7 +4860,7 @@ module Aws::Proton
4186
4860
  include Aws::Structure
4187
4861
  end
4188
4862
 
4189
- # The service template detail data.
4863
+ # Detailed data of an Proton service template resource.
4190
4864
  #
4191
4865
  # @!attribute [rw] arn
4192
4866
  # The Amazon Resource Name (ARN) of the service template.
@@ -4243,7 +4917,7 @@ module Aws::Proton
4243
4917
  include Aws::Structure
4244
4918
  end
4245
4919
 
4246
- # The service template summary data.
4920
+ # Summary data of an Proton service template resource.
4247
4921
  #
4248
4922
  # @!attribute [rw] arn
4249
4923
  # The Amazon Resource Name (ARN) of the service template.
@@ -4294,7 +4968,7 @@ module Aws::Proton
4294
4968
  include Aws::Structure
4295
4969
  end
4296
4970
 
4297
- # The version of a service template detail data.
4971
+ # Detailed data of an Proton service template version resource.
4298
4972
  #
4299
4973
  # @!attribute [rw] arn
4300
4974
  # The Amazon Resource Name (ARN) of the version of a service template.
@@ -4342,6 +5016,19 @@ module Aws::Proton
4342
5016
  # A service template version status message.
4343
5017
  # @return [String]
4344
5018
  #
5019
+ # @!attribute [rw] supported_component_sources
5020
+ # An array of supported component sources. Components with supported
5021
+ # sources can be attached to service instances based on this service
5022
+ # template version.
5023
+ #
5024
+ # For more information about components, see [Proton components][1] in
5025
+ # the *Proton Administrator Guide*.
5026
+ #
5027
+ #
5028
+ #
5029
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
5030
+ # @return [Array<String>]
5031
+ #
4345
5032
  # @!attribute [rw] template_name
4346
5033
  # The name of the version of a service template.
4347
5034
  # @return [String]
@@ -4360,12 +5047,13 @@ module Aws::Proton
4360
5047
  :schema,
4361
5048
  :status,
4362
5049
  :status_message,
5050
+ :supported_component_sources,
4363
5051
  :template_name)
4364
5052
  SENSITIVE = [:description, :schema, :status_message]
4365
5053
  include Aws::Structure
4366
5054
  end
4367
5055
 
4368
- # A summary of the service template version detail data.
5056
+ # Summary data of an Proton service template version resource.
4369
5057
  #
4370
5058
  # @!attribute [rw] arn
4371
5059
  # The Amazon Resource Name (ARN) of the version of a service template.
@@ -4466,12 +5154,12 @@ module Aws::Proton
4466
5154
  # }
4467
5155
  #
4468
5156
  # @!attribute [rw] resource_arn
4469
- # The Amazon Resource Name (ARN) of the resource that the resource tag
4470
- # is applied to.
5157
+ # The Amazon Resource Name (ARN) of the Proton resource to apply
5158
+ # customer tags to.
4471
5159
  # @return [String]
4472
5160
  #
4473
5161
  # @!attribute [rw] tags
4474
- # An array of resource tags to apply to a resource.
5162
+ # A list of customer tags to apply to the Proton resource.
4475
5163
  # @return [Array<Types::Tag>]
4476
5164
  #
4477
5165
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/TagResourceInput AWS API Documentation
@@ -4570,13 +5258,13 @@ module Aws::Proton
4570
5258
  # }
4571
5259
  #
4572
5260
  # @!attribute [rw] resource_arn
4573
- # The Amazon Resource Name (ARN) of the resource that the tag is to be
4574
- # removed from.
5261
+ # The Amazon Resource Name (ARN) of the resource to remove customer
5262
+ # tags from.
4575
5263
  # @return [String]
4576
5264
  #
4577
5265
  # @!attribute [rw] tag_keys
4578
- # An array of tag keys indicating the resource tags to be removed from
4579
- # the resource.
5266
+ # A list of customer tag keys that indicate the customer tags to be
5267
+ # removed from the resource.
4580
5268
  # @return [Array<String>]
4581
5269
  #
4582
5270
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UntagResourceInput AWS API Documentation
@@ -4605,29 +5293,16 @@ module Aws::Proton
4605
5293
  # }
4606
5294
  #
4607
5295
  # @!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
5296
+ # A repository for pipeline provisioning. Specify it if you have
5297
+ # environments configured for self-managed provisioning with services
5298
+ # that include pipelines.
4618
5299
  # @return [Types::RepositoryBranchInput]
4619
5300
  #
4620
5301
  # @!attribute [rw] pipeline_service_role_arn
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
5302
+ # The Amazon Resource Name (ARN) of the service role you want to use
5303
+ # for provisioning pipelines. Assumed by Proton for Amazon Web
5304
+ # Services-managed provisioning, and by customer-owned automation for
5305
+ # self-managed provisioning.
4631
5306
  # @return [String]
4632
5307
  #
4633
5308
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateAccountSettingsInput AWS API Documentation
@@ -4640,8 +5315,8 @@ module Aws::Proton
4640
5315
  end
4641
5316
 
4642
5317
  # @!attribute [rw] account_settings
4643
- # The Proton pipeline service role repository detail data that's
4644
- # returned by Proton.
5318
+ # The Proton pipeline service role and repository data shared across
5319
+ # the Amazon Web Services account.
4645
5320
  # @return [Types::AccountSettings]
4646
5321
  #
4647
5322
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateAccountSettingsOutput AWS API Documentation
@@ -4652,26 +5327,148 @@ module Aws::Proton
4652
5327
  include Aws::Structure
4653
5328
  end
4654
5329
 
5330
+ # @note When making an API call, you may pass UpdateComponentInput
5331
+ # data as a hash:
5332
+ #
5333
+ # {
5334
+ # deployment_type: "NONE", # required, accepts NONE, CURRENT_VERSION
5335
+ # description: "Description",
5336
+ # name: "ResourceName", # required
5337
+ # service_instance_name: "ResourceNameOrEmpty",
5338
+ # service_name: "ResourceNameOrEmpty",
5339
+ # service_spec: "SpecContents",
5340
+ # template_file: "TemplateFileContents",
5341
+ # }
5342
+ #
5343
+ # @!attribute [rw] deployment_type
5344
+ # The deployment type. It defines the mode for updating a component,
5345
+ # as follows:
5346
+ #
5347
+ #
5348
+ #
5349
+ # : `NONE`
5350
+ #
5351
+ # In this mode, a deployment *doesn't* occur. Only the requested
5352
+ # metadata parameters are updated. You can only specify
5353
+ # `description` in this mode.
5354
+ #
5355
+ #
5356
+ #
5357
+ # : `CURRENT_VERSION`
5358
+ #
5359
+ # In this mode, the component is deployed and updated with the new
5360
+ # `serviceSpec`, `templateSource`, and/or `type` that you provide.
5361
+ # Only requested parameters are updated.
5362
+ # @return [String]
5363
+ #
5364
+ # @!attribute [rw] description
5365
+ # An optional customer-provided description of the component.
5366
+ # @return [String]
5367
+ #
5368
+ # @!attribute [rw] name
5369
+ # The name of the component to update.
5370
+ # @return [String]
5371
+ #
5372
+ # @!attribute [rw] service_instance_name
5373
+ # The name of the service instance that you want to attach this
5374
+ # component to. Don't specify to keep the component's current
5375
+ # service instance attachment. Specify an empty string to detach the
5376
+ # component from the service instance it's attached to. Specify
5377
+ # non-empty values for both `serviceInstanceName` and `serviceName` or
5378
+ # for neither of them.
5379
+ # @return [String]
5380
+ #
5381
+ # @!attribute [rw] service_name
5382
+ # The name of the service that `serviceInstanceName` is associated
5383
+ # with. Don't specify to keep the component's current service
5384
+ # instance attachment. Specify an empty string to detach the component
5385
+ # from the service instance it's attached to. Specify non-empty
5386
+ # values for both `serviceInstanceName` and `serviceName` or for
5387
+ # neither of them.
5388
+ # @return [String]
5389
+ #
5390
+ # @!attribute [rw] service_spec
5391
+ # The service spec that you want the component to use to access
5392
+ # service inputs. Set this only when the component is attached to a
5393
+ # service instance.
5394
+ # @return [String]
5395
+ #
5396
+ # @!attribute [rw] template_file
5397
+ # A path to the Infrastructure as Code (IaC) file describing
5398
+ # infrastructure that a custom component provisions.
5399
+ #
5400
+ # <note markdown="1"> Components support a single IaC file, even if you use Terraform as
5401
+ # your template language.
5402
+ #
5403
+ # </note>
5404
+ # @return [String]
5405
+ #
5406
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateComponentInput AWS API Documentation
5407
+ #
5408
+ class UpdateComponentInput < Struct.new(
5409
+ :deployment_type,
5410
+ :description,
5411
+ :name,
5412
+ :service_instance_name,
5413
+ :service_name,
5414
+ :service_spec,
5415
+ :template_file)
5416
+ SENSITIVE = [:description, :service_spec, :template_file]
5417
+ include Aws::Structure
5418
+ end
5419
+
5420
+ # @!attribute [rw] component
5421
+ # The detailed data of the updated component.
5422
+ # @return [Types::Component]
5423
+ #
5424
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateComponentOutput AWS API Documentation
5425
+ #
5426
+ class UpdateComponentOutput < Struct.new(
5427
+ :component)
5428
+ SENSITIVE = []
5429
+ include Aws::Structure
5430
+ end
5431
+
4655
5432
  # @note When making an API call, you may pass UpdateEnvironmentAccountConnectionInput
4656
5433
  # data as a hash:
4657
5434
  #
4658
5435
  # {
5436
+ # component_role_arn: "Arn",
4659
5437
  # id: "EnvironmentAccountConnectionId", # required
4660
- # role_arn: "Arn", # required
5438
+ # role_arn: "Arn",
4661
5439
  # }
4662
5440
  #
5441
+ # @!attribute [rw] component_role_arn
5442
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
5443
+ # uses when provisioning directly defined components in the associated
5444
+ # environment account. It determines the scope of infrastructure that
5445
+ # a component can provision in the account.
5446
+ #
5447
+ # The environment account connection must have a `componentRoleArn` to
5448
+ # allow directly defined components to be associated with any
5449
+ # environments running in the account.
5450
+ #
5451
+ # For more information about components, see [Proton components][1] in
5452
+ # the *Proton Administrator Guide*.
5453
+ #
5454
+ #
5455
+ #
5456
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
5457
+ # @return [String]
5458
+ #
4663
5459
  # @!attribute [rw] id
4664
5460
  # The ID of the environment account connection to update.
4665
5461
  # @return [String]
4666
5462
  #
4667
5463
  # @!attribute [rw] role_arn
4668
- # The Amazon Resource Name (ARN) of the IAM service role that is
5464
+ # The Amazon Resource Name (ARN) of the IAM service role that's
4669
5465
  # associated with the environment account connection to update.
4670
5466
  # @return [String]
4671
5467
  #
4672
5468
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateEnvironmentAccountConnectionInput AWS API Documentation
4673
5469
  #
4674
5470
  class UpdateEnvironmentAccountConnectionInput < Struct.new(
5471
+ :component_role_arn,
4675
5472
  :id,
4676
5473
  :role_arn)
4677
5474
  SENSITIVE = []
@@ -4695,6 +5492,7 @@ module Aws::Proton
4695
5492
  # data as a hash:
4696
5493
  #
4697
5494
  # {
5495
+ # component_role_arn: "Arn",
4698
5496
  # deployment_type: "NONE", # required, accepts NONE, CURRENT_VERSION, MINOR_VERSION, MAJOR_VERSION
4699
5497
  # description: "Description",
4700
5498
  # environment_account_connection_id: "EnvironmentAccountConnectionId",
@@ -4710,9 +5508,26 @@ module Aws::Proton
4710
5508
  # template_minor_version: "TemplateVersionPart",
4711
5509
  # }
4712
5510
  #
5511
+ # @!attribute [rw] component_role_arn
5512
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
5513
+ # uses when provisioning directly defined components in this
5514
+ # environment. It determines the scope of infrastructure that a
5515
+ # component can provision.
5516
+ #
5517
+ # The environment must have a `componentRoleArn` to allow directly
5518
+ # defined components to be associated with the environment.
5519
+ #
5520
+ # For more information about components, see [Proton components][1] in
5521
+ # the *Proton Administrator Guide*.
5522
+ #
5523
+ #
5524
+ #
5525
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
5526
+ # @return [String]
5527
+ #
4713
5528
  # @!attribute [rw] deployment_type
4714
- # There are four modes for updating an environment as described in the
4715
- # following. The `deploymentType` field defines the mode.
5529
+ # There are four modes for updating an environment. The
5530
+ # `deploymentType` field defines the mode.
4716
5531
  #
4717
5532
  #
4718
5533
  #
@@ -4727,7 +5542,7 @@ module Aws::Proton
4727
5542
  #
4728
5543
  # In this mode, the environment is deployed and updated with the new
4729
5544
  # spec that you provide. Only requested parameters are updated.
4730
- # *Don’t* include minor or major version parameters when you use
5545
+ # *Don’t* include major or minor version parameters when you use
4731
5546
  # this `deployment-type`.
4732
5547
  #
4733
5548
  #
@@ -4773,16 +5588,8 @@ module Aws::Proton
4773
5588
  # @return [String]
4774
5589
  #
4775
5590
  # @!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
5591
+ # The infrastructure repository that you use to host your rendered
5592
+ # infrastructure templates for self-managed provisioning.
4786
5593
  # @return [Types::RepositoryBranchInput]
4787
5594
  #
4788
5595
  # @!attribute [rw] spec
@@ -4800,6 +5607,7 @@ module Aws::Proton
4800
5607
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateEnvironmentInput AWS API Documentation
4801
5608
  #
4802
5609
  class UpdateEnvironmentInput < Struct.new(
5610
+ :component_role_arn,
4803
5611
  :deployment_type,
4804
5612
  :description,
4805
5613
  :environment_account_connection_id,
@@ -4980,10 +5788,8 @@ module Aws::Proton
4980
5788
  # }
4981
5789
  #
4982
5790
  # @!attribute [rw] deployment_type
4983
- # The deployment type.
4984
- #
4985
- # There are four modes for updating a service instance as described in
4986
- # the following. The `deploymentType` field defines the mode.
5791
+ # The deployment type. It defines the mode for updating a service
5792
+ # instance, as follows:
4987
5793
  #
4988
5794
  #
4989
5795
  #
@@ -4998,8 +5804,8 @@ module Aws::Proton
4998
5804
  #
4999
5805
  # In this mode, the service instance is deployed and updated with
5000
5806
  # the new spec that you provide. Only requested parameters are
5001
- # updated. *Don’t* include minor or major version parameters when
5002
- # you use this `deployment-type`.
5807
+ # updated. *Don’t* include major or minor version parameters when
5808
+ # you use this deployment type.
5003
5809
  #
5004
5810
  #
5005
5811
  #
@@ -5016,9 +5822,9 @@ module Aws::Proton
5016
5822
  #
5017
5823
  # In this mode, the service instance is deployed and updated with
5018
5824
  # the published, recommended (latest) major and minor version of the
5019
- # current template, by default. You can also specify a different
5020
- # major version that is higher than the major version in use and a
5021
- # minor version (optional).
5825
+ # current template, by default. You can specify a different major
5826
+ # version that's higher than the major version in use and a minor
5827
+ # version.
5022
5828
  # @return [String]
5023
5829
  #
5024
5830
  # @!attribute [rw] name
@@ -5056,7 +5862,7 @@ module Aws::Proton
5056
5862
  end
5057
5863
 
5058
5864
  # @!attribute [rw] service_instance
5059
- # The service instance summary data returned by Proton.
5865
+ # The service instance summary data that's returned by Proton.
5060
5866
  # @return [Types::ServiceInstance]
5061
5867
  #
5062
5868
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServiceInstanceOutput AWS API Documentation
@@ -5093,8 +5899,8 @@ module Aws::Proton
5093
5899
  # @!attribute [rw] deployment_type
5094
5900
  # The deployment type.
5095
5901
  #
5096
- # There are four modes for updating a service pipeline as described in
5097
- # the following. The `deploymentType` field defines the mode.
5902
+ # There are four modes for updating a service pipeline. The
5903
+ # `deploymentType` field defines the mode.
5098
5904
  #
5099
5905
  #
5100
5906
  #
@@ -5109,7 +5915,7 @@ module Aws::Proton
5109
5915
  #
5110
5916
  # In this mode, the service pipeline is deployed and updated with
5111
5917
  # the new spec that you provide. Only requested parameters are
5112
- # updated. *Don’t* include minor or major version parameters when
5918
+ # updated. *Don’t* include major or minor version parameters when
5113
5919
  # you use this `deployment-type`.
5114
5920
  #
5115
5921
  #
@@ -5118,7 +5924,7 @@ module Aws::Proton
5118
5924
  #
5119
5925
  # In this mode, the service pipeline is deployed and updated with
5120
5926
  # the published, recommended (latest) minor version of the current
5121
- # major version in use, by default. You can also specify a different
5927
+ # major version in use, by default. You can specify a different
5122
5928
  # minor version of the current major version in use.
5123
5929
  #
5124
5930
  #
@@ -5127,9 +5933,9 @@ module Aws::Proton
5127
5933
  #
5128
5934
  # In this mode, the service pipeline is deployed and updated with
5129
5935
  # the published, recommended (latest) major and minor version of the
5130
- # current template, by default. You can also specify a different
5131
- # major version that is higher than the major version in use and a
5132
- # minor version (optional).
5936
+ # current template, by default. You can specify a different major
5937
+ # version that's higher than the major version in use and a minor
5938
+ # version.
5133
5939
  # @return [String]
5134
5940
  #
5135
5941
  # @!attribute [rw] service_name
@@ -5163,7 +5969,7 @@ module Aws::Proton
5163
5969
  end
5164
5970
 
5165
5971
  # @!attribute [rw] pipeline
5166
- # The pipeline details returned by Proton.
5972
+ # The pipeline details that are returned by Proton.
5167
5973
  # @return [Types::ServicePipeline]
5168
5974
  #
5169
5975
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServicePipelineOutput AWS API Documentation
@@ -5188,7 +5994,7 @@ module Aws::Proton
5188
5994
  # @return [String]
5189
5995
  #
5190
5996
  # @!attribute [rw] display_name
5191
- # The name of the service template to update as displayed in the
5997
+ # The name of the service template to update that's displayed in the
5192
5998
  # developer interface.
5193
5999
  # @return [String]
5194
6000
  #
@@ -5232,12 +6038,15 @@ module Aws::Proton
5232
6038
  # major_version: "TemplateVersionPart", # required
5233
6039
  # minor_version: "TemplateVersionPart", # required
5234
6040
  # status: "REGISTRATION_IN_PROGRESS", # accepts REGISTRATION_IN_PROGRESS, REGISTRATION_FAILED, DRAFT, PUBLISHED
6041
+ # supported_component_sources: ["DIRECTLY_DEFINED"], # accepts DIRECTLY_DEFINED
5235
6042
  # template_name: "ResourceName", # required
5236
6043
  # }
5237
6044
  #
5238
6045
  # @!attribute [rw] compatible_environment_templates
5239
- # An array of compatible environment names for a service template
5240
- # major or minor version to update.
6046
+ # An array of environment template objects that are compatible with
6047
+ # this service template version. A service instance based on this
6048
+ # service template version can run in environments based on compatible
6049
+ # templates.
5241
6050
  # @return [Array<Types::CompatibleEnvironmentTemplateInput>]
5242
6051
  #
5243
6052
  # @!attribute [rw] description
@@ -5258,6 +6067,25 @@ module Aws::Proton
5258
6067
  # The status of the service template minor version to update.
5259
6068
  # @return [String]
5260
6069
  #
6070
+ # @!attribute [rw] supported_component_sources
6071
+ # An array of supported component sources. Components with supported
6072
+ # sources can be attached to service instances based on this service
6073
+ # template version.
6074
+ #
6075
+ # <note markdown="1"> A change to `supportedComponentSources` doesn't impact existing
6076
+ # component attachments to instances based on this template version. A
6077
+ # change only affects later associations.
6078
+ #
6079
+ # </note>
6080
+ #
6081
+ # For more information about components, see [Proton components][1] in
6082
+ # the *Proton Administrator Guide*.
6083
+ #
6084
+ #
6085
+ #
6086
+ # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-components.html
6087
+ # @return [Array<String>]
6088
+ #
5261
6089
  # @!attribute [rw] template_name
5262
6090
  # The name of the service template.
5263
6091
  # @return [String]
@@ -5270,6 +6098,7 @@ module Aws::Proton
5270
6098
  :major_version,
5271
6099
  :minor_version,
5272
6100
  :status,
6101
+ :supported_component_sources,
5273
6102
  :template_name)
5274
6103
  SENSITIVE = [:description]
5275
6104
  include Aws::Structure
@@ -5304,7 +6133,7 @@ module Aws::Proton
5304
6133
  # @return [String]
5305
6134
  #
5306
6135
  # @!attribute [rw] repository_name
5307
- # The name of the repository, for example `myrepos/myrepo`.
6136
+ # The name of the repository (for example, `myrepos/myrepo`).
5308
6137
  # @return [String]
5309
6138
  #
5310
6139
  # @!attribute [rw] repository_provider