aws-sdk-servicecatalog 1.72.0 → 1.74.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -135,7 +135,7 @@ module Aws::ServiceCatalog
135
135
  # accept_language: "AcceptLanguage",
136
136
  # portfolio_id: "Id", # required
137
137
  # principal_arn: "PrincipalARN", # required
138
- # principal_type: "IAM", # required, accepts IAM
138
+ # principal_type: "IAM", # required, accepts IAM, IAM_PATTERN
139
139
  # }
140
140
  #
141
141
  # @!attribute [rw] accept_language
@@ -153,11 +153,19 @@ module Aws::ServiceCatalog
153
153
  # @return [String]
154
154
  #
155
155
  # @!attribute [rw] principal_arn
156
- # The ARN of the principal (IAM user, role, or group).
156
+ # The ARN of the principal (IAM user, role, or group). This field
157
+ # allows an ARN with no `accountID` if `PrincipalType` is
158
+ # `IAM_PATTERN`.
159
+ #
160
+ # You can associate multiple `IAM` patterns even if the account has no
161
+ # principal with that name. This is useful in Principal Name Sharing
162
+ # if you want to share a principal without creating it in the account
163
+ # that owns the portfolio.
157
164
  # @return [String]
158
165
  #
159
166
  # @!attribute [rw] principal_type
160
- # The principal type. The supported value is `IAM`.
167
+ # The principal type. The supported value is `IAM` if you use a fully
168
+ # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`.
161
169
  # @return [String]
162
170
  #
163
171
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociatePrincipalWithPortfolioInput AWS API Documentation
@@ -430,6 +438,48 @@ module Aws::ServiceCatalog
430
438
  include Aws::Structure
431
439
  end
432
440
 
441
+ # The subtype containing details about the Codestar connection `Type`.
442
+ #
443
+ # @note When making an API call, you may pass CodeStarParameters
444
+ # data as a hash:
445
+ #
446
+ # {
447
+ # connection_arn: "CodeStarConnectionArn", # required
448
+ # repository: "Repository", # required
449
+ # branch: "RepositoryBranch", # required
450
+ # artifact_path: "RepositoryArtifactPath", # required
451
+ # }
452
+ #
453
+ # @!attribute [rw] connection_arn
454
+ # The CodeStar ARN, which is the connection between Service Catalog
455
+ # and the external repository.
456
+ # @return [String]
457
+ #
458
+ # @!attribute [rw] repository
459
+ # The specific repository where the product’s artifact-to-be-synced
460
+ # resides, formatted as "Account/Repo."
461
+ # @return [String]
462
+ #
463
+ # @!attribute [rw] branch
464
+ # The specific branch where the artifact resides.
465
+ # @return [String]
466
+ #
467
+ # @!attribute [rw] artifact_path
468
+ # The absolute path wehre the artifact resides within the repo and
469
+ # branch, formatted as "folder/file.json."
470
+ # @return [String]
471
+ #
472
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CodeStarParameters AWS API Documentation
473
+ #
474
+ class CodeStarParameters < Struct.new(
475
+ :connection_arn,
476
+ :repository,
477
+ :branch,
478
+ :artifact_path)
479
+ SENSITIVE = []
480
+ include Aws::Structure
481
+ end
482
+
433
483
  # Information about a constraint.
434
484
  #
435
485
  # @!attribute [rw] constraint_id
@@ -859,6 +909,7 @@ module Aws::ServiceCatalog
859
909
  # value: "OrganizationNodeValue",
860
910
  # },
861
911
  # share_tag_options: false,
912
+ # share_principals: false,
862
913
  # }
863
914
  #
864
915
  # @!attribute [rw] accept_language
@@ -894,6 +945,19 @@ module Aws::ServiceCatalog
894
945
  # disabled.
895
946
  # @return [Boolean]
896
947
  #
948
+ # @!attribute [rw] share_principals
949
+ # Enables or disables `Principal` sharing when creating the portfolio
950
+ # share. If this flag is not provided, principal sharing is disabled.
951
+ #
952
+ # When you enable Principal Name Sharing for a portfolio share, the
953
+ # share recipient account end users with a principal that matches any
954
+ # of the associated IAM patterns can provision products from the
955
+ # portfolio. Once shared, the share recipient can view associations of
956
+ # `PrincipalType`\: `IAM_PATTERN` on their portfolio. You can create
957
+ # the principals in the recipient account before or after creating the
958
+ # share.
959
+ # @return [Boolean]
960
+ #
897
961
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreatePortfolioShareInput AWS API Documentation
898
962
  #
