aws-sdk-proton 1.15.0 → 1.17.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,14 +54,15 @@ module Aws::Proton
54
54
  include Aws::Structure
55
55
  end
56
56
 
57
- # The Proton pipeline service role and repository data shared across the
58
- # Amazon Web Services account.
57
+ # Proton settings that are used for multiple services in the Amazon Web
58
+ # Services account.
59
59
  #
60
60
  # @!attribute [rw] pipeline_provisioning_repository
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.
61
+ # The linked repository for pipeline provisioning. Required if you
62
+ # have environments configured for self-managed provisioning with
63
+ # services that include pipelines. A linked repository is a repository
64
+ # that has been registered with Proton. For more information, see
65
+ # CreateRepository.
65
66
  # @return [Types::RepositoryBranch]
66
67
  #
67
68
  # @!attribute [rw] pipeline_service_role_arn
@@ -80,6 +81,38 @@ module Aws::Proton
80
81
  include Aws::Structure
81
82
  end
82
83
 
84
+ # @note When making an API call, you may pass CancelComponentDeploymentInput
85
+ # data as a hash:
86
+ #
87
+ # {
88
+ # component_name: "ResourceName", # required
89
+ # }
90
+ #
91
+ # @!attribute [rw] component_name
92
+ # The name of the component with the deployment to cancel.
93
+ # @return [String]
94
+ #
95
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CancelComponentDeploymentInput AWS API Documentation
96
+ #
97
+ class CancelComponentDeploymentInput < Struct.new(
98
+ :component_name)
99
+ SENSITIVE = []
100
+ include Aws::Structure
101
+ end
102
+
103
+ # @!attribute [rw] component
104
+ # The detailed data of the component with the deployment that is being
105
+ # canceled.
106
+ # @return [Types::Component]
107
+ #
108
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CancelComponentDeploymentOutput AWS API Documentation
109
+ #
110
+ class CancelComponentDeploymentOutput < Struct.new(
111
+ :component)
112
+ SENSITIVE = []
113
+ include Aws::Structure
114
+ end
115
+
83
116
  # @note When making an API call, you may pass CancelEnvironmentDeploymentInput
84
117
  # data as a hash:
85
118
  #
@@ -227,6 +260,165 @@ module Aws::Proton
227
260
  include Aws::Structure
228
261
  end
229
262
 
263
+ # Detailed data of an Proton component resource.
264
+ #
265
+ # For more information about components, see [Proton components][1] in
266
+ # the *Proton User Guide*.
267
+ #
268
+ #
269
+ #
270
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
271
+ #
272
+ # @!attribute [rw] arn
273
+ # The Amazon Resource Name (ARN) of the component.
274
+ # @return [String]
275
+ #
276
+ # @!attribute [rw] created_at
277
+ # The time when the component was created.
278
+ # @return [Time]
279
+ #
280
+ # @!attribute [rw] deployment_status
281
+ # The component deployment status.
282
+ # @return [String]
283
+ #
284
+ # @!attribute [rw] deployment_status_message
285
+ # The message associated with the component deployment status.
286
+ # @return [String]
287
+ #
288
+ # @!attribute [rw] description
289
+ # A description of the component.
290
+ # @return [String]
291
+ #
292
+ # @!attribute [rw] environment_name
293
+ # The name of the Proton environment that this component is associated
294
+ # with.
295
+ # @return [String]
296
+ #
297
+ # @!attribute [rw] last_deployment_attempted_at
298
+ # The time when a deployment of the component was last attempted.
299
+ # @return [Time]
300
+ #
301
+ # @!attribute [rw] last_deployment_succeeded_at
302
+ # The time when the component was last deployed successfully.
303
+ # @return [Time]
304
+ #
305
+ # @!attribute [rw] last_modified_at
306
+ # The time when the component was last modified.
307
+ # @return [Time]
308
+ #
309
+ # @!attribute [rw] name
310
+ # The name of the component.
311
+ # @return [String]
312
+ #
313
+ # @!attribute [rw] service_instance_name
314
+ # The name of the service instance that this component is attached to.
315
+ # Provided when a component is attached to a service instance.
316
+ # @return [String]
317
+ #
318
+ # @!attribute [rw] service_name
319
+ # The name of the service that `serviceInstanceName` is associated
320
+ # with. Provided when a component is attached to a service instance.
321
+ # @return [String]
322
+ #
323
+ # @!attribute [rw] service_spec
324
+ # The service spec that the component uses to access service inputs.
325
+ # Provided when a component is attached to a service instance.
326
+ # @return [String]
327
+ #
328
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/Component AWS API Documentation
329
+ #
330
+ class Component < Struct.new(
331
+ :arn,
332
+ :created_at,
333
+ :deployment_status,
334
+ :deployment_status_message,
335
+ :description,
336
+ :environment_name,
337
+ :last_deployment_attempted_at,
338
+ :last_deployment_succeeded_at,
339
+ :last_modified_at,
340
+ :name,
341
+ :service_instance_name,
342
+ :service_name,
343
+ :service_spec)
344
+ SENSITIVE = [:deployment_status_message, :description, :service_spec]
345
+ include Aws::Structure
346
+ end
347
+
348
+ # Summary data of an Proton component resource.
349
+ #
350
+ # For more information about components, see [Proton components][1] in
351
+ # the *Proton User Guide*.
352
+ #
353
+ #
354
+ #
355
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
356
+ #
357
+ # @!attribute [rw] arn
358
+ # The Amazon Resource Name (ARN) of the component.
359
+ # @return [String]
360
+ #
361
+ # @!attribute [rw] created_at
362
+ # The time when the component was created.
363
+ # @return [Time]
364
+ #
365
+ # @!attribute [rw] deployment_status
366
+ # The component deployment status.
367
+ # @return [String]
368
+ #
369
+ # @!attribute [rw] deployment_status_message
370
+ # The message associated with the component deployment status.
371
+ # @return [String]
372
+ #
373
+ # @!attribute [rw] environment_name
374
+ # The name of the Proton environment that this component is associated
375
+ # with.
376
+ # @return [String]
377
+ #
378
+ # @!attribute [rw] last_deployment_attempted_at
379
+ # The time when a deployment of the component was last attempted.
380
+ # @return [Time]
381
+ #
382
+ # @!attribute [rw] last_deployment_succeeded_at
383
+ # The time when the component was last deployed successfully.
384
+ # @return [Time]
385
+ #
386
+ # @!attribute [rw] last_modified_at
387
+ # The time when the component was last modified.
388
+ # @return [Time]
389
+ #
390
+ # @!attribute [rw] name
391
+ # The name of the component.
392
+ # @return [String]
393
+ #
394
+ # @!attribute [rw] service_instance_name
395
+ # The name of the service instance that this component is attached to.
396
+ # Provided when a component is attached to a service instance.
397
+ # @return [String]
398
+ #
399
+ # @!attribute [rw] service_name
400
+ # The name of the service that `serviceInstanceName` is associated
401
+ # with. Provided when a component is attached to a service instance.
402
+ # @return [String]
403
+ #
404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ComponentSummary AWS API Documentation
405
+ #
406
+ class ComponentSummary < Struct.new(
407
+ :arn,
408
+ :created_at,
409
+ :deployment_status,
410
+ :deployment_status_message,
411
+ :environment_name,
412
+ :last_deployment_attempted_at,
413
+ :last_deployment_succeeded_at,
414
+ :last_modified_at,
415
+ :name,
416
+ :service_instance_name,
417
+ :service_name)
418
+ SENSITIVE = [:deployment_status_message]
419
+ include Aws::Structure
420
+ end
421
+
230
422
  # The request *couldn't* be made due to a conflicting operation or
231
423
  # resource.
232
424
  #
@@ -241,11 +433,122 @@ module Aws::Proton
241
433
  include Aws::Structure
242
434
  end
243
435
 
436
+ # @note When making an API call, you may pass CreateComponentInput
437
+ # data as a hash:
438
+ #
439
+ # {
440
+ # description: "Description",
441
+ # environment_name: "ResourceName",
442
+ # manifest: "TemplateManifestContents", # required
443
+ # name: "ResourceName", # required
444
+ # service_instance_name: "ResourceName",
445
+ # service_name: "ResourceName",
446
+ # service_spec: "SpecContents",
447
+ # tags: [
448
+ # {
449
+ # key: "TagKey", # required
450
+ # value: "TagValue", # required
451
+ # },
452
+ # ],
453
+ # template_file: "TemplateFileContents", # required
454
+ # }
455
+ #
456
+ # @!attribute [rw] description
457
+ # An optional customer-provided description of the component.
458
+ # @return [String]
459
+ #
460
+ # @!attribute [rw] environment_name
461
+ # The name of the Proton environment that you want to associate this
462
+ # component with. You must specify this when you don't specify
463
+ # `serviceInstanceName` and `serviceName`.
464
+ # @return [String]
465
+ #
466
+ # @!attribute [rw] manifest
467
+ # A path to a manifest file that lists the Infrastructure as Code
468
+ # (IaC) file, template language, and rendering engine for
469
+ # infrastructure that a custom component provisions.
470
+ # @return [String]
471
+ #
472
+ # @!attribute [rw] name
473
+ # The customer-provided name of the component.
474
+ # @return [String]
475
+ #
476
+ # @!attribute [rw] service_instance_name
477
+ # The name of the service instance that you want to attach this
478
+ # component to. If you don't specify this, the component isn't
479
+ # attached to any service instance. Specify both `serviceInstanceName`
480
+ # and `serviceName` or neither of them.
481
+ # @return [String]
482
+ #
483
+ # @!attribute [rw] service_name
484
+ # The name of the service that `serviceInstanceName` is associated
485
+ # with. If you don't specify this, the component isn't attached to
486
+ # any service instance. Specify both `serviceInstanceName` and
487
+ # `serviceName` or neither of them.
488
+ # @return [String]
489
+ #
490
+ # @!attribute [rw] service_spec
491
+ # The service spec that you want the component to use to access
492
+ # service inputs. Set this only when you attach the component to a
493
+ # service instance.
494
+ # @return [String]
495
+ #
496
+ # @!attribute [rw] tags
497
+ # An optional list of metadata items that you can associate with the
498
+ # Proton component. A tag is a key-value pair.
499
+ #
500
+ # For more information, see [Proton resources and tagging][1] in the
501
+ # *Proton User Guide*.
502
+ #
503
+ #
504
+ #
505
+ # [1]: 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
+
244
546
  # @note When making an API call, you may pass CreateEnvironmentAccountConnectionInput
