aws-sdk-servicecatalog 1.73.0 → 1.75.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-servicecatalog/client.rb +204 -22
- data/lib/aws-sdk-servicecatalog/client_api.rb +50 -2
- data/lib/aws-sdk-servicecatalog/endpoint_provider.rb +35 -96
- data/lib/aws-sdk-servicecatalog/types.rb +280 -1147
- data/lib/aws-sdk-servicecatalog.rb +1 -1
- metadata +2 -2
@@ -10,15 +10,6 @@
|
|
10
10
|
module Aws::ServiceCatalog
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# @note When making an API call, you may pass AcceptPortfolioShareInput
|
14
|
-
# data as a hash:
|
15
|
-
#
|
16
|
-
# {
|
17
|
-
# accept_language: "AcceptLanguage",
|
18
|
-
# portfolio_id: "Id", # required
|
19
|
-
# portfolio_share_type: "IMPORTED", # accepts IMPORTED, AWS_SERVICECATALOG, AWS_ORGANIZATIONS
|
20
|
-
# }
|
21
|
-
#
|
22
13
|
# @!attribute [rw] accept_language
|
23
14
|
# The language code.
|
24
15
|
#
|
@@ -66,14 +57,6 @@ module Aws::ServiceCatalog
|
|
66
57
|
|
67
58
|
# The access level to use to filter results.
|
68
59
|
#
|
69
|
-
# @note When making an API call, you may pass AccessLevelFilter
|
70
|
-
# data as a hash:
|
71
|
-
#
|
72
|
-
# {
|
73
|
-
# key: "Account", # accepts Account, Role, User
|
74
|
-
# value: "AccessLevelFilterValue",
|
75
|
-
# }
|
76
|
-
#
|
77
60
|
# @!attribute [rw] key
|
78
61
|
# The access level.
|
79
62
|
#
|
@@ -99,14 +82,6 @@ module Aws::ServiceCatalog
|
|
99
82
|
include Aws::Structure
|
100
83
|
end
|
101
84
|
|
102
|
-
# @note When making an API call, you may pass AssociateBudgetWithResourceInput
|
103
|
-
# data as a hash:
|
104
|
-
#
|
105
|
-
# {
|
106
|
-
# budget_name: "BudgetName", # required
|
107
|
-
# resource_id: "Id", # required
|
108
|
-
# }
|
109
|
-
#
|
110
85
|
# @!attribute [rw] budget_name
|
111
86
|
# The name of the budget you want to associate.
|
112
87
|
# @return [String]
|
@@ -128,16 +103,6 @@ module Aws::ServiceCatalog
|
|
128
103
|
#
|
129
104
|
class AssociateBudgetWithResourceOutput < Aws::EmptyStructure; end
|
130
105
|
|
131
|
-
# @note When making an API call, you may pass AssociatePrincipalWithPortfolioInput
|
132
|
-
# data as a hash:
|
133
|
-
#
|
134
|
-
# {
|
135
|
-
# accept_language: "AcceptLanguage",
|
136
|
-
# portfolio_id: "Id", # required
|
137
|
-
# principal_arn: "PrincipalARN", # required
|
138
|
-
# principal_type: "IAM", # required, accepts IAM
|
139
|
-
# }
|
140
|
-
#
|
141
106
|
# @!attribute [rw] accept_language
|
142
107
|
# The language code.
|
143
108
|
#
|
@@ -153,11 +118,19 @@ module Aws::ServiceCatalog
|
|
153
118
|
# @return [String]
|
154
119
|
#
|
155
120
|
# @!attribute [rw] principal_arn
|
156
|
-
# The ARN of the principal (IAM user, role, or group).
|
121
|
+
# The ARN of the principal (IAM user, role, or group). This field
|
122
|
+
# allows an ARN with no `accountID` if `PrincipalType` is
|
123
|
+
# `IAM_PATTERN`.
|
124
|
+
#
|
125
|
+
# You can associate multiple `IAM` patterns even if the account has no
|
126
|
+
# principal with that name. This is useful in Principal Name Sharing
|
127
|
+
# if you want to share a principal without creating it in the account
|
128
|
+
# that owns the portfolio.
|
157
129
|
# @return [String]
|
158
130
|
#
|
159
131
|
# @!attribute [rw] principal_type
|
160
|
-
# The principal type. The supported value is `IAM
|
132
|
+
# The principal type. The supported value is `IAM` if you use a fully
|
133
|
+
# defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`.
|
161
134
|
# @return [String]
|
162
135
|
#
|
163
136
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/AssociatePrincipalWithPortfolioInput AWS API Documentation
|
@@ -175,16 +148,6 @@ module Aws::ServiceCatalog
|
|
175
148
|
#
|
176
149
|
class AssociatePrincipalWithPortfolioOutput < Aws::EmptyStructure; end
|
177
150
|
|
178
|
-
# @note When making an API call, you may pass AssociateProductWithPortfolioInput
|
179
|
-
# data as a hash:
|
180
|
-
#
|
181
|
-
# {
|
182
|
-
# accept_language: "AcceptLanguage",
|
183
|
-
# product_id: "Id", # required
|
184
|
-
# portfolio_id: "Id", # required
|
185
|
-
# source_portfolio_id: "Id",
|
186
|
-
# }
|
187
|
-
#
|
188
151
|
# @!attribute [rw] accept_language
|
189
152
|
# The language code.
|
190
153
|
#
|
@@ -222,16 +185,6 @@ module Aws::ServiceCatalog
|
|
222
185
|
#
|
223
186
|
class AssociateProductWithPortfolioOutput < Aws::EmptyStructure; end
|
224
187
|
|
225
|
-
# @note When making an API call, you may pass AssociateServiceActionWithProvisioningArtifactInput
|
226
|
-
# data as a hash:
|
227
|
-
#
|
228
|
-
# {
|
229
|
-
# product_id: "Id", # required
|
230
|
-
# provisioning_artifact_id: "Id", # required
|
231
|
-
# service_action_id: "Id", # required
|
232
|
-
# accept_language: "AcceptLanguage",
|
233
|
-
# }
|
234
|
-
#
|
235
188
|
# @!attribute [rw] product_id
|
236
189
|
# The product identifier. For example, `prod-abcdzk7xy33qa`.
|
237
190
|
# @return [String]
|
@@ -271,14 +224,6 @@ module Aws::ServiceCatalog
|
|
271
224
|
#
|
272
225
|
class AssociateServiceActionWithProvisioningArtifactOutput < Aws::EmptyStructure; end
|
273
226
|
|
274
|
-
# @note When making an API call, you may pass AssociateTagOptionWithResourceInput
|
275
|
-
# data as a hash:
|
276
|
-
#
|
277
|
-
# {
|
278
|
-
# resource_id: "ResourceId", # required
|
279
|
-
# tag_option_id: "TagOptionId", # required
|
280
|
-
# }
|
281
|
-
#
|
282
227
|
# @!attribute [rw] resource_id
|
283
228
|
# The resource identifier.
|
284
229
|
# @return [String]
|
@@ -300,20 +245,6 @@ module Aws::ServiceCatalog
|
|
300
245
|
#
|
301
246
|
class AssociateTagOptionWithResourceOutput < Aws::EmptyStructure; end
|
302
247
|
|
303
|
-
# @note When making an API call, you may pass BatchAssociateServiceActionWithProvisioningArtifactInput
|
304
|
-
# data as a hash:
|
305
|
-
#
|
306
|
-
# {
|
307
|
-
# service_action_associations: [ # required
|
308
|
-
# {
|
309
|
-
# service_action_id: "Id", # required
|
310
|
-
# product_id: "Id", # required
|
311
|
-
# provisioning_artifact_id: "Id", # required
|
312
|
-
# },
|
313
|
-
# ],
|
314
|
-
# accept_language: "AcceptLanguage",
|
315
|
-
# }
|
316
|
-
#
|
317
248
|
# @!attribute [rw] service_action_associations
|
318
249
|
# One or more associations, each consisting of the Action ID, the
|
319
250
|
# Product ID, and the Provisioning Artifact ID.
|
@@ -351,20 +282,6 @@ module Aws::ServiceCatalog
|
|
351
282
|
include Aws::Structure
|
352
283
|
end
|
353
284
|
|
354
|
-
# @note When making an API call, you may pass BatchDisassociateServiceActionFromProvisioningArtifactInput
|
355
|
-
# data as a hash:
|
356
|
-
#
|
357
|
-
# {
|
358
|
-
# service_action_associations: [ # required
|
359
|
-
# {
|
360
|
-
# service_action_id: "Id", # required
|
361
|
-
# product_id: "Id", # required
|
362
|
-
# provisioning_artifact_id: "Id", # required
|
363
|
-
# },
|
364
|
-
# ],
|
365
|
-
# accept_language: "AcceptLanguage",
|
366
|
-
# }
|
367
|
-
#
|
368
285
|
# @!attribute [rw] service_action_associations
|
369
286
|
# One or more associations, each consisting of the Action ID, the
|
370
287
|
# Product ID, and the Provisioning Artifact ID.
|
@@ -430,6 +347,38 @@ module Aws::ServiceCatalog
|
|
430
347
|
include Aws::Structure
|
431
348
|
end
|
432
349
|
|
350
|
+
# The subtype containing details about the Codestar connection `Type`.
|
351
|
+
#
|
352
|
+
# @!attribute [rw] connection_arn
|
353
|
+
# The CodeStar ARN, which is the connection between Service Catalog
|
354
|
+
# and the external repository.
|
355
|
+
# @return [String]
|
356
|
+
#
|
357
|
+
# @!attribute [rw] repository
|
358
|
+
# The specific repository where the product’s artifact-to-be-synced
|
359
|
+
# resides, formatted as "Account/Repo."
|
360
|
+
# @return [String]
|
361
|
+
#
|
362
|
+
# @!attribute [rw] branch
|
363
|
+
# The specific branch where the artifact resides.
|
364
|
+
# @return [String]
|
365
|
+
#
|
366
|
+
# @!attribute [rw] artifact_path
|
367
|
+
# The absolute path wehre the artifact resides within the repo and
|
368
|
+
# branch, formatted as "folder/file.json."
|
369
|
+
# @return [String]
|
370
|
+
#
|
371
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CodeStarParameters AWS API Documentation
|
372
|
+
#
|
373
|
+
class CodeStarParameters < Struct.new(
|
374
|
+
:connection_arn,
|
375
|
+
:repository,
|
376
|
+
:branch,
|
377
|
+
:artifact_path)
|
378
|
+
SENSITIVE = []
|
379
|
+
include Aws::Structure
|
380
|
+
end
|
381
|
+
|
433
382
|
# Information about a constraint.
|
434
383
|
#
|
435
384
|
# @!attribute [rw] constraint_id
|
@@ -508,23 +457,6 @@ module Aws::ServiceCatalog
|
|
508
457
|
include Aws::Structure
|
509
458
|
end
|
510
459
|
|
511
|
-
# @note When making an API call, you may pass CopyProductInput
|
512
|
-
# data as a hash:
|
513
|
-
#
|
514
|
-
# {
|
515
|
-
# accept_language: "AcceptLanguage",
|
516
|
-
# source_product_arn: "ProductArn", # required
|
517
|
-
# target_product_id: "Id",
|
518
|
-
# target_product_name: "ProductViewName",
|
519
|
-
# source_provisioning_artifact_identifiers: [
|
520
|
-
# {
|
521
|
-
# "Id" => "ProvisioningArtifactPropertyValue",
|
522
|
-
# },
|
523
|
-
# ],
|
524
|
-
# copy_options: ["CopyTags"], # accepts CopyTags
|
525
|
-
# idempotency_token: "IdempotencyToken", # required
|
526
|
-
# }
|
527
|
-
#
|
528
460
|
# @!attribute [rw] accept_language
|
529
461
|
# The language code.
|
530
462
|
#
|
@@ -595,19 +527,6 @@ module Aws::ServiceCatalog
|
|
595
527
|
include Aws::Structure
|
596
528
|
end
|
597
529
|
|
598
|
-
# @note When making an API call, you may pass CreateConstraintInput
|
599
|
-
# data as a hash:
|
600
|
-
#
|
601
|
-
# {
|
602
|
-
# accept_language: "AcceptLanguage",
|
603
|
-
# portfolio_id: "Id", # required
|
604
|
-
# product_id: "Id", # required
|
605
|
-
# parameters: "ConstraintParameters", # required
|
606
|
-
# type: "ConstraintType", # required
|
607
|
-
# description: "ConstraintDescription",
|
608
|
-
# idempotency_token: "IdempotencyToken", # required
|
609
|
-
# }
|
610
|
-
#
|
611
530
|
# @!attribute [rw] accept_language
|
612
531
|
# The language code.
|
613
532
|
#
|
@@ -765,23 +684,6 @@ module Aws::ServiceCatalog
|
|
765
684
|
include Aws::Structure
|
766
685
|
end
|
767
686
|
|
768
|
-
# @note When making an API call, you may pass CreatePortfolioInput
|
769
|
-
# data as a hash:
|
770
|
-
#
|
771
|
-
# {
|
772
|
-
# accept_language: "AcceptLanguage",
|
773
|
-
# display_name: "PortfolioDisplayName", # required
|
774
|
-
# description: "PortfolioDescription",
|
775
|
-
# provider_name: "ProviderName", # required
|
776
|
-
# tags: [
|
777
|
-
# {
|
778
|
-
# key: "TagKey", # required
|
779
|
-
# value: "TagValue", # required
|
780
|
-
# },
|
781
|
-
# ],
|
782
|
-
# idempotency_token: "IdempotencyToken", # required
|
783
|
-
# }
|
784
|
-
#
|
785
687
|
# @!attribute [rw] accept_language
|
786
688
|
# The language code.
|
787
689
|
#
|
@@ -847,20 +749,6 @@ module Aws::ServiceCatalog
|
|
847
749
|
include Aws::Structure
|
848
750
|
end
|
849
751
|
|
850
|
-
# @note When making an API call, you may pass CreatePortfolioShareInput
|
851
|
-
# data as a hash:
|
852
|
-
#
|
853
|
-
# {
|
854
|
-
# accept_language: "AcceptLanguage",
|
855
|
-
# portfolio_id: "Id", # required
|
856
|
-
# account_id: "AccountId",
|
857
|
-
# organization_node: {
|
858
|
-
# type: "ORGANIZATION", # accepts ORGANIZATION, ORGANIZATIONAL_UNIT, ACCOUNT
|
859
|
-
# value: "OrganizationNodeValue",
|
860
|
-
# },
|
861
|
-
# share_tag_options: false,
|
862
|
-
# }
|
863
|
-
#
|
864
752
|
# @!attribute [rw] accept_language
|
865
753
|
# The language code.
|
866
754
|
#
|
@@ -894,6 +782,19 @@ module Aws::ServiceCatalog
|
|
894
782
|
# disabled.
|
895
783
|
# @return [Boolean]
|
896
784
|
#
|
785
|
+
# @!attribute [rw] share_principals
|
786
|
+
# Enables or disables `Principal` sharing when creating the portfolio
|
787
|
+
# share. If this flag is not provided, principal sharing is disabled.
|
788
|
+
#
|
789
|
+
# When you enable Principal Name Sharing for a portfolio share, the
|
790
|
+
# share recipient account end users with a principal that matches any
|
791
|
+
# of the associated IAM patterns can provision products from the
|
792
|
+
# portfolio. Once shared, the share recipient can view associations of
|
793
|
+
# `PrincipalType`\: `IAM_PATTERN` on their portfolio. You can create
|
794
|
+
# the principals in the recipient account before or after creating the
|
795
|
+
# share.
|
796
|
+
# @return [Boolean]
|
797
|
+
#
|
897
798
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreatePortfolioShareInput AWS API Documentation
|
898
799
|
#
|
899
800
|
class CreatePortfolioShareInput < Struct.new(
|
@@ -901,7 +802,8 @@ module Aws::ServiceCatalog
|
|
901
802
|
:portfolio_id,
|
902
803
|
:account_id,
|
903
804
|
:organization_node,
|
904
|
-
:share_tag_options
|
805
|
+
:share_tag_options,
|
806
|
+
:share_principals)
|
905
807
|
SENSITIVE = []
|
906
808
|
include Aws::Structure
|
907
809
|
end
|
@@ -919,37 +821,6 @@ module Aws::ServiceCatalog
|
|
919
821
|
include Aws::Structure
|
920
822
|
end
|
921
823
|
|
922
|
-
# @note When making an API call, you may pass CreateProductInput
|
923
|
-
# data as a hash:
|
924
|
-
#
|
925
|
-
# {
|
926
|
-
# accept_language: "AcceptLanguage",
|
927
|
-
# name: "ProductViewName", # required
|
928
|
-
# owner: "ProductViewOwner", # required
|
929
|
-
# description: "ProductViewShortDescription",
|
930
|
-
# distributor: "ProductViewOwner",
|
931
|
-
# support_description: "SupportDescription",
|
932
|
-
# support_email: "SupportEmail",
|
933
|
-
# support_url: "SupportUrl",
|
934
|
-
# product_type: "CLOUD_FORMATION_TEMPLATE", # required, accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE
|
935
|
-
# tags: [
|
936
|
-
# {
|
937
|
-
# key: "TagKey", # required
|
938
|
-
# value: "TagValue", # required
|
939
|
-
# },
|
940
|
-
# ],
|
941
|
-
# provisioning_artifact_parameters: { # required
|
942
|
-
# name: "ProvisioningArtifactName",
|
943
|
-
# description: "ProvisioningArtifactDescription",
|
944
|
-
# info: { # required
|
945
|
-
# "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
|
946
|
-
# },
|
947
|
-
# type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
|
948
|
-
# disable_template_validation: false,
|
949
|
-
# },
|
950
|
-
# idempotency_token: "IdempotencyToken", # required
|
951
|
-
# }
|
952
|
-
#
|
953
824
|
# @!attribute [rw] accept_language
|
954
825
|
# The language code.
|
955
826
|
#
|
@@ -1011,6 +882,17 @@ module Aws::ServiceCatalog
|
|
1011
882
|
# not need to pass this option.
|
1012
883
|
# @return [String]
|
1013
884
|
#
|
885
|
+
# @!attribute [rw] source_connection
|
886
|
+
# Specifies connection details for the created product and syncs the
|
887
|
+
# product to the connection source artifact. This automatically
|
888
|
+
# manages the product's artifacts based on changes to the source. The
|
889
|
+
# `SourceConnection` parameter consists of the following sub-fields.
|
890
|
+
#
|
891
|
+
# * `Type`
|
892
|
+
#
|
893
|
+
# * `ConnectionParamters`
|
894
|
+
# @return [Types::SourceConnection]
|
895
|
+
#
|
1014
896
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateProductInput AWS API Documentation
|
1015
897
|
#
|
1016
898
|
class CreateProductInput < Struct.new(
|
@@ -1025,7 +907,8 @@ module Aws::ServiceCatalog
|
|
1025
907
|
:product_type,
|
1026
908
|
:tags,
|
1027
909
|
:provisioning_artifact_parameters,
|
1028
|
-
:idempotency_token
|
910
|
+
:idempotency_token,
|
911
|
+
:source_connection)
|
1029
912
|
SENSITIVE = []
|
1030
913
|
include Aws::Structure
|
1031
914
|
end
|
@@ -1052,34 +935,6 @@ module Aws::ServiceCatalog
|
|
1052
935
|
include Aws::Structure
|
1053
936
|
end
|
1054
937
|
|
1055
|
-
# @note When making an API call, you may pass CreateProvisionedProductPlanInput
|
1056
|
-
# data as a hash:
|
1057
|
-
#
|
1058
|
-
# {
|
1059
|
-
# accept_language: "AcceptLanguage",
|
1060
|
-
# plan_name: "ProvisionedProductPlanName", # required
|
1061
|
-
# plan_type: "CLOUDFORMATION", # required, accepts CLOUDFORMATION
|
1062
|
-
# notification_arns: ["NotificationArn"],
|
1063
|
-
# path_id: "Id",
|
1064
|
-
# product_id: "Id", # required
|
1065
|
-
# provisioned_product_name: "ProvisionedProductName", # required
|
1066
|
-
# provisioning_artifact_id: "Id", # required
|
1067
|
-
# provisioning_parameters: [
|
1068
|
-
# {
|
1069
|
-
# key: "ParameterKey",
|
1070
|
-
# value: "ParameterValue",
|
1071
|
-
# use_previous_value: false,
|
1072
|
-
# },
|
1073
|
-
# ],
|
1074
|
-
# idempotency_token: "IdempotencyToken", # required
|
1075
|
-
# tags: [
|
1076
|
-
# {
|
1077
|
-
# key: "TagKey", # required
|
1078
|
-
# value: "TagValue", # required
|
1079
|
-
# },
|
1080
|
-
# ],
|
1081
|
-
# }
|
1082
|
-
#
|
1083
938
|
# @!attribute [rw] accept_language
|
1084
939
|
# The language code.
|
1085
940
|
#
|
@@ -1196,24 +1051,6 @@ module Aws::ServiceCatalog
|
|
1196
1051
|
include Aws::Structure
|
1197
1052
|
end
|
1198
1053
|
|
1199
|
-
# @note When making an API call, you may pass CreateProvisioningArtifactInput
|
1200
|
-
# data as a hash:
|
1201
|
-
#
|
1202
|
-
# {
|
1203
|
-
# accept_language: "AcceptLanguage",
|
1204
|
-
# product_id: "Id", # required
|
1205
|
-
# parameters: { # required
|
1206
|
-
# name: "ProvisioningArtifactName",
|
1207
|
-
# description: "ProvisioningArtifactDescription",
|
1208
|
-
# info: { # required
|
1209
|
-
# "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
|
1210
|
-
# },
|
1211
|
-
# type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
|
1212
|
-
# disable_template_validation: false,
|
1213
|
-
# },
|
1214
|
-
# idempotency_token: "IdempotencyToken", # required
|
1215
|
-
# }
|
1216
|
-
#
|
1217
1054
|
# @!attribute [rw] accept_language
|
1218
1055
|
# The language code.
|
1219
1056
|
#
|
@@ -1261,13 +1098,13 @@ module Aws::ServiceCatalog
|
|
1261
1098
|
# not both. Keys accepted: \[ `LoadTemplateFromURL`,
|
1262
1099
|
# `ImportFromPhysicalId` \].
|
1263
1100
|
#
|
1264
|
-
#
|
1265
|
-
#
|
1101
|
+
# Use the URL of the CloudFormation template in Amazon S3 or GitHub in
|
1102
|
+
# JSON format.
|
1266
1103
|
#
|
1267
1104
|
# `LoadTemplateFromURL`
|
1268
1105
|
#
|
1269
|
-
# Use the URL of the CloudFormation template in Amazon S3
|
1270
|
-
#
|
1106
|
+
# Use the URL of the CloudFormation template in Amazon S3 or GitHub in
|
1107
|
+
# JSON format.
|
1271
1108
|
#
|
1272
1109
|
# `ImportFromPhysicalId`
|
1273
1110
|
#
|
@@ -1289,20 +1126,6 @@ module Aws::ServiceCatalog
|
|
1289
1126
|
include Aws::Structure
|
1290
1127
|
end
|
1291
1128
|
|
1292
|
-
# @note When making an API call, you may pass CreateServiceActionInput
|
1293
|
-
# data as a hash:
|
1294
|
-
#
|
1295
|
-
# {
|
1296
|
-
# name: "ServiceActionName", # required
|
1297
|
-
# definition_type: "SSM_AUTOMATION", # required, accepts SSM_AUTOMATION
|
1298
|
-
# definition: { # required
|
1299
|
-
# "Name" => "ServiceActionDefinitionValue",
|
1300
|
-
# },
|
1301
|
-
# description: "ServiceActionDescription",
|
1302
|
-
# accept_language: "AcceptLanguage",
|
1303
|
-
# idempotency_token: "IdempotencyToken", # required
|
1304
|
-
# }
|
1305
|
-
#
|
1306
1129
|
# @!attribute [rw] name
|
1307
1130
|
# The self-service action name.
|
1308
1131
|
# @return [String]
|
@@ -1392,14 +1215,6 @@ module Aws::ServiceCatalog
|
|
1392
1215
|
include Aws::Structure
|
1393
1216
|
end
|
1394
1217
|
|
1395
|
-
# @note When making an API call, you may pass CreateTagOptionInput
|
1396
|
-
# data as a hash:
|
1397
|
-
#
|
1398
|
-
# {
|
1399
|
-
# key: "TagOptionKey", # required
|
1400
|
-
# value: "TagOptionValue", # required
|
1401
|
-
# }
|
1402
|
-
#
|
1403
1218
|
# @!attribute [rw] key
|
1404
1219
|
# The TagOption key.
|
1405
1220
|
# @return [String]
|
@@ -1429,14 +1244,6 @@ module Aws::ServiceCatalog
|
|
1429
1244
|
include Aws::Structure
|
1430
1245
|
end
|
1431
1246
|
|
1432
|
-
# @note When making an API call, you may pass DeleteConstraintInput
|
1433
|
-
# data as a hash:
|
1434
|
-
#
|
1435
|
-
# {
|
1436
|
-
# accept_language: "AcceptLanguage",
|
1437
|
-
# id: "Id", # required
|
1438
|
-
# }
|
1439
|
-
#
|
1440
1247
|
# @!attribute [rw] accept_language
|
1441
1248
|
# The language code.
|
1442
1249
|
#
|
@@ -1464,14 +1271,6 @@ module Aws::ServiceCatalog
|
|
1464
1271
|
#
|
1465
1272
|
class DeleteConstraintOutput < Aws::EmptyStructure; end
|
1466
1273
|
|
1467
|
-
# @note When making an API call, you may pass DeletePortfolioInput
|
1468
|
-
# data as a hash:
|
1469
|
-
#
|
1470
|
-
# {
|
1471
|
-
# accept_language: "AcceptLanguage",
|
1472
|
-
# id: "Id", # required
|
1473
|
-
# }
|
1474
|
-
#
|
1475
1274
|
# @!attribute [rw] accept_language
|
1476
1275
|
# The language code.
|
1477
1276
|
#
|
@@ -1499,19 +1298,6 @@ module Aws::ServiceCatalog
|
|
1499
1298
|
#
|
1500
1299
|
class DeletePortfolioOutput < Aws::EmptyStructure; end
|
1501
1300
|
|
1502
|
-
# @note When making an API call, you may pass DeletePortfolioShareInput
|
1503
|
-
# data as a hash:
|
1504
|
-
#
|
1505
|
-
# {
|
1506
|
-
# accept_language: "AcceptLanguage",
|
1507
|
-
# portfolio_id: "Id", # required
|
1508
|
-
# account_id: "AccountId",
|
1509
|
-
# organization_node: {
|
1510
|
-
# type: "ORGANIZATION", # accepts ORGANIZATION, ORGANIZATIONAL_UNIT, ACCOUNT
|
1511
|
-
# value: "OrganizationNodeValue",
|
1512
|
-
# },
|
1513
|
-
# }
|
1514
|
-
#
|
1515
1301
|
# @!attribute [rw] accept_language
|
1516
1302
|
# The language code.
|
1517
1303
|
#
|
@@ -1558,14 +1344,6 @@ module Aws::ServiceCatalog
|
|
1558
1344
|
include Aws::Structure
|
1559
1345
|
end
|
1560
1346
|
|
1561
|
-
# @note When making an API call, you may pass DeleteProductInput
|
1562
|
-
# data as a hash:
|
1563
|
-
#
|
1564
|
-
# {
|
1565
|
-
# accept_language: "AcceptLanguage",
|
1566
|
-
# id: "Id", # required
|
1567
|
-
# }
|
1568
|
-
#
|
1569
1347
|
# @!attribute [rw] accept_language
|
1570
1348
|
# The language code.
|
1571
1349
|
#
|
@@ -1593,15 +1371,6 @@ module Aws::ServiceCatalog
|
|
1593
1371
|
#
|
1594
1372
|
class DeleteProductOutput < Aws::EmptyStructure; end
|
1595
1373
|
|
1596
|
-
# @note When making an API call, you may pass DeleteProvisionedProductPlanInput
|
1597
|
-
# data as a hash:
|
1598
|
-
#
|
1599
|
-
# {
|
1600
|
-
# accept_language: "AcceptLanguage",
|
1601
|
-
# plan_id: "Id", # required
|
1602
|
-
# ignore_errors: false,
|
1603
|
-
# }
|
1604
|
-
#
|
1605
1374
|
# @!attribute [rw] accept_language
|
1606
1375
|
# The language code.
|
1607
1376
|
#
|
@@ -1636,15 +1405,6 @@ module Aws::ServiceCatalog
|
|
1636
1405
|
#
|
1637
1406
|
class DeleteProvisionedProductPlanOutput < Aws::EmptyStructure; end
|
1638
1407
|
|
1639
|
-
# @note When making an API call, you may pass DeleteProvisioningArtifactInput
|
1640
|
-
# data as a hash:
|
1641
|
-
#
|
1642
|
-
# {
|
1643
|
-
# accept_language: "AcceptLanguage",
|
1644
|
-
# product_id: "Id", # required
|
1645
|
-
# provisioning_artifact_id: "Id", # required
|
1646
|
-
# }
|
1647
|
-
#
|
1648
1408
|
# @!attribute [rw] accept_language
|
1649
1409
|
# The language code.
|
1650
1410
|
#
|
@@ -1677,14 +1437,6 @@ module Aws::ServiceCatalog
|
|
1677
1437
|
#
|
1678
1438
|
class DeleteProvisioningArtifactOutput < Aws::EmptyStructure; end
|
1679
1439
|
|
1680
|
-
# @note When making an API call, you may pass DeleteServiceActionInput
|
1681
|
-
# data as a hash:
|
1682
|
-
#
|
1683
|
-
# {
|
1684
|
-
# id: "Id", # required
|
1685
|
-
# accept_language: "AcceptLanguage",
|
1686
|
-
# }
|
1687
|
-
#
|
1688
1440
|
# @!attribute [rw] id
|
1689
1441
|
# The self-service action identifier. For example,
|
1690
1442
|
# `act-fs7abcd89wxyz`.
|
@@ -1713,13 +1465,6 @@ module Aws::ServiceCatalog
|
|
1713
1465
|
#
|
1714
1466
|
class DeleteServiceActionOutput < Aws::EmptyStructure; end
|
1715
1467
|
|
1716
|
-
# @note When making an API call, you may pass DeleteTagOptionInput
|
1717
|
-
# data as a hash:
|
1718
|
-
#
|
1719
|
-
# {
|
1720
|
-
# id: "TagOptionId", # required
|
1721
|
-
# }
|
1722
|
-
#
|
1723
1468
|
# @!attribute [rw] id
|
1724
1469
|
# The TagOption identifier.
|
1725
1470
|
# @return [String]
|
@@ -1736,14 +1481,6 @@ module Aws::ServiceCatalog
|
|
1736
1481
|
#
|
1737
1482
|
class DeleteTagOptionOutput < Aws::EmptyStructure; end
|
1738
1483
|
|
1739
|
-
# @note When making an API call, you may pass DescribeConstraintInput
|
1740
|
-
# data as a hash:
|
1741
|
-
#
|
1742
|
-
# {
|
1743
|
-
# accept_language: "AcceptLanguage",
|
1744
|
-
# id: "Id", # required
|
1745
|
-
# }
|
1746
|
-
#
|
1747
1484
|
# @!attribute [rw] accept_language
|
1748
1485
|
# The language code.
|
1749
1486
|
#
|
@@ -1789,14 +1526,6 @@ module Aws::ServiceCatalog
|
|
1789
1526
|
include Aws::Structure
|
1790
1527
|
end
|
1791
1528
|
|
1792
|
-
# @note When making an API call, you may pass DescribeCopyProductStatusInput
|
1793
|
-
# data as a hash:
|
1794
|
-
#
|
1795
|
-
# {
|
1796
|
-
# accept_language: "AcceptLanguage",
|
1797
|
-
# copy_product_token: "Id", # required
|
1798
|
-
# }
|
1799
|
-
#
|
1800
1529
|
# @!attribute [rw] accept_language
|
1801
1530
|
# The language code.
|
1802
1531
|
#
|
@@ -1843,14 +1572,6 @@ module Aws::ServiceCatalog
|
|
1843
1572
|
include Aws::Structure
|
1844
1573
|
end
|
1845
1574
|
|
1846
|
-
# @note When making an API call, you may pass DescribePortfolioInput
|
1847
|
-
# data as a hash:
|
1848
|
-
#
|
1849
|
-
# {
|
1850
|
-
# accept_language: "AcceptLanguage",
|
1851
|
-
# id: "Id", # required
|
1852
|
-
# }
|
1853
|
-
#
|
1854
1575
|
# @!attribute [rw] accept_language
|
1855
1576
|
# The language code.
|
1856
1577
|
#
|
@@ -1901,13 +1622,6 @@ module Aws::ServiceCatalog
|
|
1901
1622
|
include Aws::Structure
|
1902
1623
|
end
|
1903
1624
|
|
1904
|
-
# @note When making an API call, you may pass DescribePortfolioShareStatusInput
|
1905
|
-
# data as a hash:
|
1906
|
-
#
|
1907
|
-
# {
|
1908
|
-
# portfolio_share_token: "Id", # required
|
1909
|
-
# }
|
1910
|
-
#
|
1911
1625
|
# @!attribute [rw] portfolio_share_token
|
1912
1626
|
# The token for the portfolio share operation. This token is returned
|
1913
1627
|
# either by CreatePortfolioShare or by DeletePortfolioShare.
|
@@ -1955,16 +1669,6 @@ module Aws::ServiceCatalog
|
|
1955
1669
|
include Aws::Structure
|
1956
1670
|
end
|
1957
1671
|
|
1958
|
-
# @note When making an API call, you may pass DescribePortfolioSharesInput
|
1959
|
-
# data as a hash:
|
1960
|
-
#
|
1961
|
-
# {
|
1962
|
-
# portfolio_id: "Id", # required
|
1963
|
-
# type: "ACCOUNT", # required, accepts ACCOUNT, ORGANIZATION, ORGANIZATIONAL_UNIT, ORGANIZATION_MEMBER_ACCOUNT
|
1964
|
-
# page_token: "PageToken",
|
1965
|
-
# page_size: 1,
|
1966
|
-
# }
|
1967
|
-
#
|
1968
1672
|
# @!attribute [rw] portfolio_id
|
1969
1673
|
# The unique identifier of the portfolio for which shares will be
|
1970
1674
|
# retrieved.
|
@@ -2025,16 +1729,6 @@ module Aws::ServiceCatalog
|
|
2025
1729
|
include Aws::Structure
|
2026
1730
|
end
|
2027
1731
|
|
2028
|
-
# @note When making an API call, you may pass DescribeProductAsAdminInput
|
2029
|
-
# data as a hash:
|
2030
|
-
#
|
2031
|
-
# {
|
2032
|
-
# accept_language: "AcceptLanguage",
|
2033
|
-
# id: "Id",
|
2034
|
-
# name: "ProductViewName",
|
2035
|
-
# source_portfolio_id: "Id",
|
2036
|
-
# }
|
2037
|
-
#
|
2038
1732
|
# @!attribute [rw] accept_language
|
2039
1733
|
# The language code.
|
2040
1734
|
#
|
@@ -2108,15 +1802,6 @@ module Aws::ServiceCatalog
|
|
2108
1802
|
include Aws::Structure
|
2109
1803
|
end
|
2110
1804
|
|
2111
|
-
# @note When making an API call, you may pass DescribeProductInput
|
2112
|
-
# data as a hash:
|
2113
|
-
#
|
2114
|
-
# {
|
2115
|
-
# accept_language: "AcceptLanguage",
|
2116
|
-
# id: "Id",
|
2117
|
-
# name: "ProductViewName",
|
2118
|
-
# }
|
2119
|
-
#
|
2120
1805
|
# @!attribute [rw] accept_language
|
2121
1806
|
# The language code.
|
2122
1807
|
#
|
@@ -2173,14 +1858,6 @@ module Aws::ServiceCatalog
|
|
2173
1858
|
include Aws::Structure
|
2174
1859
|
end
|
2175
1860
|
|
2176
|
-
# @note When making an API call, you may pass DescribeProductViewInput
|
2177
|
-
# data as a hash:
|
2178
|
-
#
|
2179
|
-
# {
|
2180
|
-
# accept_language: "AcceptLanguage",
|
2181
|
-
# id: "Id", # required
|
2182
|
-
# }
|
2183
|
-
#
|
2184
1861
|
# @!attribute [rw] accept_language
|
2185
1862
|
# The language code.
|
2186
1863
|
#
|
@@ -2227,15 +1904,6 @@ module Aws::ServiceCatalog
|
|
2227
1904
|
# provisioned product identifier. Customers must provide either Id or
|
2228
1905
|
# Name.
|
2229
1906
|
#
|
2230
|
-
# @note When making an API call, you may pass DescribeProvisionedProductInput
|
2231
|
-
# data as a hash:
|
2232
|
-
#
|
2233
|
-
# {
|
2234
|
-
# accept_language: "AcceptLanguage",
|
2235
|
-
# id: "Id",
|
2236
|
-
# name: "ProvisionedProductName",
|
2237
|
-
# }
|
2238
|
-
#
|
2239
1907
|
# @!attribute [rw] accept_language
|
2240
1908
|
# The language code.
|
2241
1909
|
#
|
@@ -2290,16 +1958,6 @@ module Aws::ServiceCatalog
|
|
2290
1958
|
include Aws::Structure
|
2291
1959
|
end
|
2292
1960
|
|
2293
|
-
# @note When making an API call, you may pass DescribeProvisionedProductPlanInput
|
2294
|
-
# data as a hash:
|
2295
|
-
#
|
2296
|
-
# {
|
2297
|
-
# accept_language: "AcceptLanguage",
|
2298
|
-
# plan_id: "Id", # required
|
2299
|
-
# page_size: 1,
|
2300
|
-
# page_token: "PageToken",
|
2301
|
-
# }
|
2302
|
-
#
|
2303
1961
|
# @!attribute [rw] accept_language
|
2304
1962
|
# The language code.
|
2305
1963
|
#
|
@@ -2358,18 +2016,6 @@ module Aws::ServiceCatalog
|
|
2358
2016
|
include Aws::Structure
|
2359
2017
|
end
|
2360
2018
|
|
2361
|
-
# @note When making an API call, you may pass DescribeProvisioningArtifactInput
|
2362
|
-
# data as a hash:
|
2363
|
-
#
|
2364
|
-
# {
|
2365
|
-
# accept_language: "AcceptLanguage",
|
2366
|
-
# provisioning_artifact_id: "Id",
|
2367
|
-
# product_id: "Id",
|
2368
|
-
# provisioning_artifact_name: "ProvisioningArtifactName",
|
2369
|
-
# product_name: "ProductViewName",
|
2370
|
-
# verbose: false,
|
2371
|
-
# }
|
2372
|
-
#
|
2373
2019
|
# @!attribute [rw] accept_language
|
2374
2020
|
# The language code.
|
2375
2021
|
#
|
@@ -2418,8 +2064,8 @@ module Aws::ServiceCatalog
|
|
2418
2064
|
# @return [Types::ProvisioningArtifactDetail]
|
2419
2065
|
#
|
2420
2066
|
# @!attribute [rw] info
|
2421
|
-
# The URL of the CloudFormation template in Amazon S3
|
2422
|
-
#
|
2067
|
+
# The URL of the CloudFormation template in Amazon S3 or GitHub in
|
2068
|
+
# JSON format.
|
2423
2069
|
# @return [Hash<String,String>]
|
2424
2070
|
#
|
2425
2071
|
# @!attribute [rw] status
|
@@ -2436,19 +2082,6 @@ module Aws::ServiceCatalog
|
|
2436
2082
|
include Aws::Structure
|
2437
2083
|
end
|
2438
2084
|
|
2439
|
-
# @note When making an API call, you may pass DescribeProvisioningParametersInput
|
2440
|
-
# data as a hash:
|
2441
|
-
#
|
2442
|
-
# {
|
2443
|
-
# accept_language: "AcceptLanguage",
|
2444
|
-
# product_id: "Id",
|
2445
|
-
# product_name: "ProductViewName",
|
2446
|
-
# provisioning_artifact_id: "Id",
|
2447
|
-
# provisioning_artifact_name: "ProvisioningArtifactName",
|
2448
|
-
# path_id: "Id",
|
2449
|
-
# path_name: "PortfolioDisplayName",
|
2450
|
-
# }
|
2451
|
-
#
|
2452
2085
|
# @!attribute [rw] accept_language
|
2453
2086
|
# The language code.
|
2454
2087
|
#
|
@@ -2551,16 +2184,6 @@ module Aws::ServiceCatalog
|
|
2551
2184
|
include Aws::Structure
|
2552
2185
|
end
|
2553
2186
|
|
2554
|
-
# @note When making an API call, you may pass DescribeRecordInput
|
2555
|
-
# data as a hash:
|
2556
|
-
#
|
2557
|
-
# {
|
2558
|
-
# accept_language: "AcceptLanguage",
|
2559
|
-
# id: "Id", # required
|
2560
|
-
# page_token: "PageToken",
|
2561
|
-
# page_size: 1,
|
2562
|
-
# }
|
2563
|
-
#
|
2564
2187
|
# @!attribute [rw] accept_language
|
2565
2188
|
# The language code.
|
2566
2189
|
#
|
@@ -2621,15 +2244,6 @@ module Aws::ServiceCatalog
|
|
2621
2244
|
include Aws::Structure
|
2622
2245
|
end
|
2623
2246
|
|
2624
|
-
# @note When making an API call, you may pass DescribeServiceActionExecutionParametersInput
|
2625
|
-
# data as a hash:
|
2626
|
-
#
|
2627
|
-
# {
|
2628
|
-
# provisioned_product_id: "Id", # required
|
2629
|
-
# service_action_id: "Id", # required
|
2630
|
-
# accept_language: "AcceptLanguage",
|
2631
|
-
# }
|
2632
|
-
#
|
2633
2247
|
# @!attribute [rw] provisioned_product_id
|
2634
2248
|
# The identifier of the provisioned product.
|
2635
2249
|
# @return [String]
|
@@ -2670,14 +2284,6 @@ module Aws::ServiceCatalog
|
|
2670
2284
|
include Aws::Structure
|
2671
2285
|
end
|
2672
2286
|
|
2673
|
-
# @note When making an API call, you may pass DescribeServiceActionInput
|
2674
|
-
# data as a hash:
|
2675
|
-
#
|
2676
|
-
# {
|
2677
|
-
# id: "Id", # required
|
2678
|
-
# accept_language: "AcceptLanguage",
|
2679
|
-
# }
|
2680
|
-
#
|
2681
2287
|
# @!attribute [rw] id
|
2682
2288
|
# The self-service action identifier.
|
2683
2289
|
# @return [String]
|
@@ -2713,13 +2319,6 @@ module Aws::ServiceCatalog
|
|
2713
2319
|
include Aws::Structure
|
2714
2320
|
end
|
2715
2321
|
|
2716
|
-
# @note When making an API call, you may pass DescribeTagOptionInput
|
2717
|
-
# data as a hash:
|
2718
|
-
#
|
2719
|
-
# {
|
2720
|
-
# id: "TagOptionId", # required
|
2721
|
-
# }
|
2722
|
-
#
|
2723
2322
|
# @!attribute [rw] id
|
2724
2323
|
# The TagOption identifier.
|
2725
2324
|
# @return [String]
|
@@ -2754,14 +2353,6 @@ module Aws::ServiceCatalog
|
|
2754
2353
|
#
|
2755
2354
|
class DisableAWSOrganizationsAccessOutput < Aws::EmptyStructure; end
|
2756
2355
|
|
2757
|
-
# @note When making an API call, you may pass DisassociateBudgetFromResourceInput
|
2758
|
-
# data as a hash:
|
2759
|
-
#
|
2760
|
-
# {
|
2761
|
-
# budget_name: "BudgetName", # required
|
2762
|
-
# resource_id: "Id", # required
|
2763
|
-
# }
|
2764
|
-
#
|
2765
2356
|
# @!attribute [rw] budget_name
|
2766
2357
|
# The name of the budget you want to disassociate.
|
2767
2358
|
# @return [String]
|
@@ -2784,15 +2375,6 @@ module Aws::ServiceCatalog
|
|
2784
2375
|
#
|
2785
2376
|
class DisassociateBudgetFromResourceOutput < Aws::EmptyStructure; end
|
2786
2377
|
|
2787
|
-
# @note When making an API call, you may pass DisassociatePrincipalFromPortfolioInput
|
2788
|
-
# data as a hash:
|
2789
|
-
#
|
2790
|
-
# {
|
2791
|
-
# accept_language: "AcceptLanguage",
|
2792
|
-
# portfolio_id: "Id", # required
|
2793
|
-
# principal_arn: "PrincipalARN", # required
|
2794
|
-
# }
|
2795
|
-
#
|
2796
2378
|
# @!attribute [rw] accept_language
|
2797
2379
|
# The language code.
|
2798
2380
|
#
|
@@ -2808,7 +2390,14 @@ module Aws::ServiceCatalog
|
|
2808
2390
|
# @return [String]
|
2809
2391
|
#
|
2810
2392
|
# @!attribute [rw] principal_arn
|
2811
|
-
# The ARN of the principal (IAM user, role, or group).
|
2393
|
+
# The ARN of the principal (IAM user, role, or group). This field
|
2394
|
+
# allows an ARN with no `accountID` if `PrincipalType` is
|
2395
|
+
# `IAM_PATTERN`.
|
2396
|
+
# @return [String]
|
2397
|
+
#
|
2398
|
+
# @!attribute [rw] principal_type
|
2399
|
+
# The supported value is `IAM` if you use a fully defined ARN, or
|
2400
|
+
# `IAM_PATTERN` if you use no `accountID`.
|
2812
2401
|
# @return [String]
|
2813
2402
|
#
|
2814
2403
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DisassociatePrincipalFromPortfolioInput AWS API Documentation
|
@@ -2816,7 +2405,8 @@ module Aws::ServiceCatalog
|
|
2816
2405
|
class DisassociatePrincipalFromPortfolioInput < Struct.new(
|
2817
2406
|
:accept_language,
|
2818
2407
|
:portfolio_id,
|
2819
|
-
:principal_arn
|
2408
|
+
:principal_arn,
|
2409
|
+
:principal_type)
|
2820
2410
|
SENSITIVE = []
|
2821
2411
|
include Aws::Structure
|
2822
2412
|
end
|
@@ -2825,15 +2415,6 @@ module Aws::ServiceCatalog
|
|
2825
2415
|
#
|
2826
2416
|
class DisassociatePrincipalFromPortfolioOutput < Aws::EmptyStructure; end
|
2827
2417
|
|
2828
|
-
# @note When making an API call, you may pass DisassociateProductFromPortfolioInput
|
2829
|
-
# data as a hash:
|
2830
|
-
#
|
2831
|
-
# {
|
2832
|
-
# accept_language: "AcceptLanguage",
|
2833
|
-
# product_id: "Id", # required
|
2834
|
-
# portfolio_id: "Id", # required
|
2835
|
-
# }
|
2836
|
-
#
|
2837
2418
|
# @!attribute [rw] accept_language
|
2838
2419
|
# The language code.
|
2839
2420
|
#
|
@@ -2866,16 +2447,6 @@ module Aws::ServiceCatalog
|
|
2866
2447
|
#
|
2867
2448
|
class DisassociateProductFromPortfolioOutput < Aws::EmptyStructure; end
|
2868
2449
|
|
2869
|
-
# @note When making an API call, you may pass DisassociateServiceActionFromProvisioningArtifactInput
|
2870
|
-
# data as a hash:
|
2871
|
-
#
|
2872
|
-
# {
|
2873
|
-
# product_id: "Id", # required
|
2874
|
-
# provisioning_artifact_id: "Id", # required
|
2875
|
-
# service_action_id: "Id", # required
|
2876
|
-
# accept_language: "AcceptLanguage",
|
2877
|
-
# }
|
2878
|
-
#
|
2879
2450
|
# @!attribute [rw] product_id
|
2880
2451
|
# The product identifier. For example, `prod-abcdzk7xy33qa`.
|
2881
2452
|
# @return [String]
|
@@ -2915,14 +2486,6 @@ module Aws::ServiceCatalog
|
|
2915
2486
|
#
|
2916
2487
|
class DisassociateServiceActionFromProvisioningArtifactOutput < Aws::EmptyStructure; end
|
2917
2488
|
|
2918
|
-
# @note When making an API call, you may pass DisassociateTagOptionFromResourceInput
|
2919
|
-
# data as a hash:
|
2920
|
-
#
|
2921
|
-
# {
|
2922
|
-
# resource_id: "ResourceId", # required
|
2923
|
-
# tag_option_id: "TagOptionId", # required
|
2924
|
-
# }
|
2925
|
-
#
|
2926
2489
|
# @!attribute [rw] resource_id
|
2927
2490
|
# The resource identifier.
|
2928
2491
|
# @return [String]
|
@@ -2960,15 +2523,6 @@ module Aws::ServiceCatalog
|
|
2960
2523
|
#
|
2961
2524
|
class EnableAWSOrganizationsAccessOutput < Aws::EmptyStructure; end
|
2962
2525
|
|
2963
|
-
# @note When making an API call, you may pass ExecuteProvisionedProductPlanInput
|
2964
|
-
# data as a hash:
|
2965
|
-
#
|
2966
|
-
# {
|
2967
|
-
# accept_language: "AcceptLanguage",
|
2968
|
-
# plan_id: "Id", # required
|
2969
|
-
# idempotency_token: "IdempotencyToken", # required
|
2970
|
-
# }
|
2971
|
-
#
|
2972
2526
|
# @!attribute [rw] accept_language
|
2973
2527
|
# The language code.
|
2974
2528
|
#
|
@@ -3014,19 +2568,6 @@ module Aws::ServiceCatalog
|
|
3014
2568
|
include Aws::Structure
|
3015
2569
|
end
|
3016
2570
|
|
3017
|
-
# @note When making an API call, you may pass ExecuteProvisionedProductServiceActionInput
|
3018
|
-
# data as a hash:
|
3019
|
-
#
|
3020
|
-
# {
|
3021
|
-
# provisioned_product_id: "Id", # required
|
3022
|
-
# service_action_id: "Id", # required
|
3023
|
-
# execute_token: "IdempotencyToken", # required
|
3024
|
-
# accept_language: "AcceptLanguage",
|
3025
|
-
# parameters: {
|
3026
|
-
# "ExecutionParameterKey" => ["ExecutionParameterValue"],
|
3027
|
-
# },
|
3028
|
-
# }
|
3029
|
-
#
|
3030
2571
|
# @!attribute [rw] provisioned_product_id
|
3031
2572
|
# The identifier of the provisioned product.
|
3032
2573
|
# @return [String]
|
@@ -3168,18 +2709,6 @@ module Aws::ServiceCatalog
|
|
3168
2709
|
include Aws::Structure
|
3169
2710
|
end
|
3170
2711
|
|
3171
|
-
# @note When making an API call, you may pass GetProvisionedProductOutputsInput
|
3172
|
-
# data as a hash:
|
3173
|
-
#
|
3174
|
-
# {
|
3175
|
-
# accept_language: "AcceptLanguage",
|
3176
|
-
# provisioned_product_id: "Id",
|
3177
|
-
# provisioned_product_name: "ProvisionedProductName",
|
3178
|
-
# output_keys: ["OutputKey"],
|
3179
|
-
# page_size: 1,
|
3180
|
-
# page_token: "PageToken",
|
3181
|
-
# }
|
3182
|
-
#
|
3183
2712
|
# @!attribute [rw] accept_language
|
3184
2713
|
# The language code.
|
3185
2714
|
#
|
@@ -3247,18 +2776,6 @@ module Aws::ServiceCatalog
|
|
3247
2776
|
include Aws::Structure
|
3248
2777
|
end
|
3249
2778
|
|
3250
|
-
# @note When making an API call, you may pass ImportAsProvisionedProductInput
|
3251
|
-
# data as a hash:
|
3252
|
-
#
|
3253
|
-
# {
|
3254
|
-
# accept_language: "AcceptLanguage",
|
3255
|
-
# product_id: "Id", # required
|
3256
|
-
# provisioning_artifact_id: "Id", # required
|
3257
|
-
# provisioned_product_name: "ProvisionedProductName", # required
|
3258
|
-
# physical_id: "PhysicalId", # required
|
3259
|
-
# idempotency_token: "IdempotencyToken", # required
|
3260
|
-
# }
|
3261
|
-
#
|
3262
2779
|
# @!attribute [rw] accept_language
|
3263
2780
|
# The language code.
|
3264
2781
|
#
|
@@ -3336,6 +2853,55 @@ module Aws::ServiceCatalog
|
|
3336
2853
|
#
|
3337
2854
|
class InvalidStateException < Aws::EmptyStructure; end
|
3338
2855
|
|
2856
|
+
# Provides details about the product's connection sync and contains the
|
2857
|
+
# following sub-fields.
|
2858
|
+
#
|
2859
|
+
# * `LastSyncTime`
|
2860
|
+
#
|
2861
|
+
# * `LastSyncStatus`
|
2862
|
+
#
|
2863
|
+
# * `LastSyncStatusMessage`
|
2864
|
+
#
|
2865
|
+
# * `LastSuccessfulSyncTime`
|
2866
|
+
#
|
2867
|
+
# * `LastSuccessfulSyncProvisioningArtifactID`
|
2868
|
+
#
|
2869
|
+
# @!attribute [rw] last_sync_time
|
2870
|
+
# The time of the last attempted sync from the repository to the
|
2871
|
+
# Service Catalog product.
|
2872
|
+
# @return [Time]
|
2873
|
+
#
|
2874
|
+
# @!attribute [rw] last_sync_status
|
2875
|
+
# The current status of the sync. Responses include `SUCCEEDED` or
|
2876
|
+
# `FAILED`.
|
2877
|
+
# @return [String]
|
2878
|
+
#
|
2879
|
+
# @!attribute [rw] last_sync_status_message
|
2880
|
+
# The sync's status message.
|
2881
|
+
# @return [String]
|
2882
|
+
#
|
2883
|
+
# @!attribute [rw] last_successful_sync_time
|
2884
|
+
# The time of the latest successful sync from the source repo artifact
|
2885
|
+
# to the Service Catalog product.
|
2886
|
+
# @return [Time]
|
2887
|
+
#
|
2888
|
+
# @!attribute [rw] last_successful_sync_provisioning_artifact_id
|
2889
|
+
# The ProvisioningArtifactID of the ProvisioningArtifact created from
|
2890
|
+
# the latest successful sync.
|
2891
|
+
# @return [String]
|
2892
|
+
#
|
2893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/LastSync AWS API Documentation
|
2894
|
+
#
|
2895
|
+
class LastSync < Struct.new(
|
2896
|
+
:last_sync_time,
|
2897
|
+
:last_sync_status,
|
2898
|
+
:last_sync_status_message,
|
2899
|
+
:last_successful_sync_time,
|
2900
|
+
:last_successful_sync_provisioning_artifact_id)
|
2901
|
+
SENSITIVE = []
|
2902
|
+
include Aws::Structure
|
2903
|
+
end
|
2904
|
+
|
3339
2905
|
# A launch path object.
|
3340
2906
|
#
|
3341
2907
|
# @!attribute [rw] id
|
@@ -3392,16 +2958,6 @@ module Aws::ServiceCatalog
|
|
3392
2958
|
#
|
3393
2959
|
class LimitExceededException < Aws::EmptyStructure; end
|
3394
2960
|
|
3395
|
-
# @note When making an API call, you may pass ListAcceptedPortfolioSharesInput
|
3396
|
-
# data as a hash:
|
3397
|
-
#
|
3398
|
-
# {
|
3399
|
-
# accept_language: "AcceptLanguage",
|
3400
|
-
# page_token: "PageToken",
|
3401
|
-
# page_size: 1,
|
3402
|
-
# portfolio_share_type: "IMPORTED", # accepts IMPORTED, AWS_SERVICECATALOG, AWS_ORGANIZATIONS
|
3403
|
-
# }
|
3404
|
-
#
|
3405
2961
|
# @!attribute [rw] accept_language
|
3406
2962
|
# The language code.
|
3407
2963
|
#
|
@@ -3464,16 +3020,6 @@ module Aws::ServiceCatalog
|
|
3464
3020
|
include Aws::Structure
|
3465
3021
|
end
|
3466
3022
|
|
3467
|
-
# @note When making an API call, you may pass ListBudgetsForResourceInput
|
3468
|
-
# data as a hash:
|
3469
|
-
#
|
3470
|
-
# {
|
3471
|
-
# accept_language: "AcceptLanguage",
|
3472
|
-
# resource_id: "Id", # required
|
3473
|
-
# page_size: 1,
|
3474
|
-
# page_token: "PageToken",
|
3475
|
-
# }
|
3476
|
-
#
|
3477
3023
|
# @!attribute [rw] accept_language
|
3478
3024
|
# The language code.
|
3479
3025
|
#
|
@@ -3526,17 +3072,6 @@ module Aws::ServiceCatalog
|
|
3526
3072
|
include Aws::Structure
|
3527
3073
|
end
|
3528
3074
|
|
3529
|
-
# @note When making an API call, you may pass ListConstraintsForPortfolioInput
|
3530
|
-
# data as a hash:
|
3531
|
-
#
|
3532
|
-
# {
|
3533
|
-
# accept_language: "AcceptLanguage",
|
3534
|
-
# portfolio_id: "Id", # required
|
3535
|
-
# product_id: "Id",
|
3536
|
-
# page_size: 1,
|
3537
|
-
# page_token: "PageToken",
|
3538
|
-
# }
|
3539
|
-
#
|
3540
3075
|
# @!attribute [rw] accept_language
|
3541
3076
|
# The language code.
|
3542
3077
|
#
|
@@ -3594,16 +3129,6 @@ module Aws::ServiceCatalog
|
|
3594
3129
|
include Aws::Structure
|
3595
3130
|
end
|
3596
3131
|
|
3597
|
-
# @note When making an API call, you may pass ListLaunchPathsInput
|
3598
|
-
# data as a hash:
|
3599
|
-
#
|
3600
|
-
# {
|
3601
|
-
# accept_language: "AcceptLanguage",
|
3602
|
-
# product_id: "Id", # required
|
3603
|
-
# page_size: 1,
|
3604
|
-
# page_token: "PageToken",
|
3605
|
-
# }
|
3606
|
-
#
|
3607
3132
|
# @!attribute [rw] accept_language
|
3608
3133
|
# The language code.
|
3609
3134
|
#
|
@@ -3656,17 +3181,6 @@ module Aws::ServiceCatalog
|
|
3656
3181
|
include Aws::Structure
|
3657
3182
|
end
|
3658
3183
|
|
3659
|
-
# @note When making an API call, you may pass ListOrganizationPortfolioAccessInput
|
3660
|
-
# data as a hash:
|
3661
|
-
#
|
3662
|
-
# {
|
3663
|
-
# accept_language: "AcceptLanguage",
|
3664
|
-
# portfolio_id: "Id", # required
|
3665
|
-
# organization_node_type: "ORGANIZATION", # required, accepts ORGANIZATION, ORGANIZATIONAL_UNIT, ACCOUNT
|
3666
|
-
# page_token: "PageToken",
|
3667
|
-
# page_size: 1,
|
3668
|
-
# }
|
3669
|
-
#
|
3670
3184
|
# @!attribute [rw] accept_language
|
3671
3185
|
# The language code.
|
3672
3186
|
#
|
@@ -3732,17 +3246,6 @@ module Aws::ServiceCatalog
|
|
3732
3246
|
include Aws::Structure
|
3733
3247
|
end
|
3734
3248
|
|
3735
|
-
# @note When making an API call, you may pass ListPortfolioAccessInput
|
3736
|
-
# data as a hash:
|
3737
|
-
#
|
3738
|
-
# {
|
3739
|
-
# accept_language: "AcceptLanguage",
|
3740
|
-
# portfolio_id: "Id", # required
|
3741
|
-
# organization_parent_id: "Id",
|
3742
|
-
# page_token: "PageToken",
|
3743
|
-
# page_size: 1,
|
3744
|
-
# }
|
3745
|
-
#
|
3746
3249
|
# @!attribute [rw] accept_language
|
3747
3250
|
# The language code.
|
3748
3251
|
#
|
@@ -3803,16 +3306,6 @@ module Aws::ServiceCatalog
|
|
3803
3306
|
include Aws::Structure
|
3804
3307
|
end
|
3805
3308
|
|
3806
|
-
# @note When making an API call, you may pass ListPortfoliosForProductInput
|
3807
|
-
# data as a hash:
|
3808
|
-
#
|
3809
|
-
# {
|
3810
|
-
# accept_language: "AcceptLanguage",
|
3811
|
-
# product_id: "Id", # required
|
3812
|
-
# page_token: "PageToken",
|
3813
|
-
# page_size: 1,
|
3814
|
-
# }
|
3815
|
-
#
|
3816
3309
|
# @!attribute [rw] accept_language
|
3817
3310
|
# The language code.
|
3818
3311
|
#
|
@@ -3865,15 +3358,6 @@ module Aws::ServiceCatalog
|
|
3865
3358
|
include Aws::Structure
|
3866
3359
|
end
|
3867
3360
|
|
3868
|
-
# @note When making an API call, you may pass ListPortfoliosInput
|
3869
|
-
# data as a hash:
|
3870
|
-
#
|
3871
|
-
# {
|
3872
|
-
# accept_language: "AcceptLanguage",
|
3873
|
-
# page_token: "PageToken",
|
3874
|
-
# page_size: 1,
|
3875
|
-
# }
|
3876
|
-
#
|
3877
3361
|
# @!attribute [rw] accept_language
|
3878
3362
|
# The language code.
|
3879
3363
|
#
|
@@ -3921,16 +3405,6 @@ module Aws::ServiceCatalog
|
|
3921
3405
|
include Aws::Structure
|
3922
3406
|
end
|
3923
3407
|
|
3924
|
-
# @note When making an API call, you may pass ListPrincipalsForPortfolioInput
|
3925
|
-
# data as a hash:
|
3926
|
-
#
|
3927
|
-
# {
|
3928
|
-
# accept_language: "AcceptLanguage",
|
3929
|
-
# portfolio_id: "Id", # required
|
3930
|
-
# page_size: 1,
|
3931
|
-
# page_token: "PageToken",
|
3932
|
-
# }
|
3933
|
-
#
|
3934
3408
|
# @!attribute [rw] accept_language
|
3935
3409
|
# The language code.
|
3936
3410
|
#
|
@@ -3966,7 +3440,8 @@ module Aws::ServiceCatalog
|
|
3966
3440
|
end
|
3967
3441
|
|
3968
3442
|
# @!attribute [rw] principals
|
3969
|
-
# The
|
3443
|
+
# The `PrincipalARN`s and corresponding `PrincipalType`s associated
|
3444
|
+
# with the portfolio.
|
3970
3445
|
# @return [Array<Types::Principal>]
|
3971
3446
|
#
|
3972
3447
|
# @!attribute [rw] next_page_token
|
@@ -3983,20 +3458,6 @@ module Aws::ServiceCatalog
|
|
3983
3458
|
include Aws::Structure
|
3984
3459
|
end
|
3985
3460
|
|
3986
|
-
# @note When making an API call, you may pass ListProvisionedProductPlansInput
|
3987
|
-
# data as a hash:
|
3988
|
-
#
|
3989
|
-
# {
|
3990
|
-
# accept_language: "AcceptLanguage",
|
3991
|
-
# provision_product_id: "Id",
|
3992
|
-
# page_size: 1,
|
3993
|
-
# page_token: "PageToken",
|
3994
|
-
# access_level_filter: {
|
3995
|
-
# key: "Account", # accepts Account, Role, User
|
3996
|
-
# value: "AccessLevelFilterValue",
|
3997
|
-
# },
|
3998
|
-
# }
|
3999
|
-
#
|
4000
3461
|
# @!attribute [rw] accept_language
|
4001
3462
|
# The language code.
|
4002
3463
|
#
|
@@ -4054,16 +3515,6 @@ module Aws::ServiceCatalog
|
|
4054
3515
|
include Aws::Structure
|
4055
3516
|
end
|
4056
3517
|
|
4057
|
-
# @note When making an API call, you may pass ListProvisioningArtifactsForServiceActionInput
|
4058
|
-
# data as a hash:
|
4059
|
-
#
|
4060
|
-
# {
|
4061
|
-
# service_action_id: "Id", # required
|
4062
|
-
# page_size: 1,
|
4063
|
-
# page_token: "PageToken",
|
4064
|
-
# accept_language: "AcceptLanguage",
|
4065
|
-
# }
|
4066
|
-
#
|
4067
3518
|
# @!attribute [rw] service_action_id
|
4068
3519
|
# The self-service action identifier. For example,
|
4069
3520
|
# `act-fs7abcd89wxyz`.
|
@@ -4118,14 +3569,6 @@ module Aws::ServiceCatalog
|
|
4118
3569
|
include Aws::Structure
|
4119
3570
|
end
|
4120
3571
|
|
4121
|
-
# @note When making an API call, you may pass ListProvisioningArtifactsInput
|
4122
|
-
# data as a hash:
|
4123
|
-
#
|
4124
|
-
# {
|
4125
|
-
# accept_language: "AcceptLanguage",
|
4126
|
-
# product_id: "Id", # required
|
4127
|
-
# }
|
4128
|
-
#
|
4129
3572
|
# @!attribute [rw] accept_language
|
4130
3573
|
# The language code.
|
4131
3574
|
#
|
@@ -4167,23 +3610,6 @@ module Aws::ServiceCatalog
|
|
4167
3610
|
include Aws::Structure
|
4168
3611
|
end
|
4169
3612
|
|
4170
|
-
# @note When making an API call, you may pass ListRecordHistoryInput
|
4171
|
-
# data as a hash:
|
4172
|
-
#
|
4173
|
-
# {
|
4174
|
-
# accept_language: "AcceptLanguage",
|
4175
|
-
# access_level_filter: {
|
4176
|
-
# key: "Account", # accepts Account, Role, User
|
4177
|
-
# value: "AccessLevelFilterValue",
|
4178
|
-
# },
|
4179
|
-
# search_filter: {
|
4180
|
-
# key: "SearchFilterKey",
|
4181
|
-
# value: "SearchFilterValue",
|
4182
|
-
# },
|
4183
|
-
# page_size: 1,
|
4184
|
-
# page_token: "PageToken",
|
4185
|
-
# }
|
4186
|
-
#
|
4187
3613
|
# @!attribute [rw] accept_language
|
4188
3614
|
# The language code.
|
4189
3615
|
#
|
@@ -4243,14 +3669,6 @@ module Aws::ServiceCatalog
|
|
4243
3669
|
|
4244
3670
|
# The search filter to use when listing history records.
|
4245
3671
|
#
|
4246
|
-
# @note When making an API call, you may pass ListRecordHistorySearchFilter
|
4247
|
-
# data as a hash:
|
4248
|
-
#
|
4249
|
-
# {
|
4250
|
-
# key: "SearchFilterKey",
|
4251
|
-
# value: "SearchFilterValue",
|
4252
|
-
# }
|
4253
|
-
#
|
4254
3672
|
# @!attribute [rw] key
|
4255
3673
|
# The filter key.
|
4256
3674
|
#
|
@@ -4274,16 +3692,6 @@ module Aws::ServiceCatalog
|
|
4274
3692
|
include Aws::Structure
|
4275
3693
|
end
|
4276
3694
|
|
4277
|
-
# @note When making an API call, you may pass ListResourcesForTagOptionInput
|
4278
|
-
# data as a hash:
|
4279
|
-
#
|
4280
|
-
# {
|
4281
|
-
# tag_option_id: "TagOptionId", # required
|
4282
|
-
# resource_type: "ResourceType",
|
4283
|
-
# page_size: 1,
|
4284
|
-
# page_token: "PageToken",
|
4285
|
-
# }
|
4286
|
-
#
|
4287
3695
|
# @!attribute [rw] tag_option_id
|
4288
3696
|
# The TagOption identifier.
|
4289
3697
|
# @return [String]
|
@@ -4334,17 +3742,6 @@ module Aws::ServiceCatalog
|
|
4334
3742
|
include Aws::Structure
|
4335
3743
|
end
|
4336
3744
|
|
4337
|
-
# @note When making an API call, you may pass ListServiceActionsForProvisioningArtifactInput
|
4338
|
-
# data as a hash:
|
4339
|
-
#
|
4340
|
-
# {
|
4341
|
-
# product_id: "Id", # required
|
4342
|
-
# provisioning_artifact_id: "Id", # required
|
4343
|
-
# page_size: 1,
|
4344
|
-
# page_token: "PageToken",
|
4345
|
-
# accept_language: "AcceptLanguage",
|
4346
|
-
# }
|
4347
|
-
#
|
4348
3745
|
# @!attribute [rw] product_id
|
4349
3746
|
# The product identifier. For example, `prod-abcdzk7xy33qa`.
|
4350
3747
|
# @return [String]
|
@@ -4404,15 +3801,6 @@ module Aws::ServiceCatalog
|
|
4404
3801
|
include Aws::Structure
|
4405
3802
|
end
|
4406
3803
|
|
4407
|
-
# @note When making an API call, you may pass ListServiceActionsInput
|
4408
|
-
# data as a hash:
|
4409
|
-
#
|
4410
|
-
# {
|
4411
|
-
# accept_language: "AcceptLanguage",
|
4412
|
-
# page_size: 1,
|
4413
|
-
# page_token: "PageToken",
|
4414
|
-
# }
|
4415
|
-
#
|
4416
3804
|
# @!attribute [rw] accept_language
|
4417
3805
|
# The language code.
|
4418
3806
|
#
|
@@ -4461,16 +3849,6 @@ module Aws::ServiceCatalog
|
|
4461
3849
|
include Aws::Structure
|
4462
3850
|
end
|
4463
3851
|
|
4464
|
-
# @note When making an API call, you may pass ListStackInstancesForProvisionedProductInput
|
4465
|
-
# data as a hash:
|
4466
|
-
#
|
4467
|
-
# {
|
4468
|
-
# accept_language: "AcceptLanguage",
|
4469
|
-
# provisioned_product_id: "Id", # required
|
4470
|
-
# page_token: "PageToken",
|
4471
|
-
# page_size: 1,
|
4472
|
-
# }
|
4473
|
-
#
|
4474
3852
|
# @!attribute [rw] accept_language
|
4475
3853
|
# The language code.
|
4476
3854
|
#
|
@@ -4525,15 +3903,6 @@ module Aws::ServiceCatalog
|
|
4525
3903
|
|
4526
3904
|
# Filters to use when listing TagOptions.
|
4527
3905
|
#
|
4528
|
-
# @note When making an API call, you may pass ListTagOptionsFilters
|
4529
|
-
# data as a hash:
|
4530
|
-
#
|
4531
|
-
# {
|
4532
|
-
# key: "TagOptionKey",
|
4533
|
-
# value: "TagOptionValue",
|
4534
|
-
# active: false,
|
4535
|
-
# }
|
4536
|
-
#
|
4537
3906
|
# @!attribute [rw] key
|
4538
3907
|
# The TagOption key.
|
4539
3908
|
# @return [String]
|
@@ -4556,19 +3925,6 @@ module Aws::ServiceCatalog
|
|
4556
3925
|
include Aws::Structure
|
4557
3926
|
end
|
4558
3927
|
|
4559
|
-
# @note When making an API call, you may pass ListTagOptionsInput
|
4560
|
-
# data as a hash:
|
4561
|
-
#
|
4562
|
-
# {
|
4563
|
-
# filters: {
|
4564
|
-
# key: "TagOptionKey",
|
4565
|
-
# value: "TagOptionValue",
|
4566
|
-
# active: false,
|
4567
|
-
# },
|
4568
|
-
# page_size: 1,
|
4569
|
-
# page_token: "PageToken",
|
4570
|
-
# }
|
4571
|
-
#
|
4572
3928
|
# @!attribute [rw] filters
|
4573
3929
|
# The search filters. If no search filters are specified, the output
|
4574
3930
|
# includes all TagOptions.
|
@@ -4619,14 +3975,6 @@ module Aws::ServiceCatalog
|
|
4619
3975
|
|
4620
3976
|
# Information about the organization node.
|
4621
3977
|
#
|
4622
|
-
# @note When making an API call, you may pass OrganizationNode
|
4623
|
-
# data as a hash:
|
4624
|
-
#
|
4625
|
-
# {
|
4626
|
-
# type: "ORGANIZATION", # accepts ORGANIZATION, ORGANIZATIONAL_UNIT, ACCOUNT
|
4627
|
-
# value: "OrganizationNodeValue",
|
4628
|
-
# }
|
4629
|
-
#
|
4630
3978
|
# @!attribute [rw] type
|
4631
3979
|
# The organization node type.
|
4632
3980
|
# @return [String]
|
@@ -4750,7 +4098,7 @@ module Aws::ServiceCatalog
|
|
4750
4098
|
#
|
4751
4099
|
# @!attribute [rw] principal_id
|
4752
4100
|
# The identifier of the recipient entity that received the portfolio
|
4753
|
-
# share. The recipient
|
4101
|
+
# share. The recipient entity can be one of the following:
|
4754
4102
|
#
|
4755
4103
|
# 1\. An external account.
|
4756
4104
|
#
|
@@ -4777,13 +4125,19 @@ module Aws::ServiceCatalog
|
|
4777
4125
|
# portfolio share.
|
4778
4126
|
# @return [Boolean]
|
4779
4127
|
#
|
4128
|
+
# @!attribute [rw] share_principals
|
4129
|
+
# Indicates if `Principal` sharing is enabled or disabled for the
|
4130
|
+
# portfolio share.
|
4131
|
+
# @return [Boolean]
|
4132
|
+
#
|
4780
4133
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/PortfolioShareDetail AWS API Documentation
|
4781
4134
|
#
|
4782
4135
|
class PortfolioShareDetail < Struct.new(
|
4783
4136
|
:principal_id,
|
4784
4137
|
:type,
|
4785
4138
|
:accepted,
|
4786
|
-
:share_tag_options
|
4139
|
+
:share_tag_options,
|
4140
|
+
:share_principals)
|
4787
4141
|
SENSITIVE = []
|
4788
4142
|
include Aws::Structure
|
4789
4143
|
end
|
@@ -4791,11 +4145,14 @@ module Aws::ServiceCatalog
|
|
4791
4145
|
# Information about a principal.
|
4792
4146
|
#
|
4793
4147
|
# @!attribute [rw] principal_arn
|
4794
|
-
# The ARN of the principal (IAM user, role, or group).
|
4148
|
+
# The ARN of the principal (IAM user, role, or group). This field
|
4149
|
+
# allows for an ARN with no `accountID` if the `PrincipalType` is an
|
4150
|
+
# `IAM_PATTERN`.
|
4795
4151
|
# @return [String]
|
4796
4152
|
#
|
4797
4153
|
# @!attribute [rw] principal_type
|
4798
|
-
# The principal type. The supported value is `IAM
|
4154
|
+
# The principal type. The supported value is `IAM` if you use a fully
|
4155
|
+
# defined ARN, or `IAM_PATTERN` if you use an ARN with no `accountID`.
|
4799
4156
|
# @return [String]
|
4800
4157
|
#
|
4801
4158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/Principal AWS API Documentation
|
@@ -4852,13 +4209,23 @@ module Aws::ServiceCatalog
|
|
4852
4209
|
# The UTC time stamp of the creation time.
|
4853
4210
|
# @return [Time]
|
4854
4211
|
#
|
4212
|
+
# @!attribute [rw] source_connection
|
4213
|
+
# A top level `ProductViewDetail` response containing details about
|
4214
|
+
# the product’s connection. Service Catalog returns this field for the
|
4215
|
+
# `CreateProduct`, `UpdateProduct`, `DescribeProductAsAdmin`, and
|
4216
|
+
# `SearchProductAsAdmin` APIs. This response contains the same fields
|
4217
|
+
# as the `ConnectionParameters` request, with the addition of the
|
4218
|
+
# `LastSync` response.
|
4219
|
+
# @return [Types::SourceConnectionDetail]
|
4220
|
+
#
|
4855
4221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProductViewDetail AWS API Documentation
|
4856
4222
|
#
|
4857
4223
|
class ProductViewDetail < Struct.new(
|
4858
4224
|
:product_view_summary,
|
4859
4225
|
:status,
|
4860
4226
|
:product_arn,
|
4861
|
-
:created_time
|
4227
|
+
:created_time,
|
4228
|
+
:source_connection)
|
4862
4229
|
SENSITIVE = []
|
4863
4230
|
include Aws::Structure
|
4864
4231
|
end
|
@@ -4935,42 +4302,6 @@ module Aws::ServiceCatalog
|
|
4935
4302
|
include Aws::Structure
|
4936
4303
|
end
|
4937
4304
|
|
4938
|
-
# @note When making an API call, you may pass ProvisionProductInput
|
4939
|
-
# data as a hash:
|
4940
|
-
#
|
4941
|
-
# {
|
4942
|
-
# accept_language: "AcceptLanguage",
|
4943
|
-
# product_id: "Id",
|
4944
|
-
# product_name: "ProductViewName",
|
4945
|
-
# provisioning_artifact_id: "Id",
|
4946
|
-
# provisioning_artifact_name: "ProvisioningArtifactName",
|
4947
|
-
# path_id: "Id",
|
4948
|
-
# path_name: "PortfolioDisplayName",
|
4949
|
-
# provisioned_product_name: "ProvisionedProductName", # required
|
4950
|
-
# provisioning_parameters: [
|
4951
|
-
# {
|
4952
|
-
# key: "ParameterKey",
|
4953
|
-
# value: "ParameterValue",
|
4954
|
-
# },
|
4955
|
-
# ],
|
4956
|
-
# provisioning_preferences: {
|
4957
|
-
# stack_set_accounts: ["AccountId"],
|
4958
|
-
# stack_set_regions: ["Region"],
|
4959
|
-
# stack_set_failure_tolerance_count: 1,
|
4960
|
-
# stack_set_failure_tolerance_percentage: 1,
|
4961
|
-
# stack_set_max_concurrency_count: 1,
|
4962
|
-
# stack_set_max_concurrency_percentage: 1,
|
4963
|
-
# },
|
4964
|
-
# tags: [
|
4965
|
-
# {
|
4966
|
-
# key: "TagKey", # required
|
4967
|
-
# value: "TagValue", # required
|
4968
|
-
# },
|
4969
|
-
# ],
|
4970
|
-
# notification_arns: ["NotificationArn"],
|
4971
|
-
# provision_token: "IdempotencyToken", # required
|
4972
|
-
# }
|
4973
|
-
#
|
4974
4305
|
# @!attribute [rw] accept_language
|
4975
4306
|
# The language code.
|
4976
4307
|
#
|
@@ -5398,7 +4729,7 @@ module Aws::ServiceCatalog
|
|
5398
4729
|
# @return [String]
|
5399
4730
|
#
|
5400
4731
|
# @!attribute [rw] updated_time
|
5401
|
-
# The time when the plan was last updated.
|
4732
|
+
# The UTC time stamp when the plan was last updated.
|
5402
4733
|
# @return [Time]
|
5403
4734
|
#
|
5404
4735
|
# @!attribute [rw] notification_arns
|
@@ -5555,6 +4886,19 @@ module Aws::ServiceCatalog
|
|
5555
4886
|
# users about which provisioning artifacts to use.
|
5556
4887
|
# @return [String]
|
5557
4888
|
#
|
4889
|
+
# @!attribute [rw] source_revision
|
4890
|
+
# Specifies the revision of the external artifact that was used to
|
4891
|
+
# automatically sync the Service Catalog product and create the
|
4892
|
+
# provisioning artifact. Service Catalog includes this response
|
4893
|
+
# parameter as a high level field to the existing
|
4894
|
+
# `ProvisioningArtifactDetail` type, which is returned as part of the
|
4895
|
+
# response for `CreateProduct`, `UpdateProduct`,
|
4896
|
+
# `DescribeProductAsAdmin`, `DescribeProvisioningArtifact`,
|
4897
|
+
# `ListProvisioningArtifact`, and `UpdateProvisioningArticat` APIs.
|
4898
|
+
#
|
4899
|
+
# This field only exists for Repo-Synced products.
|
4900
|
+
# @return [String]
|
4901
|
+
#
|
5558
4902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactDetail AWS API Documentation
|
5559
4903
|
#
|
5560
4904
|
class ProvisioningArtifactDetail < Struct.new(
|
@@ -5564,7 +4908,8 @@ module Aws::ServiceCatalog
|
|
5564
4908
|
:type,
|
5565
4909
|
:created_time,
|
5566
4910
|
:active,
|
5567
|
-
:guidance
|
4911
|
+
:guidance,
|
4912
|
+
:source_revision)
|
5568
4913
|
SENSITIVE = []
|
5569
4914
|
include Aws::Structure
|
5570
4915
|
end
|
@@ -5671,19 +5016,6 @@ module Aws::ServiceCatalog
|
|
5671
5016
|
# Information about a provisioning artifact (also known as a version)
|
5672
5017
|
# for a product.
|
5673
5018
|
#
|
5674
|
-
# @note When making an API call, you may pass ProvisioningArtifactProperties
|
5675
|
-
# data as a hash:
|
5676
|
-
#
|
5677
|
-
# {
|
5678
|
-
# name: "ProvisioningArtifactName",
|
5679
|
-
# description: "ProvisioningArtifactDescription",
|
5680
|
-
# info: { # required
|
5681
|
-
# "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
|
5682
|
-
# },
|
5683
|
-
# type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
|
5684
|
-
# disable_template_validation: false,
|
5685
|
-
# }
|
5686
|
-
#
|
5687
5019
|
# @!attribute [rw] name
|
5688
5020
|
# The name of the provisioning artifact (for example, v1 v2beta). No
|
5689
5021
|
# spaces are allowed.
|
@@ -5699,9 +5031,8 @@ module Aws::ServiceCatalog
|
|
5699
5031
|
# not both. Keys accepted: \[ `LoadTemplateFromURL`,
|
5700
5032
|
# `ImportFromPhysicalId` \]
|
5701
5033
|
#
|
5702
|
-
# The URL of the CloudFormation template in Amazon S3
|
5703
|
-
#
|
5704
|
-
# JSON format as follows:
|
5034
|
+
# The URL of the CloudFormation template in Amazon S3 or GitHub in
|
5035
|
+
# JSON format. Specify the URL in JSON format as follows:
|
5705
5036
|
#
|
5706
5037
|
# `"LoadTemplateFromURL":
|
5707
5038
|
# "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."`
|
@@ -5725,8 +5056,8 @@ module Aws::ServiceCatalog
|
|
5725
5056
|
# @return [String]
|
5726
5057
|
#
|
5727
5058
|
# @!attribute [rw] disable_template_validation
|
5728
|
-
# If set to true,
|
5729
|
-
#
|
5059
|
+
# If set to true, Service Catalog stops validating the specified
|
5060
|
+
# provisioning artifact even if it is invalid.
|
5730
5061
|
# @return [Boolean]
|
5731
5062
|
#
|
5732
5063
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifactProperties AWS API Documentation
|
@@ -5800,14 +5131,6 @@ module Aws::ServiceCatalog
|
|
5800
5131
|
|
5801
5132
|
# Information about a parameter used to provision a product.
|
5802
5133
|
#
|
5803
|
-
# @note When making an API call, you may pass ProvisioningParameter
|
5804
|
-
# data as a hash:
|
5805
|
-
#
|
5806
|
-
# {
|
5807
|
-
# key: "ParameterKey",
|
5808
|
-
# value: "ParameterValue",
|
5809
|
-
# }
|
5810
|
-
#
|
5811
5134
|
# @!attribute [rw] key
|
5812
5135
|
# The parameter key.
|
5813
5136
|
# @return [String]
|
@@ -5842,18 +5165,6 @@ module Aws::ServiceCatalog
|
|
5842
5165
|
# If no values are specified, the default value is all accounts from the
|
5843
5166
|
# `STACKSET` constraint.
|
5844
5167
|
#
|
5845
|
-
# @note When making an API call, you may pass ProvisioningPreferences
|
5846
|
-
# data as a hash:
|
5847
|
-
#
|
5848
|
-
# {
|
5849
|
-
# stack_set_accounts: ["AccountId"],
|
5850
|
-
# stack_set_regions: ["Region"],
|
5851
|
-
# stack_set_failure_tolerance_count: 1,
|
5852
|
-
# stack_set_failure_tolerance_percentage: 1,
|
5853
|
-
# stack_set_max_concurrency_count: 1,
|
5854
|
-
# stack_set_max_concurrency_percentage: 1,
|
5855
|
-
# }
|
5856
|
-
#
|
5857
5168
|
# @!attribute [rw] stack_set_accounts
|
5858
5169
|
# One or more Amazon Web Services accounts where the provisioned
|
5859
5170
|
# product will be available.
|
@@ -6126,15 +5437,6 @@ module Aws::ServiceCatalog
|
|
6126
5437
|
include Aws::Structure
|
6127
5438
|
end
|
6128
5439
|
|
6129
|
-
# @note When making an API call, you may pass RejectPortfolioShareInput
|
6130
|
-
# data as a hash:
|
6131
|
-
#
|
6132
|
-
# {
|
6133
|
-
# accept_language: "AcceptLanguage",
|
6134
|
-
# portfolio_id: "Id", # required
|
6135
|
-
# portfolio_share_type: "IMPORTED", # accepts IMPORTED, AWS_SERVICECATALOG, AWS_ORGANIZATIONS
|
6136
|
-
# }
|
6137
|
-
#
|
6138
5440
|
# @!attribute [rw] accept_language
|
6139
5441
|
# The language code.
|
6140
5442
|
#
|
@@ -6326,19 +5628,6 @@ module Aws::ServiceCatalog
|
|
6326
5628
|
include Aws::Structure
|
6327
5629
|
end
|
6328
5630
|
|
6329
|
-
# @note When making an API call, you may pass ScanProvisionedProductsInput
|
6330
|
-
# data as a hash:
|
6331
|
-
#
|
6332
|
-
# {
|
6333
|
-
# accept_language: "AcceptLanguage",
|
6334
|
-
# access_level_filter: {
|
6335
|
-
# key: "Account", # accepts Account, Role, User
|
6336
|
-
# value: "AccessLevelFilterValue",
|
6337
|
-
# },
|
6338
|
-
# page_size: 1,
|
6339
|
-
# page_token: "PageToken",
|
6340
|
-
# }
|
6341
|
-
#
|
6342
5631
|
# @!attribute [rw] accept_language
|
6343
5632
|
# The language code.
|
6344
5633
|
#
|
@@ -6391,22 +5680,6 @@ module Aws::ServiceCatalog
|
|
6391
5680
|
include Aws::Structure
|
6392
5681
|
end
|
6393
5682
|
|
6394
|
-
# @note When making an API call, you may pass SearchProductsAsAdminInput
|
6395
|
-
# data as a hash:
|
6396
|
-
#
|
6397
|
-
# {
|
6398
|
-
# accept_language: "AcceptLanguage",
|
6399
|
-
# portfolio_id: "Id",
|
6400
|
-
# filters: {
|
6401
|
-
# "FullTextSearch" => ["ProductViewFilterValue"],
|
6402
|
-
# },
|
6403
|
-
# sort_by: "Title", # accepts Title, VersionCount, CreationDate
|
6404
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
6405
|
-
# page_token: "PageToken",
|
6406
|
-
# page_size: 1,
|
6407
|
-
# product_source: "ACCOUNT", # accepts ACCOUNT
|
6408
|
-
# }
|
6409
|
-
#
|
6410
5683
|
# @!attribute [rw] accept_language
|
6411
5684
|
# The language code.
|
6412
5685
|
#
|
@@ -6482,20 +5755,6 @@ module Aws::ServiceCatalog
|
|
6482
5755
|
include Aws::Structure
|
6483
5756
|
end
|
6484
5757
|
|
6485
|
-
# @note When making an API call, you may pass SearchProductsInput
|
6486
|
-
# data as a hash:
|
6487
|
-
#
|
6488
|
-
# {
|
6489
|
-
# accept_language: "AcceptLanguage",
|
6490
|
-
# filters: {
|
6491
|
-
# "FullTextSearch" => ["ProductViewFilterValue"],
|
6492
|
-
# },
|
6493
|
-
# page_size: 1,
|
6494
|
-
# sort_by: "Title", # accepts Title, VersionCount, CreationDate
|
6495
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
6496
|
-
# page_token: "PageToken",
|
6497
|
-
# }
|
6498
|
-
#
|
6499
5758
|
# @!attribute [rw] accept_language
|
6500
5759
|
# The language code.
|
6501
5760
|
#
|
@@ -6566,24 +5825,6 @@ module Aws::ServiceCatalog
|
|
6566
5825
|
include Aws::Structure
|
6567
5826
|
end
|
6568
5827
|
|
6569
|
-
# @note When making an API call, you may pass SearchProvisionedProductsInput
|
6570
|
-
# data as a hash:
|
6571
|
-
#
|
6572
|
-
# {
|
6573
|
-
# accept_language: "AcceptLanguage",
|
6574
|
-
# access_level_filter: {
|
6575
|
-
# key: "Account", # accepts Account, Role, User
|
6576
|
-
# value: "AccessLevelFilterValue",
|
6577
|
-
# },
|
6578
|
-
# filters: {
|
6579
|
-
# "SearchQuery" => ["ProvisionedProductViewFilterValue"],
|
6580
|
-
# },
|
6581
|
-
# sort_by: "SortField",
|
6582
|
-
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
6583
|
-
# page_size: 1,
|
6584
|
-
# page_token: "PageToken",
|
6585
|
-
# }
|
6586
|
-
#
|
6587
5828
|
# @!attribute [rw] accept_language
|
6588
5829
|
# The language code.
|
6589
5830
|
#
|
@@ -6671,15 +5912,6 @@ module Aws::ServiceCatalog
|
|
6671
5912
|
# A self-service action association consisting of the Action ID, the
|
6672
5913
|
# Product ID, and the Provisioning Artifact ID.
|
6673
5914
|
#
|
6674
|
-
# @note When making an API call, you may pass ServiceActionAssociation
|
6675
|
-
# data as a hash:
|
6676
|
-
#
|
6677
|
-
# {
|
6678
|
-
# service_action_id: "Id", # required
|
6679
|
-
# product_id: "Id", # required
|
6680
|
-
# provisioning_artifact_id: "Id", # required
|
6681
|
-
# }
|
6682
|
-
#
|
6683
5915
|
# @!attribute [rw] service_action_id
|
6684
5916
|
# The self-service action identifier. For example,
|
6685
5917
|
# `act-fs7abcd89wxyz`.
|
@@ -6797,6 +6029,79 @@ module Aws::ServiceCatalog
|
|
6797
6029
|
include Aws::Structure
|
6798
6030
|
end
|
6799
6031
|
|
6032
|
+
# A top level `ProductViewDetail` response containing details about the
|
6033
|
+
# product’s connection. Service Catalog returns this field for the
|
6034
|
+
# `CreateProduct`, `UpdateProduct`, `DescribeProductAsAdmin`, and
|
6035
|
+
# `SearchProductAsAdmin` APIs. This response contains the same fields as
|
6036
|
+
# the `ConnectionParameters` request, with the addition of the
|
6037
|
+
# `LastSync` response.
|
6038
|
+
#
|
6039
|
+
# @!attribute [rw] type
|
6040
|
+
# The only supported `SourceConnection` type is Codestar.
|
6041
|
+
# @return [String]
|
6042
|
+
#
|
6043
|
+
# @!attribute [rw] connection_parameters
|
6044
|
+
# The connection details based on the connection `Type`.
|
6045
|
+
# @return [Types::SourceConnectionParameters]
|
6046
|
+
#
|
6047
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/SourceConnection AWS API Documentation
|
6048
|
+
#
|
6049
|
+
class SourceConnection < Struct.new(
|
6050
|
+
:type,
|
6051
|
+
:connection_parameters)
|
6052
|
+
SENSITIVE = []
|
6053
|
+
include Aws::Structure
|
6054
|
+
end
|
6055
|
+
|
6056
|
+
# Provides details about the configured `SourceConnection`.
|
6057
|
+
#
|
6058
|
+
# @!attribute [rw] type
|
6059
|
+
# The only supported `SourceConnection` type is Codestar.
|
6060
|
+
# @return [String]
|
6061
|
+
#
|
6062
|
+
# @!attribute [rw] connection_parameters
|
6063
|
+
# The connection details based on the connection `Type`.
|
6064
|
+
# @return [Types::SourceConnectionParameters]
|
6065
|
+
#
|
6066
|
+
# @!attribute [rw] last_sync
|
6067
|
+
# Provides details about the product's connection sync and contains
|
6068
|
+
# the following sub-fields.
|
6069
|
+
#
|
6070
|
+
# * `LastSyncTime`
|
6071
|
+
#
|
6072
|
+
# * `LastSyncStatus`
|
6073
|
+
#
|
6074
|
+
# * `LastSyncStatusMessage`
|
6075
|
+
#
|
6076
|
+
# * `LastSuccessfulSyncTime`
|
6077
|
+
#
|
6078
|
+
# * `LastSuccessfulSyncProvisioningArtifactID`
|
6079
|
+
# @return [Types::LastSync]
|
6080
|
+
#
|
6081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/SourceConnectionDetail AWS API Documentation
|
6082
|
+
#
|
6083
|
+
class SourceConnectionDetail < Struct.new(
|
6084
|
+
:type,
|
6085
|
+
:connection_parameters,
|
6086
|
+
:last_sync)
|
6087
|
+
SENSITIVE = []
|
6088
|
+
include Aws::Structure
|
6089
|
+
end
|
6090
|
+
|
6091
|
+
# Provides connection details.
|
6092
|
+
#
|
6093
|
+
# @!attribute [rw] code_star
|
6094
|
+
# Provides `ConnectionType` details.
|
6095
|
+
# @return [Types::CodeStarParameters]
|
6096
|
+
#
|
6097
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/SourceConnectionParameters AWS API Documentation
|
6098
|
+
#
|
6099
|
+
class SourceConnectionParameters < Struct.new(
|
6100
|
+
:code_star)
|
6101
|
+
SENSITIVE = []
|
6102
|
+
include Aws::Structure
|
6103
|
+
end
|
6104
|
+
|
6800
6105
|
# An CloudFormation stack, in a specific account and Region, that's
|
6801
6106
|
# part of a stack set operation. A stack instance is a reference to an
|
6802
6107
|
# attempted or actual stack in a given account within a given Region. A
|
@@ -6849,14 +6154,6 @@ module Aws::ServiceCatalog
|
|
6849
6154
|
# Information about a tag. A tag is a key-value pair. Tags are
|
6850
6155
|
# propagated to the resources created when provisioning a product.
|
6851
6156
|
#
|
6852
|
-
# @note When making an API call, you may pass Tag
|
6853
|
-
# data as a hash:
|
6854
|
-
#
|
6855
|
-
# {
|
6856
|
-
# key: "TagKey", # required
|
6857
|
-
# value: "TagValue", # required
|
6858
|
-
# }
|
6859
|
-
#
|
6860
6157
|
# @!attribute [rw] key
|
6861
6158
|
# The tag key.
|
6862
6159
|
# @return [String]
|
@@ -6937,18 +6234,6 @@ module Aws::ServiceCatalog
|
|
6937
6234
|
include Aws::Structure
|
6938
6235
|
end
|
6939
6236
|
|
6940
|
-
# @note When making an API call, you may pass TerminateProvisionedProductInput
|
6941
|
-
# data as a hash:
|
6942
|
-
#
|
6943
|
-
# {
|
6944
|
-
# provisioned_product_name: "ProvisionedProductNameOrArn",
|
6945
|
-
# provisioned_product_id: "Id",
|
6946
|
-
# terminate_token: "IdempotencyToken", # required
|
6947
|
-
# ignore_errors: false,
|
6948
|
-
# accept_language: "AcceptLanguage",
|
6949
|
-
# retain_physical_resources: false,
|
6950
|
-
# }
|
6951
|
-
#
|
6952
6237
|
# @!attribute [rw] provisioned_product_name
|
6953
6238
|
# The name of the provisioned product. You cannot specify both
|
6954
6239
|
# `ProvisionedProductName` and `ProvisionedProductId`.
|
@@ -7019,16 +6304,6 @@ module Aws::ServiceCatalog
|
|
7019
6304
|
include Aws::Structure
|
7020
6305
|
end
|
7021
6306
|
|
7022
|
-
# @note When making an API call, you may pass UpdateConstraintInput
|
7023
|
-
# data as a hash:
|
7024
|
-
#
|
7025
|
-
# {
|
7026
|
-
# accept_language: "AcceptLanguage",
|
7027
|
-
# id: "Id", # required
|
7028
|
-
# description: "ConstraintDescription",
|
7029
|
-
# parameters: "ConstraintParameters",
|
7030
|
-
# }
|
7031
|
-
#
|
7032
6307
|
# @!attribute [rw] accept_language
|
7033
6308
|
# The language code.
|
7034
6309
|
#
|
@@ -7156,24 +6431,6 @@ module Aws::ServiceCatalog
|
|
7156
6431
|
include Aws::Structure
|
7157
6432
|
end
|
7158
6433
|
|
7159
|
-
# @note When making an API call, you may pass UpdatePortfolioInput
|
7160
|
-
# data as a hash:
|
7161
|
-
#
|
7162
|
-
# {
|
7163
|
-
# accept_language: "AcceptLanguage",
|
7164
|
-
# id: "Id", # required
|
7165
|
-
# display_name: "PortfolioDisplayName",
|
7166
|
-
# description: "PortfolioDescription",
|
7167
|
-
# provider_name: "ProviderName",
|
7168
|
-
# add_tags: [
|
7169
|
-
# {
|
7170
|
-
# key: "TagKey", # required
|
7171
|
-
# value: "TagValue", # required
|
7172
|
-
# },
|
7173
|
-
# ],
|
7174
|
-
# remove_tags: ["TagKey"],
|
7175
|
-
# }
|
7176
|
-
#
|
7177
6434
|
# @!attribute [rw] accept_language
|
7178
6435
|
# The language code.
|
7179
6436
|
#
|
@@ -7239,20 +6496,6 @@ module Aws::ServiceCatalog
|
|
7239
6496
|
include Aws::Structure
|
7240
6497
|
end
|
7241
6498
|
|
7242
|
-
# @note When making an API call, you may pass UpdatePortfolioShareInput
|
7243
|
-
# data as a hash:
|
7244
|
-
#
|
7245
|
-
# {
|
7246
|
-
# accept_language: "AcceptLanguage",
|
7247
|
-
# portfolio_id: "Id", # required
|
7248
|
-
# account_id: "AccountId",
|
7249
|
-
# organization_node: {
|
7250
|
-
# type: "ORGANIZATION", # accepts ORGANIZATION, ORGANIZATIONAL_UNIT, ACCOUNT
|
7251
|
-
# value: "OrganizationNodeValue",
|
7252
|
-
# },
|
7253
|
-
# share_tag_options: false,
|
7254
|
-
# }
|
7255
|
-
#
|
7256
6499
|
# @!attribute [rw] accept_language
|
7257
6500
|
# The language code.
|
7258
6501
|
#
|
@@ -7279,9 +6522,15 @@ module Aws::ServiceCatalog
|
|
7279
6522
|
# @return [Types::OrganizationNode]
|
7280
6523
|
#
|
7281
6524
|
# @!attribute [rw] share_tag_options
|
7282
|
-
#
|
7283
|
-
#
|
7284
|
-
#
|
6525
|
+
# Enables or disables `TagOptions` sharing for the portfolio share. If
|
6526
|
+
# this field is not provided, the current state of TagOptions sharing
|
6527
|
+
# on the portfolio share will not be modified.
|
6528
|
+
# @return [Boolean]
|
6529
|
+
#
|
6530
|
+
# @!attribute [rw] share_principals
|
6531
|
+
# A flag to enables or disables `Principals` sharing in the portfolio.
|
6532
|
+
# If this field is not provided, the current state of the `Principals`
|
6533
|
+
# sharing on the portfolio share will not be modified.
|
7285
6534
|
# @return [Boolean]
|
7286
6535
|
#
|
7287
6536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdatePortfolioShareInput AWS API Documentation
|
@@ -7291,7 +6540,8 @@ module Aws::ServiceCatalog
|
|
7291
6540
|
:portfolio_id,
|
7292
6541
|
:account_id,
|
7293
6542
|
:organization_node,
|
7294
|
-
:share_tag_options
|
6543
|
+
:share_tag_options,
|
6544
|
+
:share_principals)
|
7295
6545
|
SENSITIVE = []
|
7296
6546
|
include Aws::Structure
|
7297
6547
|
end
|
@@ -7316,28 +6566,6 @@ module Aws::ServiceCatalog
|
|
7316
6566
|
include Aws::Structure
|
7317
6567
|
end
|
7318
6568
|
|
7319
|
-
# @note When making an API call, you may pass UpdateProductInput
|
7320
|
-
# data as a hash:
|
7321
|
-
#
|
7322
|
-
# {
|
7323
|
-
# accept_language: "AcceptLanguage",
|
7324
|
-
# id: "Id", # required
|
7325
|
-
# name: "ProductViewName",
|
7326
|
-
# owner: "ProductViewOwner",
|
7327
|
-
# description: "ProductViewShortDescription",
|
7328
|
-
# distributor: "ProductViewOwner",
|
7329
|
-
# support_description: "SupportDescription",
|
7330
|
-
# support_email: "SupportEmail",
|
7331
|
-
# support_url: "SupportUrl",
|
7332
|
-
# add_tags: [
|
7333
|
-
# {
|
7334
|
-
# key: "TagKey", # required
|
7335
|
-
# value: "TagValue", # required
|
7336
|
-
# },
|
7337
|
-
# ],
|
7338
|
-
# remove_tags: ["TagKey"],
|
7339
|
-
# }
|
7340
|
-
#
|
7341
6569
|
# @!attribute [rw] accept_language
|
7342
6570
|
# The language code.
|
7343
6571
|
#
|
@@ -7388,6 +6616,17 @@ module Aws::ServiceCatalog
|
|
7388
6616
|
# The tags to remove from the product.
|
7389
6617
|
# @return [Array<String>]
|
7390
6618
|
#
|
6619
|
+
# @!attribute [rw] source_connection
|
6620
|
+
# Specifies connection details for the updated product and syncs the
|
6621
|
+
# product to the connection source artifact. This automatically
|
6622
|
+
# manages the product's artifacts based on changes to the source. The
|
6623
|
+
# `SourceConnection` parameter consists of the following sub-fields.
|
6624
|
+
#
|
6625
|
+
# * `Type`
|
6626
|
+
#
|
6627
|
+
# * `ConnectionParamters`
|
6628
|
+
# @return [Types::SourceConnection]
|
6629
|
+
#
|
7391
6630
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/UpdateProductInput AWS API Documentation
|
7392
6631
|
#
|
7393
6632
|
class UpdateProductInput < Struct.new(
|
@@ -7401,7 +6640,8 @@ module Aws::ServiceCatalog
|
|
7401
6640
|
:support_email,
|
7402
6641
|
:support_url,
|
7403
6642
|
:add_tags,
|
7404
|
-
:remove_tags
|
6643
|
+
:remove_tags,
|
6644
|
+
:source_connection)
|
7405
6645
|
SENSITIVE = []
|
7406
6646
|
include Aws::Structure
|
7407
6647
|
end
|
@@ -7423,44 +6663,6 @@ module Aws::ServiceCatalog
|
|
7423
6663
|
include Aws::Structure
|
7424
6664
|
end
|
7425
6665
|
|
7426
|
-
# @note When making an API call, you may pass UpdateProvisionedProductInput
|
7427
|
-
# data as a hash:
|
7428
|
-
#
|
7429
|
-
# {
|
7430
|
-
# accept_language: "AcceptLanguage",
|
7431
|
-
# provisioned_product_name: "ProvisionedProductNameOrArn",
|
7432
|
-
# provisioned_product_id: "Id",
|
7433
|
-
# product_id: "Id",
|
7434
|
-
# product_name: "ProductViewName",
|
7435
|
-
# provisioning_artifact_id: "Id",
|
7436
|
-
# provisioning_artifact_name: "ProvisioningArtifactName",
|
7437
|
-
# path_id: "Id",
|
7438
|
-
# path_name: "PortfolioDisplayName",
|
7439
|
-
# provisioning_parameters: [
|
7440
|
-
# {
|
7441
|
-
# key: "ParameterKey",
|
7442
|
-
# value: "ParameterValue",
|
7443
|
-
# use_previous_value: false,
|
7444
|
-
# },
|
7445
|
-
# ],
|
7446
|
-
# provisioning_preferences: {
|
7447
|
-
# stack_set_accounts: ["AccountId"],
|
7448
|
-
# stack_set_regions: ["Region"],
|
7449
|
-
# stack_set_failure_tolerance_count: 1,
|
7450
|
-
# stack_set_failure_tolerance_percentage: 1,
|
7451
|
-
# stack_set_max_concurrency_count: 1,
|
7452
|
-
# stack_set_max_concurrency_percentage: 1,
|
7453
|
-
# stack_set_operation_type: "CREATE", # accepts CREATE, UPDATE, DELETE
|
7454
|
-
# },
|
7455
|
-
# tags: [
|
7456
|
-
# {
|
7457
|
-
# key: "TagKey", # required
|
7458
|
-
# value: "TagValue", # required
|
7459
|
-
# },
|
7460
|
-
# ],
|
7461
|
-
# update_token: "IdempotencyToken", # required
|
7462
|
-
# }
|
7463
|
-
#
|
7464
6666
|
# @!attribute [rw] accept_language
|
7465
6667
|
# The language code.
|
7466
6668
|
#
|
@@ -7565,18 +6767,6 @@ module Aws::ServiceCatalog
|
|
7565
6767
|
include Aws::Structure
|
7566
6768
|
end
|
7567
6769
|
|
7568
|
-
# @note When making an API call, you may pass UpdateProvisionedProductPropertiesInput
|
7569
|
-
# data as a hash:
|
7570
|
-
#
|
7571
|
-
# {
|
7572
|
-
# accept_language: "AcceptLanguage",
|
7573
|
-
# provisioned_product_id: "Id", # required
|
7574
|
-
# provisioned_product_properties: { # required
|
7575
|
-
# "OWNER" => "PropertyValue",
|
7576
|
-
# },
|
7577
|
-
# idempotency_token: "IdempotencyToken", # required
|
7578
|
-
# }
|
7579
|
-
#
|
7580
6770
|
# @!attribute [rw] accept_language
|
7581
6771
|
# The language code.
|
7582
6772
|
#
|
@@ -7672,19 +6862,6 @@ module Aws::ServiceCatalog
|
|
7672
6862
|
include Aws::Structure
|
7673
6863
|
end
|
7674
6864
|
|
7675
|
-
# @note When making an API call, you may pass UpdateProvisioningArtifactInput
|
7676
|
-
# data as a hash:
|
7677
|
-
#
|
7678
|
-
# {
|
7679
|
-
# accept_language: "AcceptLanguage",
|
7680
|
-
# product_id: "Id", # required
|
7681
|
-
# provisioning_artifact_id: "Id", # required
|
7682
|
-
# name: "ProvisioningArtifactName",
|
7683
|
-
# description: "ProvisioningArtifactDescription",
|
7684
|
-
# active: false,
|
7685
|
-
# guidance: "DEFAULT", # accepts DEFAULT, DEPRECATED
|
7686
|
-
# }
|
7687
|
-
#
|
7688
6865
|
# @!attribute [rw] accept_language
|
7689
6866
|
# The language code.
|
7690
6867
|
#
|
@@ -7750,8 +6927,8 @@ module Aws::ServiceCatalog
|
|
7750
6927
|
# @return [Types::ProvisioningArtifactDetail]
|
7751
6928
|
#
|
7752
6929
|
# @!attribute [rw] info
|
7753
|
-
# The URL of the CloudFormation template in Amazon S3
|
7754
|
-
#
|
6930
|
+
# The URL of the CloudFormation template in Amazon S3 or GitHub in
|
6931
|
+
# JSON format.
|
7755
6932
|
# @return [Hash<String,String>]
|
7756
6933
|
#
|
7757
6934
|
# @!attribute [rw] status
|
@@ -7770,15 +6947,6 @@ module Aws::ServiceCatalog
|
|
7770
6947
|
|
7771
6948
|
# The parameter key-value pair used to update a provisioned product.
|
7772
6949
|
#
|
7773
|
-
# @note When making an API call, you may pass UpdateProvisioningParameter
|
7774
|
-
# data as a hash:
|
7775
|
-
#
|
7776
|
-
# {
|
7777
|
-
# key: "ParameterKey",
|
7778
|
-
# value: "ParameterValue",
|
7779
|
-
# use_previous_value: false,
|
7780
|
-
# }
|
7781
|
-
#
|
7782
6950
|
# @!attribute [rw] key
|
7783
6951
|
# The parameter key.
|
7784
6952
|
# @return [String]
|
@@ -7806,19 +6974,6 @@ module Aws::ServiceCatalog
|
|
7806
6974
|
# provisioned product. Not all preferences are applicable to all
|
7807
6975
|
# provisioned product types.
|
7808
6976
|
#
|
7809
|
-
# @note When making an API call, you may pass UpdateProvisioningPreferences
|
7810
|
-
# data as a hash:
|
7811
|
-
#
|
7812
|
-
# {
|
7813
|
-
# stack_set_accounts: ["AccountId"],
|
7814
|
-
# stack_set_regions: ["Region"],
|
7815
|
-
# stack_set_failure_tolerance_count: 1,
|
7816
|
-
# stack_set_failure_tolerance_percentage: 1,
|
7817
|
-
# stack_set_max_concurrency_count: 1,
|
7818
|
-
# stack_set_max_concurrency_percentage: 1,
|
7819
|
-
# stack_set_operation_type: "CREATE", # accepts CREATE, UPDATE, DELETE
|
7820
|
-
# }
|
7821
|
-
#
|
7822
6977
|
# @!attribute [rw] stack_set_accounts
|
7823
6978
|
# One or more Amazon Web Services accounts that will have access to
|
7824
6979
|
# the provisioned product.
|
@@ -7953,19 +7108,6 @@ module Aws::ServiceCatalog
|
|
7953
7108
|
include Aws::Structure
|
7954
7109
|
end
|
7955
7110
|
|
7956
|
-
# @note When making an API call, you may pass UpdateServiceActionInput
|
7957
|
-
# data as a hash:
|
7958
|
-
#
|
7959
|
-
# {
|
7960
|
-
# id: "Id", # required
|
7961
|
-
# name: "ServiceActionName",
|
7962
|
-
# definition: {
|
7963
|
-
# "Name" => "ServiceActionDefinitionValue",
|
7964
|
-
# },
|
7965
|
-
# description: "ServiceActionDescription",
|
7966
|
-
# accept_language: "AcceptLanguage",
|
7967
|
-
# }
|
7968
|
-
#
|
7969
7111
|
# @!attribute [rw] id
|
7970
7112
|
# The self-service action identifier.
|
7971
7113
|
# @return [String]
|
@@ -8016,15 +7158,6 @@ module Aws::ServiceCatalog
|
|
8016
7158
|
include Aws::Structure
|
8017
7159
|
end
|
8018
7160
|
|
8019
|
-
# @note When making an API call, you may pass UpdateTagOptionInput
|
8020
|
-
# data as a hash:
|
8021
|
-
#
|
8022
|
-
# {
|
8023
|
-
# id: "TagOptionId", # required
|
8024
|
-
# value: "TagOptionValue",
|
8025
|
-
# active: false,
|
8026
|
-
# }
|
8027
|
-
#
|
8028
7161
|
# @!attribute [rw] id
|
8029
7162
|
# The TagOption identifier.
|
8030
7163
|
# @return [String]
|