899
963
  class CreatePortfolioShareInput < Struct.new(
@@ -901,7 +965,8 @@ module Aws::ServiceCatalog
901
965
  :portfolio_id,
902
966
  :account_id,
903
967
  :organization_node,
904
- :share_tag_options)
968
+ :share_tag_options,
969
+ :share_principals)
905
970
  SENSITIVE = []
906
971
  include Aws::Structure
907
972
  end
@@ -938,16 +1003,27 @@ module Aws::ServiceCatalog
938
1003
  # value: "TagValue", # required
939
1004
  # },
940
1005
  # ],
941
- # provisioning_artifact_parameters: { # required
1006
+ # provisioning_artifact_parameters: {
942
1007
  # name: "ProvisioningArtifactName",
943
1008
  # description: "ProvisioningArtifactDescription",
944
- # info: { # required
1009
+ # info: {
945
1010
  # "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
946
1011
  # },
947
1012
  # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
948
1013
  # disable_template_validation: false,
949
1014
  # },
950
1015
  # idempotency_token: "IdempotencyToken", # required
1016
+ # source_connection: {
1017
+ # type: "CODESTAR", # accepts CODESTAR
1018
+ # connection_parameters: { # required
1019
+ # code_star: {
1020
+ # connection_arn: "CodeStarConnectionArn", # required
1021
+ # repository: "Repository", # required
1022
+ # branch: "RepositoryBranch", # required
1023
+ # artifact_path: "RepositoryArtifactPath", # required
1024
+ # },
1025
+ # },
1026
+ # },
951
1027
  # }
952
1028
  #
953
1029
  # @!attribute [rw] accept_language
@@ -1011,6 +1087,17 @@ module Aws::ServiceCatalog
1011
1087
  # not need to pass this option.
1012
1088
  # @return [String]
1013
1089
  #
1090
+ # @!attribute [rw] source_connection
1091
+ # Specifies connection details for the created product and syncs the
1092
+ # product to the connection source artifact. This automatically
1093
+ # manages the product's artifacts based on changes to the source. The
1094
+ # `SourceConnection` parameter consists of the following sub-fields.
1095
+ #
1096
+ # * `Type`
1097
+ #
1098
+ # * `ConnectionParamters`
1099
+ # @return [Types::SourceConnection]
1100
+ #
1014
1101
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateProductInput AWS API Documentation
1015
1102
  #
1016
1103
  class CreateProductInput < Struct.new(
@@ -1025,7 +1112,8 @@ module Aws::ServiceCatalog
1025
1112
  :product_type,
1026
1113
  :tags,
1027
1114
  :provisioning_artifact_parameters,
1028
- :idempotency_token)
1115
+ :idempotency_token,
1116
+ :source_connection)
1029
1117
  SENSITIVE = []
1030
1118
  include Aws::Structure
1031
1119
  end
@@ -1205,7 +1293,7 @@ module Aws::ServiceCatalog
1205
1293
  # parameters: { # required
1206
1294
  # name: "ProvisioningArtifactName",
1207
1295
  # description: "ProvisioningArtifactDescription",
1208
- # info: { # required
1296
+ # info: {
1209
1297
  # "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
1210
1298
  # },
1211
1299
  # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
@@ -1261,13 +1349,13 @@ module Aws::ServiceCatalog
1261
1349
  # not both. Keys accepted: \[ `LoadTemplateFromURL`,
1262
1350
  # `ImportFromPhysicalId` \].
1263
1351
  #
1264
- # The URL of the CloudFormation template in Amazon S3, Amazon Web
1265
- # Services CodeCommit, or GitHub in JSON format.
1352
+ # Use the URL of the CloudFormation template in Amazon S3 or GitHub in
1353
+ # JSON format.
1266
1354
  #
1267
1355
  # `LoadTemplateFromURL`
1268
1356
  #
1269
- # Use the URL of the CloudFormation template in Amazon S3, Amazon Web
1270
- # Services CodeCommit, or GitHub in JSON format.
1357
+ # Use the URL of the CloudFormation template in Amazon S3 or GitHub in
1358
+ # JSON format.
1271
1359
  #
1272
1360
  # `ImportFromPhysicalId`