245
547
  # data as a hash:
246
548
  #
247
549
  # {
248
550
  # client_token: "ClientToken",
551
+ # component_role_arn: "Arn",
249
552
  # environment_name: "ResourceName", # required
250
553
  # management_account_id: "AwsAccountId", # required
251
554
  # role_arn: "Arn", # required
@@ -266,6 +569,24 @@ module Aws::Proton
266
569
  # not need to pass this option.
267
570
  # @return [String]
268
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 User Guide*.
584
+ #
585
+ #
586
+ #
587
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
588
+ # @return [String]
589
+ #
269
590
  # @!attribute [rw] environment_name
270
591
  # The name of the Proton environment that's created in the associated
271
592
  # management account.
@@ -292,17 +613,18 @@ module Aws::Proton
292
613
  # Proton environment account connection. A tag is a key-value pair.
293
614
  #
294
615
  # For more information, see [Proton resources and tagging][1] in the
295
- # *Proton Administrator Guide*.
616
+ # *Proton User Guide*.
296
617
  #
297
618
  #
298
619
  #
299
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
620
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
300
621
  # @return [Array<Types::Tag>]
301
622
  #
302
623
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateEnvironmentAccountConnectionInput AWS API Documentation
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 User Guide*.
686
+ #
687
+ #
688
+ #
689
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/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]
@@ -357,7 +697,7 @@ module Aws::Proton
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
699
  # environment account. For more information, see [Environment account
360
- # connections][1] in the *Proton Administrator guide*.
700
+ # connections][1] in the *Proton User guide*.
361
701
  #
362
702
  # To use Amazon Web Services-managed provisioning for the environment,
363
703
  # specify either the `environmentAccountConnectionId` or
@@ -366,7 +706,7 @@ module Aws::Proton
366
706
  #
367
707
  #
368
708
  #
369
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-env-account-connections.html
709
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-env-account-connections.html
370
710
  # @return [String]
371
711
  #
372
712
  # @!attribute [rw] name
@@ -384,8 +724,10 @@ module Aws::Proton
384
724
  # @return [String]
385
725
  #
386
726
  # @!attribute [rw] provisioning_repository
387
- # The infrastructure repository that you use to host your rendered
388
- # infrastructure templates for self-managed provisioning.
727
+ # The linked repository that you use to host your rendered
728
+ # infrastructure templates for self-managed provisioning. A linked
729
+ # repository is a repository that has been registered with Proton. For
730
+ # more information, see CreateRepository.
389
731
  #
390
732
  # To use self-managed provisioning for the environment, specify this
391
733
  # parameter and omit the `environmentAccountConnectionId` and
@@ -395,24 +737,23 @@ module Aws::Proton
395
737
  # @!attribute [rw] spec
396
738
  # A YAML formatted string that provides inputs as defined in the
397
739
  # environment template bundle schema file. For more information, see
398
- # [Environments][1] in the *Proton Administrator Guide*.
740
+ # [Environments][1] in the *Proton User Guide*.
399
741
  #
400
742
  #
401
743
  #
402
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-environments.html
744
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-environments.html
403
745
  # @return [String]
404
746
  #
405
747
  # @!attribute [rw] tags
406
748
  # An optional list of metadata items that you can associate with the
407
749
  # Proton environment. A tag is a key-value pair.
408
750
  #
409
- # For more information, see *Proton resources and tagging* in the
410
- # [Proton Administrator Guide][1] or [Proton User Guide][2].
751
+ # For more information, see [Proton resources and tagging][1] in the
752
+ # *Proton User Guide*.
411
753
  #
412
754
  #
413
755
  #
414
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
415
- # [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
756
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
416
757
  # @return [Array<Types::Tag>]
417
758
  #
418
759
  # @!attribute [rw] template_major_version
@@ -425,16 +766,17 @@ module Aws::Proton
425
766
  #
426
767
  # @!attribute [rw] template_name
427
768
  # The name of the environment template. For more information, see
428
- # [Environment Templates][1] in the *Proton Administrator Guide*.
769
+ # [Environment Templates][1] in the *Proton User Guide*.
429
770
  #
430
771
  #
431
772
  #
432
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-templates.html
773
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-templates.html
433
774
  # @return [String]
434
775
  #
435
776
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateEnvironmentInput AWS API Documentation
436
777
  #
437
778
  class CreateEnvironmentInput < Struct.new(
779
+ :component_role_arn,
438
780
  :description,
439
781
  :environment_account_connection_id,
440
782
  :name,
@@ -504,13 +846,12 @@ module Aws::Proton
504
846
  # An optional list of metadata items that you can associate with the
505
847
  # Proton environment template. A tag is a key-value pair.
506
848
  #
507
- # For more information, see *Proton resources and tagging* in the
508
- # [Proton Administrator Guide][1] or [Proton User Guide][2].
849
+ # For more information, see [Proton resources and tagging][1] in the
850
+ # *Proton User Guide*.
509
851
  #
510
852
  #
511
853
  #
512
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
513
- # [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
854
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
514
855
  # @return [Array<Types::Tag>]
515
856
  #
516
857
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateEnvironmentTemplateInput AWS API Documentation
@@ -590,13 +931,12 @@ module Aws::Proton
590
931
  # An optional list of metadata items that you can associate with the
591
932
  # Proton environment template version. A tag is a key-value pair.
592
933
  #
593
- # For more information, see *Proton resources and tagging* in the
594
- # [Proton Administrator Guide][1] or [Proton User Guide][2].
934
+ # For more information, see [Proton resources and tagging][1] in the
935
+ # *Proton User Guide*.
595
936
  #
596
937
  #
597
938
  #
598
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
599
- # [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
939
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
600
940
  # @return [Array<Types::Tag>]
601
941
  #
602
942
  # @!attribute [rw] template_name
@@ -645,13 +985,14 @@ module Aws::Proton
645
985
  # }
646
986
  #
647
987
  # @!attribute [rw] connection_arn
648
- # The Amazon Resource Name (ARN) of your Amazon Web Services CodeStar
649
- # connection. For more information, see [Setting up for Proton][1] in
650
- # the *Proton Administrator Guide*.
988
+ # The Amazon Resource Name (ARN) of your AWS CodeStar connection that
989
+ # connects Proton to your repository provider account. For more
990
+ # information, see [Setting up for Proton][1] in the *Proton User
991
+ # Guide*.
651
992
  #
652
993
  #
653
994
  #
654
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html
995
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/setting-up-for-service.html
655
996
  # @return [String]
656
997
  #
657
998
  # @!attribute [rw] encryption_key
@@ -671,13 +1012,12 @@ module Aws::Proton
671
1012
  # An optional list of metadata items that you can associate with the
672
1013
  # Proton repository. A tag is a key-value pair.
673
1014
  #
674
- # For more information, see *Proton resources and tagging* in the
675
- # [Proton Administrator Guide][1] or [Proton User Guide][2].
1015
+ # For more information, see [Proton resources and tagging][1] in the
1016
+ # *Proton User Guide*.
676
1017
  #
677
1018
  #
678
1019
  #
679
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
680
- # [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
1020
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
681
1021
  # @return [Array<Types::Tag>]
682
1022
  #
683
1023
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateRepositoryInput AWS API Documentation
@@ -693,7 +1033,7 @@ module Aws::Proton
693
1033
  end
694
1034
 
695
1035
  # @!attribute [rw] repository
696
- # The repository detail data that's returned by Proton.
1036
+ # The repository link's detail data that's returned by Proton.
697
1037
  # @return [Types::Repository]
698
1038
  #
699
1039
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateRepositoryOutput AWS API Documentation
@@ -741,15 +1081,13 @@ module Aws::Proton
741
1081
  #
742
1082
  # @!attribute [rw] repository_connection_arn
743
1083
  # The Amazon Resource Name (ARN) of the repository connection. For
744
- # more information, see [Set up repository connection][1] in the
745
- # *Proton Administrator Guide* and [Setting up with Proton][2] in the
746
- # *Proton User Guide*. *Don't* include this parameter if your service
747
- # template *doesn't* include a service pipeline.
1084
+ # more information, see [Setting up an AWS CodeStar connection][1] in
1085
+ # the *Proton User Guide*. *Don't* include this parameter if your
1086
+ # service template *doesn't* include a service pipeline.
748
1087
  #
749
1088
  #
750
1089
  #
751
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html#setting-up-vcontrol
752
- # [2]: https://docs.aws.amazon.com/proton/latest/userguide/proton-setup.html#setup-repo-connection
1090
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/setting-up-for-service.html#setting-up-vcontrol
753
1091
  # @return [String]
754
1092
  #
755
1093
  # @!attribute [rw] repository_id
@@ -762,26 +1100,23 @@ module Aws::Proton
762
1100
  # template bundle schema file. The spec file is in YAML format.
763
1101
  # *Don’t* include pipeline inputs in the spec if your service template
764
1102
  # *doesn’t* include a service pipeline. For more information, see
765
- # [Create a service][1] in the *Proton Administrator Guide* and
766
- # [Create a service][2] in the *Proton User Guide*.
1103
+ # [Create a service][1] in the *Proton User Guide*.
767
1104
  #
768
1105
  #
769
1106
  #
770
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-create-svc.html.html
771
- # [2]: https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-create.html
1107
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-create-svc.html
772
1108
  # @return [String]
773
1109
  #
774
1110
  # @!attribute [rw] tags
775
1111
  # An optional list of metadata items that you can associate with the
776
1112
  # Proton service. A tag is a key-value pair.
777
1113
  #
778
- # For more information, see *Proton resources and tagging* in the
779
- # [Proton Administrator Guide][1] or [Proton User Guide][2].
1114
+ # For more information, see [Proton resources and tagging][1] in the
1115
+ # *Proton User Guide*.
780
1116
  #
781
1117
  #
782
1118
  #
783
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
784
- # [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
1119
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
785
1120
  # @return [Array<Types::Tag>]
786
1121
  #
787
1122
  # @!attribute [rw] template_major_version
@@ -865,25 +1200,24 @@ module Aws::Proton
865
1200
  # By default, Proton provides a service pipeline for your service.
866
1201
  # When this parameter is included, it indicates that an Proton service
867
1202
  # pipeline *isn't* provided for your service. After it's included,
868
- # it *can't* be changed. For more information, see [Service template
869
- # bundles][1] in the *Proton Administrator Guide*.
1203
+ # it *can't* be changed. For more information, see [Template
1204
+ # bundles][1] in the *Proton User Guide*.
870
1205
  #
871
1206
  #
872
1207
  #
873
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-template-bundles.html
1208
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-template-authoring.html#ag-template-bundles
874
1209
  # @return [String]
875
1210
  #
876
1211
  # @!attribute [rw] tags
877
1212
  # An optional list of metadata items that you can associate with the
878
1213
  # Proton service template. A tag is a key-value pair.
879
1214
  #
880
- # For more information, see *Proton resources and tagging* in the
881
- # [Proton Administrator Guide][1] or [Proton User Guide][2].
1215
+ # For more information, see [Proton resources and tagging][1] in the
1216
+ # *Proton User Guide*.
882
1217
  #
883
1218
  #
884
1219
  #
885
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
886
- # [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
1220
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
887
1221
  # @return [Array<Types::Tag>]
888
1222
  #
889
1223
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/CreateServiceTemplateInput AWS API Documentation
@@ -930,6 +1264,7 @@ module Aws::Proton
930
1264
  # key: "S3Key", # required
931
1265
  # },
932
1266
  # },
1267
+ # supported_component_sources: ["DIRECTLY_DEFINED"], # accepts DIRECTLY_DEFINED
933
1268
  # tags: [
934
1269
  # {
935
1270
  # key: "TagKey", # required
@@ -949,8 +1284,10 @@ module Aws::Proton
949
1284
  # @return [String]
950
1285
  #
951
1286
  # @!attribute [rw] compatible_environment_templates
952
- # An array of compatible environment template objects for the new
953
- # version of a service template.
1287
+ # An array of environment template objects that are compatible with
1288
+ # the new service template version. A service instance based on this
1289
+ # service template version can run in environments based on compatible
1290
+ # templates.
954
1291
  # @return [Array<Types::CompatibleEnvironmentTemplateInput>]
955
1292
  #
956
1293
  # @!attribute [rw] description
@@ -970,17 +1307,29 @@ module Aws::Proton
970
1307
  # for the new version of a service template.
971
1308
  # @return [Types::TemplateVersionSourceInput]
972
1309
  #
1310
+ # @!attribute [rw] supported_component_sources
1311
+ # An array of supported component sources. Components with supported
1312
+ # sources can be attached to service instances based on this service
1313
+ # template version.
1314
+ #
1315
+ # For more information about components, see [Proton components][1] in
1316
+ # the *Proton User Guide*.
1317
+ #
1318
+ #
1319
+ #
1320
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
1321
+ # @return [Array<String>]
1322
+ #
973
1323
  # @!attribute [rw] tags
974
1324
  # An optional list of metadata items that you can associate with the
975
1325
  # Proton service template version. A tag is a key-value pair.
976
1326
  #
977
- # For more information, see *Proton resources and tagging* in the
978
- # [Proton Administrator Guide][1] or [Proton User Guide][2].
1327
+ # For more information, see [Proton resources and tagging][1] in the
1328
+ # *Proton User Guide*.
979
1329
  #
980
1330
  #
981
1331
  #
982
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/resources.html
983
- # [2]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
1332
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/resources.html
984
1333
  # @return [Array<Types::Tag>]
985
1334
  #
986
1335
  # @!attribute [rw] template_name
@@ -995,6 +1344,7 @@ module Aws::Proton
995
1344
  :description,
996
1345
  :major_version,
997
1346
  :source,
1347
+ :supported_component_sources,
998
1348
  :tags,
999
1349
  :template_name)