1273
1361
  #
@@ -2418,8 +2506,8 @@ module Aws::ServiceCatalog
2418
2506
  # @return [Types::ProvisioningArtifactDetail]
2419
2507
  #
2420
2508
  # @!attribute [rw] info
2421
- # The URL of the CloudFormation template in Amazon S3, Amazon Web
2422
- # Services CodeCommit, or GitHub in JSON format.
2509
+ # The URL of the CloudFormation template in Amazon S3 or GitHub in
2510
+ # JSON format.
2423
2511
  # @return [Hash<String,String>]
2424
2512
  #
2425
2513
  # @!attribute [rw] status
@@ -2791,6 +2879,7 @@ module Aws::ServiceCatalog
2791
2879
  # accept_language: "AcceptLanguage",
2792
2880
  # portfolio_id: "Id", # required
2793
2881
  # principal_arn: "PrincipalARN", # required
2882
+ # principal_type: "IAM", # accepts IAM, IAM_PATTERN
2794
2883
  # }
2795
2884
  #
2796
2885
  # @!attribute [rw] accept_language
@@ -2808,7 +2897,14 @@ module Aws::ServiceCatalog
2808
2897
  # @return [String]
2809
2898
  #
2810
2899
  # @!attribute [rw] principal_arn
2811
- # The ARN of the principal (IAM user, role, or group).
2900
+ # The ARN of the principal (IAM user, role, or group). This field
2901
+ # allows an ARN with no `accountID` if `PrincipalType` is
2902
+ # `IAM_PATTERN`.
2903
+ # @return [String]
2904
+ #
2905
+ # @!attribute [rw] principal_type
2906
+ # The supported value is `IAM` if you use a fully defined ARN, or
2907
+ # `IAM_PATTERN` if you use no `accountID`.
2812
2908
  # @return [String]
2813
2909
  #
2814
2910
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociatePrincipalFromPortfolioInput AWS API Documentation
@@ -2816,7 +2912,8 @@ module Aws::ServiceCatalog
2816
2912
  class DisassociatePrincipalFromPortfolioInput < Struct.new(
2817
2913
  :accept_language,
2818
2914
  :portfolio_id,
2819
- :principal_arn)
2915
+ :principal_arn,
2916
+ :principal_type)
2820
2917
  SENSITIVE = []
2821
2918
  include Aws::Structure
2822
2919
  end
@@ -3336,6 +3433,55 @@ module Aws::ServiceCatalog
3336
3433
  #
3337
3434
  class InvalidStateException < Aws::EmptyStructure; end
3338
3435
 
3436
+ # Provides details about the product's connection sync and contains the
3437
+ # following sub-fields.
3438
+ #
3439
+ # * `LastSyncTime`
3440
+ #
3441
+ # * `LastSyncStatus`
3442
+ #
3443
+ # * `LastSyncStatusMessage`
3444
+ #
3445
+ # * `LastSuccessfulSyncTime`
3446
+ #
3447
+ # * `LastSuccessfulSyncProvisioningArtifactID`
3448
+ #
3449
+ # @!attribute [rw] last_sync_time
3450
+ # The time of the last attempted sync from the repository to the
3451
+ # Service Catalog product.
3452
+ # @return [Time]
3453
+ #
3454
+ # @!attribute [rw] last_sync_status
3455
+ # The current status of the sync. Responses include `SUCCEEDED` or
3456
+ # `FAILED`.
3457
+ # @return [String]
3458
+ #
3459
+ # @!attribute [rw] last_sync_status_message
3460
+ # The sync's status message.
3461
+ # @return [String]
3462
+ #
3463
+ # @!attribute [rw] last_successful_sync_time
3464
+ # The time of the latest successful sync from the source repo artifact
3465
+ # to the Service Catalog product.
3466
+ # @return [Time]
3467
+ #
3468
+ # @!attribute [rw] last_successful_sync_provisioning_artifact_id
3469
+ # The ProvisioningArtifactID of the ProvisioningArtifact created from
3470
+ # the latest successful sync.
3471
+ # @return [String]
3472
+ #
3473
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/LastSync AWS API Documentation
3474
+ #
3475
+ class LastSync < Struct.new(
3476
+ :last_sync_time,
3477
+ :last_sync_status,
3478
+ :last_sync_status_message,
3479
+ :last_successful_sync_time,
3480
+ :last_successful_sync_provisioning_artifact_id)
3481
+ SENSITIVE = []
3482
+ include Aws::Structure
3483
+ end
3484
+
3339
3485
  # A launch path object.
3340
3486
  #
3341
3487
  # @!attribute [rw] id
@@ -3966,7 +4112,8 @@ module Aws::ServiceCatalog
3966
4112
  end
3967
4113
 
3968
4114
  # @!attribute [rw] principals
3969
- # The IAM principals (users or roles) associated with the portfolio.
4115
+ # The `PrincipalARN`s and corresponding `PrincipalType`s associated
4116
+ # with the portfolio.
3970
4117
  # @return [Array<Types::Principal>]
3971
4118
  #
3972
4119
  # @!attribute [rw] next_page_token
@@ -4750,7 +4897,7 @@ module Aws::ServiceCatalog
4750
4897
  #
4751
4898
  # @!attribute [rw] principal_id
4752
4899
  # The identifier of the recipient entity that received the portfolio
4753
- # share. The recipient entities can be one of the following:
4900
+ # share. The recipient entity can be one of the following:
4754
4901
  #
4755
4902
  # 1\. An external account.
4756
4903
  #
@@ -4777,13 +4924,19 @@ module Aws::ServiceCatalog
4777
4924
  # portfolio share.
4778
4925
  # @return [Boolean]
4779
4926
  #
4927
+ # @!attribute [rw] share_principals
4928
+ # Indicates if `Principal` sharing is enabled or disabled for the
4929
+ # portfolio share.
4930
+ # @return [Boolean]
4931
+ #
4780
4932
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/PortfolioShareDetail AWS API Documentation
4781
4933
  #
4782
4934
  class PortfolioShareDetail < Struct.new(
4783
4935
  :principal_id,
4784
4936
  :type,
4785
4937
  :accepted,
4786
- :share_tag_options)
4938
+ :share_tag_options,
4939
+ :share_principals)
4787
4940
  SENSITIVE = []
4788
4941
  include Aws::Structure
4789
4942
  end
@@ -4791,11 +4944,14 @@ module Aws::ServiceCatalog
4791
4944
  # Information about a principal.
4792
4945
  #
4793
4946
  # @!attribute [rw] principal_arn
4794
- # The ARN of the principal (IAM user, role, or group).
4947
+ # The ARN of the principal (IAM user, role, or group). This field
4948
+ # allows for an ARN with no `accountID` if the `PrincipalType` is an
4949
+ # `IAM_PATTERN`.
4795
4950
  # @return [String]
4796
4951
  #
4797
4952
  # @!attribute [rw] principal_type
4798
- # The principal type. The supported value is `IAM`.
4953
+ # The principal type. The supported value is `IAM` if you use a fully
4954
+ # defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`.
4799
4955
  # @return [String]
4800
4956
  #
4801
4957
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/Principal AWS API Documentation
@@ -4852,13 +5008,23 @@ module Aws::ServiceCatalog
4852
5008
  # The UTC time stamp of the creation time.
4853
5009
  # @return [Time]
4854
5010
  #
5011
+ # @!attribute [rw] source_connection
5012
+ # A top level `ProductViewDetail` response containing details about
5013
+ # the product’s connection. Service Catalog returns this field for the
5014
+ # `CreateProduct`, `UpdateProduct`, `DescribeProductAsAdmin`, and
5015
+ # `SearchProductAsAdmin` APIs. This response contains the same fields
5016
+ # as the `ConnectionParameters` request, with the addition of the
5017
+ # `LastSync` response.
5018
+ # @return [Types::SourceConnectionDetail]
5019
+ #
4855
5020
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProductViewDetail AWS API Documentation
4856
5021
  #
4857
5022
  class ProductViewDetail < Struct.new(
4858
5023
  :product_view_summary,
4859
5024
  :status,
4860
5025
  :product_arn,
4861
- :created_time)
5026
+ :created_time,
5027
+ :source_connection)
4862
5028
  SENSITIVE = []
4863
5029
  include Aws::Structure
4864
5030
  end
@@ -5398,7 +5564,7 @@ module Aws::ServiceCatalog
5398
5564
  # @return [String]
5399
5565
  #
5400
5566
  # @!attribute [rw] updated_time
5401
- # The time when the plan was last updated.
5567
+ # The UTC time stamp when the plan was last updated.
5402
5568
  # @return [Time]