1000
1350
  SENSITIVE = [:description]
@@ -1027,11 +1377,11 @@ module Aws::Proton
1027
1377
  # }
1028
1378
  #
1029
1379
  # @!attribute [rw] branch
1030
- # The branch of the registered repository for your template.
1380
+ # The repository branch for your template.
1031
1381
  # @return [String]
1032
1382
  #
1033
1383
  # @!attribute [rw] repository_name
1034
- # The name of your repository (for example, `myrepos/myrepo`).
1384
+ # The repository name (for example, `myrepos/myrepo`).
1035
1385
  # @return [String]
1036
1386
  #
1037
1387
  # @!attribute [rw] repository_provider
@@ -1078,6 +1428,37 @@ module Aws::Proton
1078
1428
  include Aws::Structure
1079
1429
  end
1080
1430
 
1431
+ # @note When making an API call, you may pass DeleteComponentInput
1432
+ # data as a hash:
1433
+ #
1434
+ # {
1435
+ # name: "ResourceName", # required
1436
+ # }
1437
+ #
1438
+ # @!attribute [rw] name
1439
+ # The name of the component to delete.
1440
+ # @return [String]
1441
+ #
1442
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteComponentInput AWS API Documentation
1443
+ #
1444
+ class DeleteComponentInput < Struct.new(
1445
+ :name)
1446
+ SENSITIVE = []
1447
+ include Aws::Structure
1448
+ end
1449
+
1450
+ # @!attribute [rw] component
1451
+ # The detailed data of the component being deleted.
1452
+ # @return [Types::Component]
1453
+ #
1454
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteComponentOutput AWS API Documentation
1455
+ #
1456
+ class DeleteComponentOutput < Struct.new(
1457
+ :component)
1458
+ SENSITIVE = []
1459
+ include Aws::Structure
1460
+ end
1461
+
1081
1462
  # @note When making an API call, you may pass DeleteEnvironmentAccountConnectionInput
1082
1463
  # data as a hash:
1083
1464
  #
@@ -1098,8 +1479,8 @@ module Aws::Proton
1098
1479
  end
1099
1480
 
1100
1481
  # @!attribute [rw] environment_account_connection
1101
- # The environment account connection detail data that's returned by
1102
- # Proton.
1482
+ # The detailed data of the environment account connection being
1483
+ # deleted.
1103
1484
  # @return [Types::EnvironmentAccountConnection]
1104
1485
  #
1105
1486
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteEnvironmentAccountConnectionOutput AWS API Documentation
@@ -1130,7 +1511,7 @@ module Aws::Proton
1130
1511
  end
1131
1512
 
1132
1513
  # @!attribute [rw] environment
1133
- # The environment detail data that's returned by Proton.
1514
+ # The detailed data of the environment being deleted.
1134
1515
  # @return [Types::Environment]
1135
1516
  #
1136
1517
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteEnvironmentOutput AWS API Documentation
@@ -1161,7 +1542,7 @@ module Aws::Proton
1161
1542
  end
1162
1543
 
1163
1544
  # @!attribute [rw] environment_template
1164
- # The environment template detail data that's returned by Proton.
1545
+ # The detailed data of the environment template being deleted.
1165
1546
  # @return [Types::EnvironmentTemplate]
1166
1547
  #
1167
1548
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteEnvironmentTemplateOutput AWS API Documentation
@@ -1204,8 +1585,7 @@ module Aws::Proton
1204
1585
  end
1205
1586
 
1206
1587
  # @!attribute [rw] environment_template_version
1207
- # The environment template version detail data that's returned by
1208
- # Proton.
1588
+ # The detailed data of the environment template version being deleted.
1209
1589
  # @return [Types::EnvironmentTemplateVersion]
1210
1590
  #
1211
1591
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteEnvironmentTemplateVersionOutput AWS API Documentation
@@ -1225,7 +1605,7 @@ module Aws::Proton
1225
1605
  # }
1226
1606
  #
1227
1607
  # @!attribute [rw] name
1228
- # The name of the repository.
1608
+ # The repository name.
1229
1609
  # @return [String]
1230
1610
  #
1231
1611
  # @!attribute [rw] provider
@@ -1242,7 +1622,8 @@ module Aws::Proton
1242
1622
  end
1243
1623
 
1244
1624
  # @!attribute [rw] repository
1245
- # The repository detail data that's returned by Proton.
1625
+ # The deleted repository link's detail data that's returned by
1626
+ # Proton.
1246
1627
  # @return [Types::Repository]
1247
1628
  #
1248
1629
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteRepositoryOutput AWS API Documentation
@@ -1273,7 +1654,7 @@ module Aws::Proton
1273
1654
  end
1274
1655
 
1275
1656
  # @!attribute [rw] service
1276
- # The service detail data that's returned by Proton.
1657
+ # The detailed data of the service being deleted.
1277
1658
  # @return [Types::Service]
1278
1659
  #
1279
1660
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteServiceOutput AWS API Documentation
@@ -1304,7 +1685,7 @@ module Aws::Proton
1304
1685
  end
1305
1686
 
1306
1687
  # @!attribute [rw] service_template
1307
- # The service template detail data that's returned by Proton.
1688
+ # The detailed data of the service template being deleted.
1308
1689
  # @return [Types::ServiceTemplate]
1309
1690
  #
1310
1691
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteServiceTemplateOutput AWS API Documentation
@@ -1347,7 +1728,7 @@ module Aws::Proton
1347
1728
  end
1348
1729
 
1349
1730
  # @!attribute [rw] service_template_version
1350
- # The service template version detail data that's returned by Proton.
1731
+ # The detailed data of the service template version being deleted.
1351
1732
  # @return [Types::ServiceTemplateVersion]
1352
1733
  #
1353
1734
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/DeleteServiceTemplateVersionOutput AWS API Documentation
@@ -1396,13 +1777,30 @@ module Aws::Proton
1396
1777
  include Aws::Structure
1397
1778
  end
1398
1779
 
1399
- # The environment detail data. An Proton environment is a set resources
1400
- # shared across an Proton service.
1780
+ # Detailed data of an Proton environment resource. An Proton environment
1781
+ # is a set of resources shared across Proton services.
1401
1782
  #
1402
1783
  # @!attribute [rw] arn
1403
1784
  # The Amazon Resource Name (ARN) of the environment.
1404
1785
  # @return [String]
1405
1786
  #
1787
+ # @!attribute [rw] component_role_arn
1788
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
1789
+ # uses when provisioning directly defined components in this
1790
+ # environment. It determines the scope of infrastructure that a
1791
+ # component can provision.
1792
+ #
1793
+ # The environment must have a `componentRoleArn` to allow directly
1794
+ # defined components to be associated with the environment.
1795
+ #
1796
+ # For more information about components, see [Proton components][1] in
1797
+ # the *Proton User Guide*.
1798
+ #
1799
+ #
1800
+ #
1801
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
1802
+ # @return [String]
1803
+ #
1406
1804
  # @!attribute [rw] created_at