5403
5569
  #
5404
5570
  # @!attribute [rw] notification_arns
@@ -5555,6 +5721,19 @@ module Aws::ServiceCatalog
5555
5721
  # users about which provisioning artifacts to use.
5556
5722
  # @return [String]
5557
5723
  #
5724
+ # @!attribute [rw] source_revision
5725
+ # Specifies the revision of the external artifact that was used to
5726
+ # automatically sync the Service Catalog product and create the
5727
+ # provisioning artifact. Service Catalog includes this response
5728
+ # parameter as a high level field to the existing
5729
+ # `ProvisioningArtifactDetail` type, which is returned as part of the
5730
+ # response for `CreateProduct`, `UpdateProduct`,
5731
+ # `DescribeProductAsAdmin`, `DescribeProvisioningArtifact`,
5732
+ # `ListProvisioningArtifact`, and `UpdateProvisioningArticat` APIs.
5733
+ #
5734
+ # This field only exists for Repo-Synced products.
5735
+ # @return [String]
5736
+ #
5558
5737
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactDetail AWS API Documentation
5559
5738
  #
5560
5739
  class ProvisioningArtifactDetail < Struct.new(
@@ -5564,7 +5743,8 @@ module Aws::ServiceCatalog
5564
5743
  :type,
5565
5744
  :created_time,
5566
5745
  :active,
5567
- :guidance)
5746
+ :guidance,
5747
+ :source_revision)
5568
5748
  SENSITIVE = []
5569
5749
  include Aws::Structure
5570
5750
  end
@@ -5677,7 +5857,7 @@ module Aws::ServiceCatalog
5677
5857
  # {
5678
5858
  # name: "ProvisioningArtifactName",
5679
5859
  # description: "ProvisioningArtifactDescription",
5680
- # info: { # required
5860
+ # info: {
5681
5861
  # "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
5682
5862
  # },
5683
5863
  # type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
@@ -5699,9 +5879,8 @@ module Aws::ServiceCatalog
5699
5879
  # not both. Keys accepted: \[ `LoadTemplateFromURL`,
5700
5880
  # `ImportFromPhysicalId` \]
5701
5881
  #
5702
- # The URL of the CloudFormation template in Amazon S3, Amazon Web
5703
- # Services CodeCommit, or GitHub in JSON format. Specify the URL in
5704
- # JSON format as follows:
5882
+ # The URL of the CloudFormation template in Amazon S3 or GitHub in
5883
+ # JSON format. Specify the URL in JSON format as follows:
5705
5884
  #
5706
5885
  # `"LoadTemplateFromURL":
5707
5886
  # "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."`
@@ -5725,8 +5904,8 @@ module Aws::ServiceCatalog
5725
5904
  # @return [String]
5726
5905
  #
5727
5906
  # @!attribute [rw] disable_template_validation
5728
- # If set to true, Amazon Web Services Service Catalog stops validating
5729
- # the specified provisioning artifact even if it is invalid.
5907
+ # If set to true, Service Catalog stops validating the specified
5908
+ # provisioning artifact even if it is invalid.
5730
5909
  # @return [Boolean]
5731
5910
  #
5732
5911
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactProperties AWS API Documentation
@@ -6797,6 +6976,106 @@ module Aws::ServiceCatalog
6797
6976
  include Aws::Structure
6798
6977
  end
6799
6978
 
6979
+ # A top level `ProductViewDetail` response containing details about the
6980
+ # product’s connection. Service Catalog returns this field for the
6981
+ # `CreateProduct`, `UpdateProduct`, `DescribeProductAsAdmin`, and
6982
+ # `SearchProductAsAdmin` APIs. This response contains the same fields as
6983
+ # the `ConnectionParameters` request, with the addition of the
6984
+ # `LastSync` response.
6985
+ #
6986
+ # @note When making an API call, you may pass SourceConnection
6987
+ # data as a hash:
6988
+ #
6989
+ # {
6990
+ # type: "CODESTAR", # accepts CODESTAR
6991
+ # connection_parameters: { # required
6992
+ # code_star: {
6993
+ # connection_arn: "CodeStarConnectionArn", # required
6994
+ # repository: "Repository", # required
6995
+ # branch: "RepositoryBranch", # required
6996
+ # artifact_path: "RepositoryArtifactPath", # required
6997
+ # },
6998
+ # },
6999
+ # }
7000
+ #
7001
+ # @!attribute [rw] type
7002
+ # The only supported `SourceConnection` type is Codestar.
7003
+ # @return [String]
7004
+ #
7005
+ # @!attribute [rw] connection_parameters
7006
+ # The connection details based on the connection `Type`.
7007
+ # @return [Types::SourceConnectionParameters]
7008
+ #
7009
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/SourceConnection AWS API Documentation
7010
+ #
7011
+ class SourceConnection < Struct.new(
7012
+ :type,
7013
+ :connection_parameters)
7014
+ SENSITIVE = []
7015
+ include Aws::Structure
7016
+ end
7017
+
7018
+ # Provides details about the configured `SourceConnection`.
7019
+ #
7020
+ # @!attribute [rw] type
7021
+ # The only supported `SourceConnection` type is Codestar.
7022
+ # @return [String]
7023
+ #
7024
+ # @!attribute [rw] connection_parameters
7025
+ # The connection details based on the connection `Type`.
7026
+ # @return [Types::SourceConnectionParameters]
7027
+ #
7028
+ # @!attribute [rw] last_sync
7029
+ # Provides details about the product's connection sync and contains
7030
+ # the following sub-fields.
7031
+ #
7032
+ # * `LastSyncTime`
7033
+ #
7034
+ # * `LastSyncStatus`
7035
+ #
7036
+ # * `LastSyncStatusMessage`
7037
+ #
7038
+ # * `LastSuccessfulSyncTime`
7039
+ #
7040
+ # * `LastSuccessfulSyncProvisioningArtifactID`
7041
+ # @return [Types::LastSync]
7042
+ #
7043
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/SourceConnectionDetail AWS API Documentation
7044
+ #
7045
+ class SourceConnectionDetail < Struct.new(
7046
+ :type,
7047
+ :connection_parameters,
7048
+ :last_sync)
7049
+ SENSITIVE = []
7050
+ include Aws::Structure
7051
+ end
7052
+
7053
+ # Provides connection details.
7054
+ #
7055
+ # @note When making an API call, you may pass SourceConnectionParameters
7056
+ # data as a hash:
7057
+ #
7058
+ # {
7059
+ # code_star: {
7060
+ # connection_arn: "CodeStarConnectionArn", # required
7061
+ # repository: "Repository", # required
7062
+ # branch: "RepositoryBranch", # required
7063
+ # artifact_path: "RepositoryArtifactPath", # required
7064
+ # },
7065
+ # }
7066
+ #
7067
+ # @!attribute [rw] code_star
7068
+ # Provides `ConnectionType` details.
7069
+ # @return [Types::CodeStarParameters]
7070
+ #
7071
+ # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/SourceConnectionParameters AWS API Documentation
7072
+ #
7073
+ class SourceConnectionParameters < Struct.new(
7074
+ :code_star)
7075
+ SENSITIVE = []
7076
+ include Aws::Structure
7077
+ end
7078
+
6800
7079
  # An CloudFormation stack, in a specific account and Region, that's
6801
7080
  # part of a stack set operation. A stack instance is a reference to an
6802
7081
  # attempted or actual stack in a given account within a given Region. A
@@ -7251,6 +7530,7 @@ module Aws::ServiceCatalog
7251
7530
  # value: "OrganizationNodeValue",
7252
7531
  # },
7253
7532
  # share_tag_options: false,
7533
+ # share_principals: false,
7254
7534
  # }
7255
7535
  #
7256
7536
  # @!attribute [rw] accept_language
@@ -7279,9 +7559,15 @@ module Aws::ServiceCatalog
7279
7559
  # @return [Types::OrganizationNode]
7280
7560
  #
7281
7561
  # @!attribute [rw] share_tag_options
7282
- # A flag to enable or disable TagOptions sharing for the portfolio
7283
- # share. If this field is not provided, the current state of
7284
- # TagOptions sharing on the portfolio share will not be modified.
7562
+ # Enables or disables `TagOptions` sharing for the portfolio share. If
7563
+ # this field is not provided, the current state of TagOptions sharing
7564
+ # on the portfolio share will not be modified.
7565
+ # @return [Boolean]
7566
+ #
7567
+ # @!attribute [rw] share_principals
7568
+ # A flag to enables or disables `Principals` sharing in the portfolio.
7569
+ # If this field is not provided, the current state of the `Principals`
7570
+ # sharing on the portfolio share will not be modified.
7285
7571
  # @return [Boolean]