1407
1805
  # The time when the environment was created.
1408
1806
  # @return [Time]
@@ -1452,8 +1850,10 @@ module Aws::Proton
1452
1850
  # @return [String]
1453
1851
  #
1454
1852
  # @!attribute [rw] provisioning_repository
1455
- # The infrastructure repository that you use to host your rendered
1456
- # infrastructure templates for self-managed provisioning.
1853
+ # The linked repository that you use to host your rendered
1854
+ # infrastructure templates for self-managed provisioning. A linked
1855
+ # repository is a repository that has been registered with Proton. For
1856
+ # more information, see CreateRepository.
1457
1857
  # @return [Types::RepositoryBranch]
1458
1858
  #
1459
1859
  # @!attribute [rw] spec
@@ -1476,6 +1876,7 @@ module Aws::Proton
1476
1876
  #
1477
1877
  class Environment < Struct.new(
1478
1878
  :arn,
1879
+ :component_role_arn,
1479
1880
  :created_at,
1480
1881
  :deployment_status,
1481
1882
  :deployment_status_message,
@@ -1496,13 +1897,31 @@ module Aws::Proton
1496
1897
  include Aws::Structure
1497
1898
  end
1498
1899
 
1499
- # The environment account connection detail data.
1900
+ # Detailed data of an Proton environment account connection resource.
1500
1901
  #
1501
1902
  # @!attribute [rw] arn
1502
1903
  # The Amazon Resource Name (ARN) of the environment account
1503
1904
  # connection.
1504
1905
  # @return [String]
1505
1906
  #
1907
+ # @!attribute [rw] component_role_arn
1908
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
1909
+ # uses when provisioning directly defined components in the associated
1910
+ # environment account. It determines the scope of infrastructure that
1911
+ # a component can provision in the account.
1912
+ #
1913
+ # The environment account connection must have a `componentRoleArn` to
1914
+ # allow directly defined components to be associated with any
1915
+ # environments running in the account.
1916
+ #
1917
+ # For more information about components, see [Proton components][1] in
1918
+ # the *Proton User Guide*.
1919
+ #
1920
+ #
1921
+ #
1922
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
1923
+ # @return [String]
1924
+ #
1506
1925
  # @!attribute [rw] environment_account_id
1507
1926
  # The environment account that's connected to the environment account
1508
1927
  # connection.
@@ -1543,6 +1962,7 @@ module Aws::Proton
1543
1962
  #
1544
1963
  class EnvironmentAccountConnection < Struct.new(
1545
1964
  :arn,
1965
+ :component_role_arn,
1546
1966
  :environment_account_id,
1547
1967
  :environment_name,
1548
1968
  :id,
@@ -1555,13 +1975,31 @@ module Aws::Proton
1555
1975
  include Aws::Structure
1556
1976
  end
1557
1977
 
1558
- # A summary of the environment account connection detail data.
1978
+ # Summary data of an Proton environment account connection resource.
1559
1979
  #
1560
1980
  # @!attribute [rw] arn
1561
1981
  # The Amazon Resource Name (ARN) of the environment account
1562
1982
  # connection.
1563
1983
  # @return [String]
1564
1984
  #
1985
+ # @!attribute [rw] component_role_arn
1986
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
1987
+ # uses when provisioning directly defined components in the associated
1988
+ # environment account. It determines the scope of infrastructure that
1989
+ # a component can provision in the account.
1990
+ #
1991
+ # The environment account connection must have a `componentRoleArn` to
1992
+ # allow directly defined components to be associated with any
1993
+ # environments running in the account.
1994
+ #
1995
+ # For more information about components, see [Proton components][1] in
1996
+ # the *Proton User Guide*.
1997
+ #
1998
+ #
1999
+ #
2000
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
2001
+ # @return [String]
2002
+ #
1565
2003
  # @!attribute [rw] environment_account_id
1566
2004
  # The ID of the environment account that's connected to the
1567
2005
  # environment account connection.
@@ -1602,6 +2040,7 @@ module Aws::Proton
1602
2040
  #
1603
2041
  class EnvironmentAccountConnectionSummary < Struct.new(
1604
2042
  :arn,
2043
+ :component_role_arn,
1605
2044
  :environment_account_id,
1606
2045
  :environment_name,
1607
2046
  :id,
@@ -1614,10 +2053,28 @@ module Aws::Proton
1614
2053
  include Aws::Structure
1615
2054
  end
1616
2055
 
1617
- # A summary of the environment detail data.
2056
+ # Summary data of an Proton environment resource. An Proton environment
2057
+ # is a set of resources shared across Proton services.
2058
+ #
2059
+ # @!attribute [rw] arn
2060
+ # The Amazon Resource Name (ARN) of the environment.
2061
+ # @return [String]
2062
+ #
2063
+ # @!attribute [rw] component_role_arn
2064
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
2065
+ # uses when provisioning directly defined components in this
2066
+ # environment. It determines the scope of infrastructure that a
2067
+ # component can provision.
2068
+ #
2069
+ # The environment must have a `componentRoleArn` to allow directly
2070
+ # defined components to be associated with the environment.
2071
+ #
2072
+ # For more information about components, see [Proton components][1] in
2073
+ # the *Proton User Guide*.
1618
2074
  #
1619
- # @!attribute [rw] arn
1620
- # The Amazon Resource Name (ARN) of the environment.
2075
+ #
2076
+ #
2077
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
1621
2078
  # @return [String]
1622
2079
  #
1623
2080
  # @!attribute [rw] created_at
@@ -1684,6 +2141,7 @@ module Aws::Proton
1684
2141
  #
1685
2142
  class EnvironmentSummary < Struct.new(
1686
2143
  :arn,
2144
+ :component_role_arn,
1687
2145
  :created_at,
1688
2146
  :deployment_status,
1689
2147
  :deployment_status_message,
@@ -1984,6 +2442,38 @@ module Aws::Proton
1984
2442
  include Aws::Structure
1985
2443
  end
1986
2444
 
2445
+ # @note When making an API call, you may pass GetComponentInput
2446
+ # data as a hash:
2447
+ #
2448
+ # {
2449
+ # name: "ResourceName", # required
2450
+ # }
2451
+ #
2452
+ # @!attribute [rw] name
2453
+ # The name of the component that you want to get the detailed data
2454
+ # for.
2455
+ # @return [String]
2456
+ #
2457
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetComponentInput AWS API Documentation
2458
+ #
2459
+ class GetComponentInput < Struct.new(
2460
+ :name)
2461
+ SENSITIVE = []
2462
+ include Aws::Structure
2463
+ end
2464
+
2465
+ # @!attribute [rw] component
2466
+ # The detailed data of the requested component.
2467
+ # @return [Types::Component]
2468
+ #
2469
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetComponentOutput AWS API Documentation
2470
+ #
2471
+ class GetComponentOutput < Struct.new(
2472
+ :component)
2473
+ SENSITIVE = []
2474
+ include Aws::Structure
2475
+ end
2476
+
1987
2477
  # @note When making an API call, you may pass GetEnvironmentAccountConnectionInput
1988
2478
  # data as a hash:
1989
2479
  #
@@ -1992,7 +2482,8 @@ module Aws::Proton
1992
2482
  # }
1993
2483
  #
1994
2484
  # @!attribute [rw] id
1995
- # The ID of the environment account connection.
2485
+ # The ID of the environment account connection that you want to get
2486
+ # the detailed data for.
1996
2487
  # @return [String]
1997
2488
  #
1998
2489
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentAccountConnectionInput AWS API Documentation
@@ -2004,8 +2495,7 @@ module Aws::Proton
2004
2495
  end
2005
2496
 
2006
2497
  # @!attribute [rw] environment_account_connection
2007
- # The environment account connection detail data that's returned by
2008
- # Proton.
2498
+ # The detailed data of the requested environment account connection.
2009
2499
  # @return [Types::EnvironmentAccountConnection]
2010
2500
  #
2011
2501
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentAccountConnectionOutput AWS API Documentation
@@ -2024,7 +2514,7 @@ module Aws::Proton
2024
2514
  # }
2025
2515
  #
2026
2516
  # @!attribute [rw] name
2027
- # The name of the environment that you want to get the detail data
2517
+ # The name of the environment that you want to get the detailed data
2028
2518
  # for.
2029
2519
  # @return [String]
2030
2520
  #
@@ -2037,7 +2527,7 @@ module Aws::Proton
2037
2527
  end
2038
2528
 
2039
2529
  # @!attribute [rw] environment
2040
- # The environment detail data that's returned by Proton.
2530
+ # The detailed data of the requested environment.
2041
2531
  # @return [Types::Environment]
2042
2532
  #
2043
2533
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentOutput AWS API Documentation
@@ -2056,8 +2546,8 @@ module Aws::Proton
2056
2546
  # }
2057
2547
  #
2058
2548
  # @!attribute [rw] name
2059
- # The name of the environment template that you want to get the detail
2060
- # data for.
2549
+ # The name of the environment template that you want to get the
2550
+ # detailed data for.
2061
2551
  # @return [String]
2062
2552
  #
2063
2553
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentTemplateInput AWS API Documentation
@@ -2069,7 +2559,7 @@ module Aws::Proton
2069
2559
  end
2070
2560
 
2071
2561
  # @!attribute [rw] environment_template
2072
- # The environment template detail data that's returned by Proton.
2562
+ # The detailed data of the requested environment template.
2073
2563
  # @return [Types::EnvironmentTemplate]
2074
2564
  #
2075
2565
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentTemplateOutput AWS API Documentation
@@ -2090,17 +2580,18 @@ module Aws::Proton
2090
2580
  # }
2091
2581
  #
2092
2582
  # @!attribute [rw] major_version
2093
- # To view environment template major version detail data, include
2583
+ # To get environment template major version detail data, include
2094
2584
  # `major Version`.
2095
2585
  # @return [String]
2096
2586
  #
2097
2587
  # @!attribute [rw] minor_version
2098
- # To view environment template minor version detail data, include
2588
+ # To get environment template minor version detail data, include
2099
2589
  # `minorVersion`.
2100
2590
  # @return [String]
2101
2591
  #
2102
2592
  # @!attribute [rw] template_name
2103
- # The name of the environment template.
2593
+ # The name of the environment template a version of which you want to
2594
+ # get detailed data for.
2104
2595
  # @return [String]
2105
2596
  #
2106
2597
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentTemplateVersionInput AWS API Documentation
@@ -2114,8 +2605,7 @@ module Aws::Proton
2114
2605
  end
2115
2606
 
2116
2607
  # @!attribute [rw] environment_template_version
2117
- # The environment template version detail data that's returned by
2118
- # Proton.
2608
+ # The detailed data of the requested environment template version.
2119
2609
  # @return [Types::EnvironmentTemplateVersion]
2120
2610
  #
2121
2611
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetEnvironmentTemplateVersionOutput AWS API Documentation
@@ -2152,7 +2642,7 @@ module Aws::Proton
2152
2642
  end
2153
2643
 
2154
2644
  # @!attribute [rw] repository
2155
- # The repository detail data that's returned by Proton.
2645
+ # The repository link's detail data that's returned by Proton.
2156
2646
  # @return [Types::Repository]
2157
2647
  #
2158
2648
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetRepositoryOutput AWS API Documentation
@@ -2220,7 +2710,7 @@ module Aws::Proton
2220
2710
  # }
2221
2711
  #
2222
2712
  # @!attribute [rw] name
2223
- # The name of the service that you want to get the detail data for.
2713
+ # The name of the service that you want to get the detailed data for.
2224
2714
  # @return [String]
2225
2715
  #
2226
2716
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceInput AWS API Documentation
@@ -2240,8 +2730,8 @@ module Aws::Proton
2240
2730
  # }
2241
2731
  #
2242
2732
  # @!attribute [rw] name
2243
- # The name of a service instance that you want to get the detail data
2244
- # for.
2733
+ # The name of a service instance that you want to get the detailed
2734
+ # data for.
2245
2735
  # @return [String]
2246
2736
  #
2247
2737
  # @!attribute [rw] service_name
@@ -2258,7 +2748,7 @@ module Aws::Proton
2258
2748
  end
2259
2749
 
2260
2750
  # @!attribute [rw] service_instance
2261
- # The service instance detail data that's returned by Proton.
2751
+ # The detailed data of the requested service instance.
2262
2752
  # @return [Types::ServiceInstance]
2263
2753
  #
2264
2754
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceInstanceOutput AWS API Documentation
@@ -2270,7 +2760,7 @@ module Aws::Proton
2270
2760
  end
2271
2761
 
2272
2762
  # @!attribute [rw] service
2273
- # The service detail data that's returned by Proton.
2763
+ # The detailed data of the requested service.
2274
2764
  # @return [Types::Service]
2275
2765
  #
2276
2766
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceOutput AWS API Documentation
@@ -2289,7 +2779,7 @@ module Aws::Proton
2289
2779
  # }
2290
2780
  #
2291
2781
  # @!attribute [rw] name
2292
- # The name of the service template that you want to get detail data
2782
+ # The name of the service template that you want to get detailed data
2293
2783
  # for.
2294
2784
  # @return [String]
2295
2785
  #
@@ -2302,7 +2792,7 @@ module Aws::Proton
2302
2792
  end
2303
2793
 
2304
2794
  # @!attribute [rw] service_template
2305
- # The service template detail data that's returned by Proton.
2795
+ # The detailed data of the requested service template.
2306
2796
  # @return [Types::ServiceTemplate]
2307
2797
  #
2308
2798
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceTemplateOutput AWS API Documentation
@@ -2323,17 +2813,18 @@ module Aws::Proton
2323
2813
  # }
2324
2814
  #
2325
2815
  # @!attribute [rw] major_version
2326
- # To view service template major version detail data, include `major
2816
+ # To get service template major version detail data, include `major
2327
2817
  # Version`.
2328
2818
  # @return [String]
2329
2819
  #
2330
2820
  # @!attribute [rw] minor_version
2331
- # To view service template minor version detail data, include
2821
+ # To get service template minor version detail data, include
2332
2822
  # `minorVersion`.
2333
2823
  # @return [String]
2334
2824
  #
2335
2825
  # @!attribute [rw] template_name
2336
- # The name of the service template.
2826
+ # The name of the service template a version of which you want to get
2827
+ # detailed data for.
2337
2828
  # @return [String]
2338
2829
  #
2339
2830
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceTemplateVersionInput AWS API Documentation
@@ -2347,7 +2838,7 @@ module Aws::Proton
2347
2838
  end
2348
2839
 
2349
2840
  # @!attribute [rw] service_template_version
2350
- # The service template version detail data that's returned by Proton.
2841
+ # The detailed data of the requested service template version.
2351
2842
  # @return [Types::ServiceTemplateVersion]
2352
2843
  #
2353
2844
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/GetServiceTemplateVersionOutput AWS API Documentation
@@ -2462,6 +2953,163 @@ module Aws::Proton
2462
2953
  include Aws::Structure
2463
2954
  end
2464
2955
 
2956
+ # @note When making an API call, you may pass ListComponentOutputsInput
2957
+ # data as a hash:
2958
+ #
2959
+ # {
2960
+ # component_name: "ResourceName", # required
2961
+ # next_token: "EmptyNextToken",
2962
+ # }
2963
+ #
2964
+ # @!attribute [rw] component_name
2965
+ # The name of the component whose outputs you want.
2966
+ # @return [String]
2967
+ #
2968
+ # @!attribute [rw] next_token
2969
+ # A token that indicates the location of the next output in the array
2970
+ # of outputs, after the list of outputs that was previously requested.
2971
+ # @return [String]
2972
+ #
2973
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentOutputsInput AWS API Documentation
2974
+ #
2975
+ class ListComponentOutputsInput < Struct.new(
2976
+ :component_name,
2977
+ :next_token)
2978
+ SENSITIVE = []
2979
+ include Aws::Structure
2980
+ end
2981
+
2982
+ # @!attribute [rw] next_token
2983
+ # A token that indicates the location of the next output in the array
2984
+ # of outputs, after the list of outputs that was previously requested.
2985
+ # @return [String]
2986
+ #
2987
+ # @!attribute [rw] outputs
2988
+ # An array of component Infrastructure as Code (IaC) outputs.
2989
+ # @return [Array<Types::Output>]
2990
+ #
2991
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentOutputsOutput AWS API Documentation
2992
+ #
2993
+ class ListComponentOutputsOutput < Struct.new(
2994
+ :next_token,
2995
+ :outputs)
2996
+ SENSITIVE = []
2997
+ include Aws::Structure
2998
+ end
2999
+
3000
+ # @note When making an API call, you may pass ListComponentProvisionedResourcesInput
3001
+ # data as a hash:
3002
+ #
3003
+ # {
3004
+ # component_name: "ResourceName", # required
3005
+ # next_token: "EmptyNextToken",
3006
+ # }
3007
+ #
3008
+ # @!attribute [rw] component_name
3009
+ # The name of the component whose provisioned resources you want.
3010
+ # @return [String]
3011
+ #
3012
+ # @!attribute [rw] next_token
3013
+ # A token that indicates the location of the next provisioned resource
3014
+ # in the array of provisioned resources, after the list of provisioned
3015
+ # resources that was previously requested.
3016
+ # @return [String]
3017
+ #
3018
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentProvisionedResourcesInput AWS API Documentation
3019
+ #
3020
+ class ListComponentProvisionedResourcesInput < Struct.new(
3021
+ :component_name,
3022
+ :next_token)
3023
+ SENSITIVE = []
3024
+ include Aws::Structure
3025
+ end
3026
+
3027
+ # @!attribute [rw] next_token
3028
+ # A token that indicates the location of the next provisioned resource
3029
+ # in the array of provisioned resources, after the current requested
3030
+ # list of provisioned resources.
3031
+ # @return [String]
3032
+ #
3033
+ # @!attribute [rw] provisioned_resources
3034
+ # An array of provisioned resources for a component.
3035
+ # @return [Array<Types::ProvisionedResource>]
3036
+ #
3037
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentProvisionedResourcesOutput AWS API Documentation
3038
+ #
3039
+ class ListComponentProvisionedResourcesOutput < Struct.new(
3040
+ :next_token,
3041
+ :provisioned_resources)
3042
+ SENSITIVE = []
3043
+ include Aws::Structure
3044
+ end
3045
+
3046
+ # @note When making an API call, you may pass ListComponentsInput
3047
+ # data as a hash:
3048
+ #
3049
+ # {
3050
+ # environment_name: "ResourceName",
3051
+ # max_results: 1,
3052
+ # next_token: "NextToken",
3053
+ # service_instance_name: "ResourceName",
3054
+ # service_name: "ResourceName",
3055
+ # }
3056
+ #
3057
+ # @!attribute [rw] environment_name
3058
+ # The name of an environment for result list filtering. Proton returns
3059
+ # components associated with the environment or attached to service
3060
+ # instances running in it.
3061
+ # @return [String]
3062
+ #
3063
+ # @!attribute [rw] max_results
3064
+ # The maximum number of components to list.
3065
+ # @return [Integer]
3066
+ #
3067
+ # @!attribute [rw] next_token
3068
+ # A token that indicates the location of the next component in the
3069
+ # array of components, after the list of components that was
3070
+ # previously requested.
3071
+ # @return [String]
3072
+ #
3073
+ # @!attribute [rw] service_instance_name
3074
+ # The name of a service instance for result list filtering. Proton
3075
+ # returns the component attached to the service instance, if any.
3076
+ # @return [String]
3077
+ #
3078
+ # @!attribute [rw] service_name
3079
+ # The name of a service for result list filtering. Proton returns
3080
+ # components attached to service instances of the service.
3081
+ # @return [String]
3082
+ #
3083
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentsInput AWS API Documentation
3084
+ #
3085
+ class ListComponentsInput < Struct.new(
3086
+ :environment_name,
3087
+ :max_results,
3088
+ :next_token,
3089
+ :service_instance_name,
3090
+ :service_name)
3091
+ SENSITIVE = []
3092
+ include Aws::Structure
3093
+ end
3094
+
3095
+ # @!attribute [rw] components
3096
+ # An array of components with summary data.
3097
+ # @return [Array<Types::ComponentSummary>]
3098
+ #
3099
+ # @!attribute [rw] next_token
3100
+ # A token that indicates the location of the next component in the
3101
+ # array of components, after the current requested list of components.
3102
+ # @return [String]
3103
+ #
3104
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListComponentsOutput AWS API Documentation
3105
+ #
3106
+ class ListComponentsOutput < Struct.new(
3107
+ :components,
3108
+ :next_token)
3109
+ SENSITIVE = []
3110
+ include Aws::Structure
3111
+ end
3112
+
2465
3113
  # @note When making an API call, you may pass ListEnvironmentAccountConnectionsInput
2466
3114
  # data as a hash:
2467
3115
  #
@@ -2826,7 +3474,7 @@ module Aws::Proton
2826
3474
  # @return [String]
2827
3475
  #
2828
3476
  # @!attribute [rw] repositories
2829
- # An array of repositories.
3477
+ # An array of repository links.
2830
3478
  # @return [Array<Types::RepositorySummary>]
2831
3479
  #
2832
3480
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListRepositoriesOutput AWS API Documentation
@@ -2911,11 +3559,11 @@ module Aws::Proton
2911
3559
  # @return [String]
2912
3560
  #
2913
3561
  # @!attribute [rw] service_instance_name
2914
- # The service instance name.
3562
+ # The name of the service instance whose outputs you want.
2915
3563
  # @return [String]
2916
3564
  #
2917
3565
  # @!attribute [rw] service_name
2918
- # The service name.
3566
+ # The name of the service that `serviceInstanceName` is associated to.
2919
3567
  # @return [String]
2920
3568
  #
2921
3569
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstanceOutputsInput AWS API Documentation
@@ -2934,7 +3582,7 @@ module Aws::Proton
2934
3582
  # @return [String]
2935
3583
  #
2936
3584
  # @!attribute [rw] outputs
2937
- # An array of service instance infrastructure as code outputs.
3585
+ # An array of service instance Infrastructure as Code (IaC) outputs.
2938
3586
  # @return [Array<Types::Output>]
2939
3587
  #
2940
3588
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstanceOutputsOutput AWS API Documentation
@@ -2962,11 +3610,12 @@ module Aws::Proton
2962
3610
  # @return [String]
2963
3611
  #
2964
3612
  # @!attribute [rw] service_instance_name
2965
- # The service instance name.
3613
+ # The name of the service instance whose provisioned resources you
3614
+ # want.
2966
3615
  # @return [String]
2967
3616
  #
2968
3617
  # @!attribute [rw] service_name
2969
- # The service name.
3618
+ # The name of the service that `serviceInstanceName` is associated to.
2970
3619
  # @return [String]
2971
3620
  #
2972
3621
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstanceProvisionedResourcesInput AWS API Documentation
@@ -3038,7 +3687,7 @@ module Aws::Proton
3038
3687
  # @return [String]
3039
3688
  #
3040
3689
  # @!attribute [rw] service_instances
3041
- # An array of service instances with summaries of detail data.
3690
+ # An array of service instances with summary data.
3042
3691
  # @return [Array<Types::ServiceInstanceSummary>]
3043
3692
  #
3044
3693
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServiceInstancesOutput AWS API Documentation
@@ -3064,7 +3713,7 @@ module Aws::Proton
3064
3713
  # @return [String]
3065
3714
  #
3066
3715
  # @!attribute [rw] service_name
3067
- # The service name.
3716
+ # The name of the service whose pipeline's outputs you want.
3068
3717
  # @return [String]
3069
3718
  #
3070
3719
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicePipelineOutputsInput AWS API Documentation
@@ -3082,7 +3731,7 @@ module Aws::Proton
3082
3731
  # @return [String]
3083
3732
  #
3084
3733
  # @!attribute [rw] outputs
3085
- # An array of outputs.
3734
+ # An array of service pipeline Infrastructure as Code (IaC) outputs.
3086
3735
  # @return [Array<Types::Output>]
3087
3736
  #
3088
3737
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicePipelineOutputsOutput AWS API Documentation
@@ -3109,7 +3758,8 @@ module Aws::Proton
3109
3758
  # @return [String]
3110
3759
  #
3111
3760
  # @!attribute [rw] service_name
3112
- # The service name.
3761
+ # The name of the service whose pipeline's provisioned resources you
3762
+ # want.
3113
3763
  # @return [String]
3114
3764
  #
3115
3765
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ListServicePipelineProvisionedResourcesInput AWS API Documentation
@@ -3362,7 +4012,7 @@ module Aws::Proton
3362
4012
  # ],
3363
4013
  # resource_arn: "Arn", # required
3364
4014
  # status: "IN_PROGRESS", # required, accepts IN_PROGRESS, FAILED, SUCCEEDED
3365
- # status_message: "SyntheticNotifyResourceDeploymentStatusChangeInputString",
4015
+ # status_message: "NotifyResourceDeploymentStatusChangeInputStatusMessageString",
3366
4016
  # }
3367
4017
  #
3368
4018
  # @!attribute [rw] deployment_id
@@ -3445,11 +4095,11 @@ module Aws::Proton
3445
4095
  # `TERRAFORM` can be used for self-managed provisioning.
3446
4096
  #
3447
4097
  # For more information, see [Self-managed provisioning][1] in the
3448
- # *Proton Administrator Guide*.
4098
+ # *Proton User Guide*.
3449
4099
  #
3450
4100
  #
3451
4101
  #
3452
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-works-prov-methods.html#ag-works-prov-methods-self
4102
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-works-prov-methods.html#ag-works-prov-methods-self
3453
4103
  # @return [String]
3454
4104
  #
3455
4105
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/ProvisionedResource AWS API Documentation
@@ -3494,15 +4144,16 @@ module Aws::Proton
3494
4144
  include Aws::Structure
3495
4145
  end
3496
4146
 
3497
- # Detail date for a repository that has been registered with Proton.
4147
+ # Detailed data of a linked repository—a repository that has been
4148
+ # registered with Proton.
3498
4149
  #
3499
4150
  # @!attribute [rw] arn
3500
- # The repository Amazon Resource Name (ARN).
4151
+ # The Amazon Resource Name (ARN) of the linked repository.
3501
4152
  # @return [String]
3502
4153
  #
3503
4154
  # @!attribute [rw] connection_arn
3504
- # The repository Amazon Web Services CodeStar connection that connects
3505
- # Proton to your repository.
4155
+ # The Amazon Resource Name (ARN) of your AWS CodeStar connection that
4156
+ # connects Proton to your repository provider account.
3506
4157
  # @return [String]
3507
4158
  #
3508
4159
  # @!attribute [rw] encryption_key
@@ -3529,10 +4180,10 @@ module Aws::Proton
3529
4180
  include Aws::Structure
3530
4181
  end
3531
4182
 
3532
- # Detail data for a repository branch.
4183
+ # Detail data for a linked repository branch.
3533
4184
  #
3534
4185
  # @!attribute [rw] arn
3535
- # The Amazon Resource Name (ARN) of the repository branch.
4186
+ # The Amazon Resource Name (ARN) of the linked repository.
3536
4187
  # @return [String]
3537
4188
  #
3538
4189
  # @!attribute [rw] branch
@@ -3558,7 +4209,7 @@ module Aws::Proton
3558
4209
  include Aws::Structure
3559
4210
  end
3560
4211
 
3561
- # Detail input data for a repository branch.
4212
+ # Detail input data for a linked repository branch.
3562
4213
  #
3563
4214
  # @note When making an API call, you may pass RepositoryBranchInput
3564
4215
  # data as a hash:
@@ -3591,10 +4242,11 @@ module Aws::Proton
3591
4242
  include Aws::Structure
3592
4243
  end
3593
4244
 
3594
- # A summary of detail data for a registered repository.
4245
+ # Summary data of a linked repository—a repository that has been
4246
+ # registered with Proton.
3595
4247
  #
3596
4248
  # @!attribute [rw] arn
3597
- # The Amazon Resource Name (ARN) for a repository.
4249
+ # The Amazon Resource Name (ARN) of the linked repository.
3598
4250
  # @return [String]
3599
4251
  #
3600
4252
  # @!attribute [rw] name
@@ -3640,7 +4292,7 @@ module Aws::Proton
3640
4292
  include Aws::Structure
3641
4293
  end
3642
4294
 
3643
- # The repository sync definition.
4295
+ # A repository sync definition.
3644
4296
  #
3645
4297
  # @!attribute [rw] branch
3646
4298
  # The repository branch.
@@ -3843,7 +4495,7 @@ module Aws::Proton
3843
4495
  include Aws::Structure
3844
4496
  end
3845
4497
 
3846
- # The service detail data.
4498
+ # Detailed data of an Proton service resource.
3847
4499
  #
3848
4500
  # @!attribute [rw] arn
3849
4501
  # The Amazon Resource Name (ARN) of the service.
@@ -3859,7 +4511,7 @@ module Aws::Proton
3859
4511
  # @return [Time]
3860
4512
  #
3861
4513
  # @!attribute [rw] description
3862
- # A description of a service.
4514
+ # A description of the service.
3863
4515
  # @return [String]
3864
4516
  #
3865
4517
  # @!attribute [rw] last_modified_at
@@ -3876,14 +4528,12 @@ module Aws::Proton
3876
4528
  #
3877
4529
  # @!attribute [rw] repository_connection_arn
3878
4530
  # The Amazon Resource Name (ARN) of the repository connection. For
3879
- # more information, see [Set up a repository connection][1] in the
3880
- # *Proton Administrator Guide* and [Setting up with Proton][2] in the
3881
- # *Proton User Guide*.
4531
+ # more information, see [Setting up an AWS CodeStar connection][1] in
4532
+ # the *Proton User Guide*.
3882
4533
  #
3883
4534
  #
3884
4535
  #
3885
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/setting-up-for-service.html#setting-up-vcontrol
3886
- # [2]: https://docs.aws.amazon.com/proton/latest/userguide/proton-setup.html#setup-repo-connection
4536
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/setting-up-for-service.html#setting-up-vcontrol
3887
4537
  # @return [String]
3888
4538
  #
3889
4539
  # @!attribute [rw] repository_id
@@ -3926,7 +4576,7 @@ module Aws::Proton
3926
4576
  include Aws::Structure
3927
4577
  end
3928
4578
 
3929
- # The service instance detail data.
4579
+ # Detailed data of an Proton service instance resource.
3930
4580
  #
3931
4581
  # @!attribute [rw] arn
3932
4582
  # The Amazon Resource Name (ARN) of the service instance.
@@ -3941,7 +4591,7 @@ module Aws::Proton
3941
4591
  # @return [String]
3942
4592
  #
3943
4593
  # @!attribute [rw] deployment_status_message
3944
- # A service instance deployment status message.
4594
+ # The message associated with the service instance deployment status.
3945
4595
  # @return [String]
3946
4596
  #
3947
4597
  # @!attribute [rw] environment_name
@@ -4005,7 +4655,7 @@ module Aws::Proton
4005
4655
  include Aws::Structure
4006
4656
  end
4007
4657
 
4008
- # A summary of the service instance detail data.
4658
+ # Summary data of an Proton service instance resource.
4009
4659
  #
4010
4660
  # @!attribute [rw] arn
4011
4661
  # The Amazon Resource Name (ARN) of the service instance.
@@ -4075,7 +4725,7 @@ module Aws::Proton
4075
4725
  include Aws::Structure
4076
4726
  end
4077
4727
 
4078
- # The service pipeline detail data.
4728
+ # Detailed data of an Proton service instance pipeline resource.
4079
4729
  #
4080
4730
  # @!attribute [rw] arn
4081
4731
  # The Amazon Resource Name (ARN) of the service pipeline.
@@ -4139,11 +4789,11 @@ module Aws::Proton
4139
4789
  end
4140
4790
 
4141
4791
  # A quota was exceeded. For more information, see [Proton Quotas][1] in
4142
- # the *Proton Administrator Guide*.
4792
+ # the *Proton User Guide*.
4143
4793
  #
4144
4794
  #
4145
4795
  #
4146
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-limits.html
4796
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-limits.html
4147
4797
  #
4148
4798
  # @!attribute [rw] message
4149
4799
  # @return [String]
@@ -4156,7 +4806,7 @@ module Aws::Proton
4156
4806
  include Aws::Structure
4157
4807
  end
4158
4808
 
4159
- # A summary of the service detail data.
4809
+ # Summary data of an Proton service resource.
4160
4810
  #
4161
4811
  # @!attribute [rw] arn
4162
4812
  # The Amazon Resource Name (ARN) of the service.
@@ -4205,7 +4855,7 @@ module Aws::Proton
4205
4855
  include Aws::Structure
4206
4856
  end
4207
4857
 
4208
- # The service template detail data.
4858
+ # Detailed data of an Proton service template resource.
4209
4859
  #
4210
4860
  # @!attribute [rw] arn
4211
4861
  # The Amazon Resource Name (ARN) of the service template.
@@ -4262,7 +4912,7 @@ module Aws::Proton
4262
4912
  include Aws::Structure
4263
4913
  end
4264
4914
 
4265
- # The service template summary data.
4915
+ # Summary data of an Proton service template resource.
4266
4916
  #
4267
4917
  # @!attribute [rw] arn
4268
4918
  # The Amazon Resource Name (ARN) of the service template.
@@ -4313,7 +4963,7 @@ module Aws::Proton
4313
4963
  include Aws::Structure
4314
4964
  end
4315
4965
 
4316
- # The version of a service template detail data.
4966
+ # Detailed data of an Proton service template version resource.
4317
4967
  #
4318
4968
  # @!attribute [rw] arn
4319
4969
  # The Amazon Resource Name (ARN) of the version of a service template.
@@ -4361,6 +5011,19 @@ module Aws::Proton
4361
5011
  # A service template version status message.
4362
5012
  # @return [String]
4363
5013
  #
5014
+ # @!attribute [rw] supported_component_sources
5015
+ # An array of supported component sources. Components with supported
5016
+ # sources can be attached to service instances based on this service
5017
+ # template version.
5018
+ #
5019
+ # For more information about components, see [Proton components][1] in
5020
+ # the *Proton User Guide*.
5021
+ #
5022
+ #
5023
+ #
5024
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
5025
+ # @return [Array<String>]
5026
+ #
4364
5027
  # @!attribute [rw] template_name
4365
5028
  # The name of the version of a service template.
4366
5029
  # @return [String]
@@ -4379,12 +5042,13 @@ module Aws::Proton
4379
5042
  :schema,
4380
5043
  :status,
4381
5044
  :status_message,
5045
+ :supported_component_sources,
4382
5046
  :template_name)
4383
5047
  SENSITIVE = [:description, :schema, :status_message]
4384
5048
  include Aws::Structure
4385
5049
  end
4386
5050
 
4387
- # A summary of the service template version detail data.
5051
+ # Summary data of an Proton service template version resource.
4388
5052
  #
4389
5053
  # @!attribute [rw] arn
4390
5054
  # The Amazon Resource Name (ARN) of the version of a service template.
@@ -4513,7 +5177,7 @@ module Aws::Proton
4513
5177
  # @return [String]
4514
5178
  #
4515
5179
  # @!attribute [rw] repository_name
4516
- # The name of the repository, for example `myrepos/myrepo`.
5180
+ # The repository name (for example, `myrepos/myrepo`).
4517
5181
  # @return [String]
4518
5182
  #
4519
5183
  # @!attribute [rw] repository_provider
@@ -4615,6 +5279,7 @@ module Aws::Proton
4615
5279
  # data as a hash:
4616
5280
  #
4617
5281
  # {
5282
+ # delete_pipeline_provisioning_repository: false,
4618
5283
  # pipeline_provisioning_repository: {
4619
5284
  # branch: "GitBranchName", # required
4620
5285
  # name: "RepositoryName", # required
@@ -4623,10 +5288,22 @@ module Aws::Proton
4623
5288
  # pipeline_service_role_arn: "PipelineRoleArn",
4624
5289
  # }
4625
5290
  #
5291
+ # @!attribute [rw] delete_pipeline_provisioning_repository
5292
+ # Set to `true` to remove a configured pipeline repository from the
5293
+ # account settings. Don't set this field if you are updating the
5294
+ # configured pipeline repository.
5295
+ # @return [Boolean]
5296
+ #
4626
5297
  # @!attribute [rw] pipeline_provisioning_repository
4627
- # A repository for pipeline provisioning. Specify it if you have
4628
- # environments configured for self-managed provisioning with services
4629
- # that include pipelines.
5298
+ # A linked repository for pipeline provisioning. Specify it if you
5299
+ # have environments configured for self-managed provisioning with
5300
+ # services that include pipelines. A linked repository is a repository
5301
+ # that has been registered with Proton. For more information, see
5302
+ # CreateRepository.
5303
+ #
5304
+ # To remove a previously configured repository, set
5305
+ # `deletePipelineProvisioningRepository` to `true`, and don't set
5306
+ # `pipelineProvisioningRepository`.
4630
5307
  # @return [Types::RepositoryBranchInput]
4631
5308
  #
4632
5309
  # @!attribute [rw] pipeline_service_role_arn
@@ -4634,11 +5311,14 @@ module Aws::Proton
4634
5311
  # for provisioning pipelines. Assumed by Proton for Amazon Web
4635
5312
  # Services-managed provisioning, and by customer-owned automation for
4636
5313
  # self-managed provisioning.
5314
+ #
5315
+ # To remove a previously configured ARN, specify an empty string.
4637
5316
  # @return [String]
4638
5317
  #
4639
5318
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateAccountSettingsInput AWS API Documentation
4640
5319
  #
4641
5320
  class UpdateAccountSettingsInput < Struct.new(
5321
+ :delete_pipeline_provisioning_repository,
4642
5322
  :pipeline_provisioning_repository,
4643
5323
  :pipeline_service_role_arn)
4644
5324
  SENSITIVE = []
@@ -4658,14 +5338,135 @@ module Aws::Proton
4658
5338
  include Aws::Structure
4659
5339
  end
4660
5340
 
5341
+ # @note When making an API call, you may pass UpdateComponentInput
5342
+ # data as a hash:
5343
+ #
5344
+ # {
5345
+ # deployment_type: "NONE", # required, accepts NONE, CURRENT_VERSION
5346
+ # description: "Description",
5347
+ # name: "ResourceName", # required
5348
+ # service_instance_name: "ResourceNameOrEmpty",
5349
+ # service_name: "ResourceNameOrEmpty",
5350
+ # service_spec: "SpecContents",
5351
+ # template_file: "TemplateFileContents",
5352
+ # }
5353
+ #
5354
+ # @!attribute [rw] deployment_type
5355
+ # The deployment type. It defines the mode for updating a component,
5356
+ # as follows:
5357
+ #
5358
+ #
5359
+ #
5360
+ # : `NONE`
5361
+ #
5362
+ # In this mode, a deployment *doesn't* occur. Only the requested
5363
+ # metadata parameters are updated. You can only specify
5364
+ # `description` in this mode.
5365
+ #
5366
+ #
5367
+ #
5368
+ # : `CURRENT_VERSION`
5369
+ #
5370
+ # In this mode, the component is deployed and updated with the new
5371
+ # `serviceSpec`, `templateSource`, and/or `type` that you provide.
5372
+ # Only requested parameters are updated.
5373
+ # @return [String]
5374
+ #
5375
+ # @!attribute [rw] description
5376
+ # An optional customer-provided description of the component.
5377
+ # @return [String]
5378
+ #
5379
+ # @!attribute [rw] name
5380
+ # The name of the component to update.
5381
+ # @return [String]
5382
+ #
5383
+ # @!attribute [rw] service_instance_name
5384
+ # The name of the service instance that you want to attach this
5385
+ # component to. Don't specify to keep the component's current
5386
+ # service instance attachment. Specify an empty string to detach the
5387
+ # component from the service instance it's attached to. Specify
5388
+ # non-empty values for both `serviceInstanceName` and `serviceName` or
5389
+ # for neither of them.
5390
+ # @return [String]
5391
+ #
5392
+ # @!attribute [rw] service_name
5393
+ # The name of the service that `serviceInstanceName` is associated
5394
+ # with. Don't specify to keep the component's current service
5395
+ # instance attachment. Specify an empty string to detach the component
5396
+ # from the service instance it's attached to. Specify non-empty
5397
+ # values for both `serviceInstanceName` and `serviceName` or for
5398
+ # neither of them.
5399
+ # @return [String]
5400
+ #
5401
+ # @!attribute [rw] service_spec
5402
+ # The service spec that you want the component to use to access
5403
+ # service inputs. Set this only when the component is attached to a
5404
+ # service instance.
5405
+ # @return [String]
5406
+ #
5407
+ # @!attribute [rw] template_file
5408
+ # A path to the Infrastructure as Code (IaC) file describing
5409
+ # infrastructure that a custom component provisions.
5410
+ #
5411
+ # <note markdown="1"> Components support a single IaC file, even if you use Terraform as
5412
+ # your template language.
5413
+ #
5414
+ # </note>
5415
+ # @return [String]
5416
+ #
5417
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateComponentInput AWS API Documentation
5418
+ #
5419
+ class UpdateComponentInput < Struct.new(
5420
+ :deployment_type,
5421
+ :description,
5422
+ :name,
5423
+ :service_instance_name,
5424
+ :service_name,
5425
+ :service_spec,
5426
+ :template_file)
5427
+ SENSITIVE = [:description, :service_spec, :template_file]
5428
+ include Aws::Structure
5429
+ end
5430
+
5431
+ # @!attribute [rw] component
5432
+ # The detailed data of the updated component.
5433
+ # @return [Types::Component]
5434
+ #
5435
+ # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateComponentOutput AWS API Documentation
5436
+ #
5437
+ class UpdateComponentOutput < Struct.new(
5438
+ :component)
5439
+ SENSITIVE = []
5440
+ include Aws::Structure
5441
+ end
5442
+
4661
5443
  # @note When making an API call, you may pass UpdateEnvironmentAccountConnectionInput
4662
5444
  # data as a hash:
4663
5445
  #
4664
5446
  # {
5447
+ # component_role_arn: "Arn",
4665
5448
  # id: "EnvironmentAccountConnectionId", # required
4666
- # role_arn: "Arn", # required
5449
+ # role_arn: "Arn",
4667
5450
  # }
4668
5451
  #
5452
+ # @!attribute [rw] component_role_arn
5453
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
5454
+ # uses when provisioning directly defined components in the associated
5455
+ # environment account. It determines the scope of infrastructure that
5456
+ # a component can provision in the account.
5457
+ #
5458
+ # The environment account connection must have a `componentRoleArn` to
5459
+ # allow directly defined components to be associated with any
5460
+ # environments running in the account.
5461
+ #
5462
+ # For more information about components, see [Proton components][1] in
5463
+ # the *Proton User Guide*.
5464
+ #
5465
+ #
5466
+ #
5467
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
5468
+ # @return [String]
5469
+ #
4669
5470
  # @!attribute [rw] id
4670
5471
  # The ID of the environment account connection to update.
4671
5472
  # @return [String]
@@ -4678,6 +5479,7 @@ module Aws::Proton
4678
5479
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateEnvironmentAccountConnectionInput AWS API Documentation
4679
5480
  #
4680
5481
  class UpdateEnvironmentAccountConnectionInput < Struct.new(
5482
+ :component_role_arn,
4681
5483
  :id,
4682
5484
  :role_arn)
4683
5485
  SENSITIVE = []
@@ -4701,6 +5503,7 @@ module Aws::Proton
4701
5503
  # data as a hash:
4702
5504
  #
4703
5505
  # {
5506
+ # component_role_arn: "Arn",
4704
5507
  # deployment_type: "NONE", # required, accepts NONE, CURRENT_VERSION, MINOR_VERSION, MAJOR_VERSION
4705
5508
  # description: "Description",
4706
5509
  # environment_account_connection_id: "EnvironmentAccountConnectionId",
@@ -4716,6 +5519,23 @@ module Aws::Proton
4716
5519
  # template_minor_version: "TemplateVersionPart",
4717
5520
  # }
4718
5521
  #
5522
+ # @!attribute [rw] component_role_arn
5523
+ # The Amazon Resource Name (ARN) of the IAM service role that Proton
5524
+ # uses when provisioning directly defined components in this
5525
+ # environment. It determines the scope of infrastructure that a
5526
+ # component can provision.
5527
+ #
5528
+ # The environment must have a `componentRoleArn` to allow directly
5529
+ # defined components to be associated with the environment.
5530
+ #
5531
+ # For more information about components, see [Proton components][1] in
5532
+ # the *Proton User Guide*.
5533
+ #
5534
+ #
5535
+ #
5536
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
5537
+ # @return [String]
5538
+ #
4719
5539
  # @!attribute [rw] deployment_type
4720
5540
  # There are four modes for updating an environment. The
4721
5541
  # `deploymentType` field defines the mode.
@@ -4779,8 +5599,10 @@ module Aws::Proton
4779
5599
  # @return [String]
4780
5600
  #
4781
5601
  # @!attribute [rw] provisioning_repository
4782
- # The infrastructure repository that you use to host your rendered
4783
- # infrastructure templates for self-managed provisioning.
5602
+ # The linked repository that you use to host your rendered
5603
+ # infrastructure templates for self-managed provisioning. A linked
5604
+ # repository is a repository that has been registered with Proton. For
5605
+ # more information, see CreateRepository.
4784
5606
  # @return [Types::RepositoryBranchInput]
4785
5607
  #
4786
5608
  # @!attribute [rw] spec
@@ -4798,6 +5620,7 @@ module Aws::Proton
4798
5620
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateEnvironmentInput AWS API Documentation
4799
5621
  #
4800
5622
  class UpdateEnvironmentInput < Struct.new(
5623
+ :component_role_arn,
4801
5624
  :deployment_type,
4802
5625
  :description,
4803
5626
  :environment_account_connection_id,
@@ -4946,13 +5769,12 @@ module Aws::Proton
4946
5769
  # Lists the service instances to add and the existing service
4947
5770
  # instances to remain. Omit the existing service instances to delete
4948
5771
  # from the list. *Don't* include edits to the existing service
4949
- # instances or pipeline. For more information, see *Edit a service* in
4950
- # the [Proton Administrator Guide][1] or the [Proton User Guide][2].
5772
+ # instances or pipeline. For more information, see [Edit a service][1]
5773
+ # in the *Proton User Guide*.
4951
5774
  #
4952
5775
  #
4953
5776
  #
4954
- # [1]: https://docs.aws.amazon.com/proton/latest/adminguide/ag-svc-update.html
4955
- # [2]: https://docs.aws.amazon.com/proton/latest/userguide/ug-svc-update.html
5777
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-svc-update.html
4956
5778
  # @return [String]
4957
5779
  #
4958
5780
  # @see http://docs.aws.amazon.com/goto/WebAPI/proton-2020-07-20/UpdateServiceInput AWS API Documentation
@@ -4978,10 +5800,8 @@ module Aws::Proton
4978
5800
  # }
4979
5801
  #
4980
5802
  # @!attribute [rw] deployment_type
4981
- # The deployment type.
4982
- #
4983
- # There are four modes for updating a service instance. The
4984
- # `deploymentType` field defines the mode.
5803
+ # The deployment type. It defines the mode for updating a service
5804
+ # instance, as follows:
4985
5805
  #
4986
5806
  #
4987
5807
  #
@@ -4997,7 +5817,7 @@ module Aws::Proton
4997
5817
  # In this mode, the service instance is deployed and updated with
4998
5818
  # the new spec that you provide. Only requested parameters are
4999
5819
  # updated. *Don’t* include major or minor version parameters when
5000
- # you use this `deployment-type`.
5820
+ # you use this deployment type.
5001
5821
  #
5002
5822
  #
5003
5823
  #
@@ -5230,12 +6050,15 @@ module Aws::Proton
5230
6050
  # major_version: "TemplateVersionPart", # required
5231
6051
  # minor_version: "TemplateVersionPart", # required
5232
6052
  # status: "REGISTRATION_IN_PROGRESS", # accepts REGISTRATION_IN_PROGRESS, REGISTRATION_FAILED, DRAFT, PUBLISHED
6053
+ # supported_component_sources: ["DIRECTLY_DEFINED"], # accepts DIRECTLY_DEFINED
5233
6054
  # template_name: "ResourceName", # required
5234
6055
  # }
5235
6056
  #
5236
6057
  # @!attribute [rw] compatible_environment_templates
5237
- # An array of compatible environment names for a service template
5238
- # major or minor version to update.
6058
+ # An array of environment template objects that are compatible with
6059
+ # this service template version. A service instance based on this
6060
+ # service template version can run in environments based on compatible
6061
+ # templates.
5239
6062
  # @return [Array<Types::CompatibleEnvironmentTemplateInput>]
5240
6063
  #
5241
6064
  # @!attribute [rw] description
@@ -5256,6 +6079,25 @@ module Aws::Proton
5256
6079
  # The status of the service template minor version to update.
5257
6080
  # @return [String]
5258
6081
  #
6082
+ # @!attribute [rw] supported_component_sources
6083
+ # An array of supported component sources. Components with supported
6084
+ # sources can be attached to service instances based on this service
6085
+ # template version.
6086
+ #
6087
+ # <note markdown="1"> A change to `supportedComponentSources` doesn't impact existing
6088
+ # component attachments to instances based on this template version. A
6089
+ # change only affects later associations.
6090
+ #
6091
+ # </note>
6092
+ #
6093
+ # For more information about components, see [Proton components][1] in
6094
+ # the *Proton User Guide*.
6095
+ #
6096
+ #
6097
+ #
6098
+ # [1]: https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html
6099
+ # @return [Array<String>]
6100
+ #
5259
6101
  # @!attribute [rw] template_name
5260
6102
  # The name of the service template.
5261
6103
  # @return [String]
@@ -5268,6 +6110,7 @@ module Aws::Proton
5268
6110
  :major_version,
5269
6111
  :minor_version,
5270
6112
  :status,
6113
+ :supported_component_sources,
5271
6114
  :template_name)
5272
6115
  SENSITIVE = [:description]
5273
6116
  include Aws::Structure
@@ -5298,11 +6141,11 @@ module Aws::Proton
5298
6141
  # }
5299
6142
  #
5300
6143
  # @!attribute [rw] branch
5301
- # The repository branch.
6144
+ # The repository branch for your template.
5302
6145
  # @return [String]
5303
6146
  #
5304
6147
  # @!attribute [rw] repository_name
5305
- # The name of the repository (for example, `myrepos/myrepo`).
6148
+ # The repository name (for example, `myrepos/myrepo`).
5306
6149
  # @return [String]
5307
6150
  #
5308
6151
  # @!attribute [rw] repository_provider