7286
7572
  #
7287
7573
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdatePortfolioShareInput AWS API Documentation
@@ -7291,7 +7577,8 @@ module Aws::ServiceCatalog
7291
7577
  :portfolio_id,
7292
7578
  :account_id,
7293
7579
  :organization_node,
7294
- :share_tag_options)
7580
+ :share_tag_options,
7581
+ :share_principals)
7295
7582
  SENSITIVE = []
7296
7583
  include Aws::Structure
7297
7584
  end
@@ -7336,6 +7623,17 @@ module Aws::ServiceCatalog
7336
7623
  # },
7337
7624
  # ],
7338
7625
  # remove_tags: ["TagKey"],
7626
+ # source_connection: {
7627
+ # type: "CODESTAR", # accepts CODESTAR
7628
+ # connection_parameters: { # required
7629
+ # code_star: {
7630
+ # connection_arn: "CodeStarConnectionArn", # required
7631
+ # repository: "Repository", # required
7632
+ # branch: "RepositoryBranch", # required
7633
+ # artifact_path: "RepositoryArtifactPath", # required
7634
+ # },
7635
+ # },
7636
+ # },
7339
7637
  # }
7340
7638
  #
7341
7639
  # @!attribute [rw] accept_language
@@ -7388,6 +7686,17 @@ module Aws::ServiceCatalog
7388
7686
  # The tags to remove from the product.
7389
7687
  # @return [Array<String>]
7390
7688
  #
7689
+ # @!attribute [rw] source_connection
7690
+ # Specifies connection details for the updated product and syncs the
7691
+ # product to the connection source artifact. This automatically
7692
+ # manages the product's artifacts based on changes to the source. The
7693
+ # `SourceConnection` parameter consists of the following sub-fields.
7694
+ #
7695
+ # * `Type`
7696
+ #
7697
+ # * `ConnectionParamters`
7698
+ # @return [Types::SourceConnection]
7699
+ #
7391
7700
  # @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateProductInput AWS API Documentation
7392
7701
  #
7393
7702
  class UpdateProductInput < Struct.new(
@@ -7401,7 +7710,8 @@ module Aws::ServiceCatalog
7401
7710
  :support_email,
7402
7711
  :support_url,
7403
7712
  :add_tags,
7404
- :remove_tags)
7713
+ :remove_tags,
7714
+ :source_connection)
7405
7715
  SENSITIVE = []
7406
7716
  include Aws::Structure
7407
7717
  end
@@ -7750,8 +8060,8 @@ module Aws::ServiceCatalog
7750
8060
  # @return [Types::ProvisioningArtifactDetail]
7751
8061
  #
7752
8062
  # @!attribute [rw] info
7753
- # The URL of the CloudFormation template in Amazon S3, Amazon Web
7754
- # Services CodeCommit, or GitHub in JSON format.
8063
+ # The URL of the CloudFormation template in Amazon S3 or GitHub in
8064
+ # JSON format.
7755
8065
  # @return [Hash<String,String>]
7756
8066
  #
7757
8067
  # @!attribute [rw] status
@@ -13,9 +13,13 @@ require 'aws-sigv4'
13
13
 
14
14
  require_relative 'aws-sdk-servicecatalog/types'
15
15
  require_relative 'aws-sdk-servicecatalog/client_api'
16
+ require_relative 'aws-sdk-servicecatalog/plugins/endpoints.rb'
16
17
  require_relative 'aws-sdk-servicecatalog/client'
17
18
  require_relative 'aws-sdk-servicecatalog/errors'
18
19
  require_relative 'aws-sdk-servicecatalog/resource'
20
+ require_relative 'aws-sdk-servicecatalog/endpoint_parameters'
21
+ require_relative 'aws-sdk-servicecatalog/endpoint_provider'
22
+ require_relative 'aws-sdk-servicecatalog/endpoints'
19
23
  require_relative 'aws-sdk-servicecatalog/customizations'
20
24
 
21
25
  # This module provides support for AWS Service Catalog. This module is available in the
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-servicecatalog/customizations'
48
52
  # @!group service
49
53
  module Aws::ServiceCatalog
50
54
 
51
- GEM_VERSION = '1.72.0'
55
+ GEM_VERSION = '1.74.0'
52
56
 
53
57
  end