aws-sdk-servicecatalog 1.2.0 → 1.3.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/lib/aws-sdk-servicecatalog.rb +1 -1
- data/lib/aws-sdk-servicecatalog/client.rb +473 -13
- data/lib/aws-sdk-servicecatalog/client_api.rb +270 -0
- data/lib/aws-sdk-servicecatalog/types.rb +830 -22
- metadata +2 -2
@@ -196,6 +196,19 @@ module Aws::ServiceCatalog
|
|
196
196
|
#
|
197
197
|
class AssociateTagOptionWithResourceOutput < Aws::EmptyStructure; end
|
198
198
|
|
199
|
+
# Information about a CloudWatch dashboard.
|
200
|
+
#
|
201
|
+
# @!attribute [rw] name
|
202
|
+
# The name of the CloudWatch dashboard.
|
203
|
+
# @return [String]
|
204
|
+
#
|
205
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CloudWatchDashboard AWS API Documentation
|
206
|
+
#
|
207
|
+
class CloudWatchDashboard < Struct.new(
|
208
|
+
:name)
|
209
|
+
include Aws::Structure
|
210
|
+
end
|
211
|
+
|
199
212
|
# Information about a constraint.
|
200
213
|
#
|
201
214
|
# @!attribute [rw] constraint_id
|
@@ -495,7 +508,7 @@ module Aws::ServiceCatalog
|
|
495
508
|
# @return [String]
|
496
509
|
#
|
497
510
|
# @!attribute [rw] tags
|
498
|
-
#
|
511
|
+
# One or more tags.
|
499
512
|
# @return [Array<Types::Tag>]
|
500
513
|
#
|
501
514
|
# @!attribute [rw] idempotency_token
|
@@ -648,7 +661,7 @@ module Aws::ServiceCatalog
|
|
648
661
|
# @return [String]
|
649
662
|
#
|
650
663
|
# @!attribute [rw] tags
|
651
|
-
#
|
664
|
+
# One or more tags.
|
652
665
|
# @return [Array<Types::Tag>]
|
653
666
|
#
|
654
667
|
# @!attribute [rw] provisioning_artifact_parameters
|
@@ -703,6 +716,143 @@ module Aws::ServiceCatalog
|
|
703
716
|
include Aws::Structure
|
704
717
|
end
|
705
718
|
|
719
|
+
# @note When making an API call, you may pass CreateProvisionedProductPlanInput
|
720
|
+
# data as a hash:
|
721
|
+
#
|
722
|
+
# {
|
723
|
+
# accept_language: "AcceptLanguage",
|
724
|
+
# plan_name: "ProvisionedProductPlanName", # required
|
725
|
+
# plan_type: "CLOUDFORMATION", # required, accepts CLOUDFORMATION
|
726
|
+
# notification_arns: ["NotificationArn"],
|
727
|
+
# path_id: "Id",
|
728
|
+
# product_id: "Id", # required
|
729
|
+
# provisioned_product_name: "ProvisionedProductName", # required
|
730
|
+
# provisioning_artifact_id: "Id", # required
|
731
|
+
# provisioning_parameters: [
|
732
|
+
# {
|
733
|
+
# key: "ParameterKey",
|
734
|
+
# value: "ParameterValue",
|
735
|
+
# use_previous_value: false,
|
736
|
+
# },
|
737
|
+
# ],
|
738
|
+
# idempotency_token: "IdempotencyToken", # required
|
739
|
+
# tags: [
|
740
|
+
# {
|
741
|
+
# key: "TagKey", # required
|
742
|
+
# value: "TagValue", # required
|
743
|
+
# },
|
744
|
+
# ],
|
745
|
+
# }
|
746
|
+
#
|
747
|
+
# @!attribute [rw] accept_language
|
748
|
+
# The language code.
|
749
|
+
#
|
750
|
+
# * `en` - English (default)
|
751
|
+
#
|
752
|
+
# * `jp` - Japanese
|
753
|
+
#
|
754
|
+
# * `zh` - Chinese
|
755
|
+
# @return [String]
|
756
|
+
#
|
757
|
+
# @!attribute [rw] plan_name
|
758
|
+
# The name of the plan.
|
759
|
+
# @return [String]
|
760
|
+
#
|
761
|
+
# @!attribute [rw] plan_type
|
762
|
+
# The plan type.
|
763
|
+
# @return [String]
|
764
|
+
#
|
765
|
+
# @!attribute [rw] notification_arns
|
766
|
+
# Passed to CloudFormation. The SNS topic ARNs to which to publish
|
767
|
+
# stack-related events.
|
768
|
+
# @return [Array<String>]
|
769
|
+
#
|
770
|
+
# @!attribute [rw] path_id
|
771
|
+
# The path identifier of the product. This value is optional if the
|
772
|
+
# product has a default path, and required if the product has more
|
773
|
+
# than one path. To list the paths for a product, use ListLaunchPaths.
|
774
|
+
# @return [String]
|
775
|
+
#
|
776
|
+
# @!attribute [rw] product_id
|
777
|
+
# The product identifier.
|
778
|
+
# @return [String]
|
779
|
+
#
|
780
|
+
# @!attribute [rw] provisioned_product_name
|
781
|
+
# A user-friendly name for the provisioned product. This value must be
|
782
|
+
# unique for the AWS account and cannot be updated after the product
|
783
|
+
# is provisioned.
|
784
|
+
# @return [String]
|
785
|
+
#
|
786
|
+
# @!attribute [rw] provisioning_artifact_id
|
787
|
+
# The identifier of the provisioning artifact.
|
788
|
+
# @return [String]
|
789
|
+
#
|
790
|
+
# @!attribute [rw] provisioning_parameters
|
791
|
+
# Parameters specified by the administrator that are required for
|
792
|
+
# provisioning the product.
|
793
|
+
# @return [Array<Types::UpdateProvisioningParameter>]
|
794
|
+
#
|
795
|
+
# @!attribute [rw] idempotency_token
|
796
|
+
# A unique identifier that you provide to ensure idempotency. If
|
797
|
+
# multiple requests differ only by the idempotency token, the same
|
798
|
+
# response is returned for each repeated request.
|
799
|
+
#
|
800
|
+
# **A suitable default value is auto-generated.** You should normally
|
801
|
+
# not need to pass this option.
|
802
|
+
# @return [String]
|
803
|
+
#
|
804
|
+
# @!attribute [rw] tags
|
805
|
+
# One or more tags.
|
806
|
+
# @return [Array<Types::Tag>]
|
807
|
+
#
|
808
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateProvisionedProductPlanInput AWS API Documentation
|
809
|
+
#
|
810
|
+
class CreateProvisionedProductPlanInput < Struct.new(
|
811
|
+
:accept_language,
|
812
|
+
:plan_name,
|
813
|
+
:plan_type,
|
814
|
+
:notification_arns,
|
815
|
+
:path_id,
|
816
|
+
:product_id,
|
817
|
+
:provisioned_product_name,
|
818
|
+
:provisioning_artifact_id,
|
819
|
+
:provisioning_parameters,
|
820
|
+
:idempotency_token,
|
821
|
+
:tags)
|
822
|
+
include Aws::Structure
|
823
|
+
end
|
824
|
+
|
825
|
+
# @!attribute [rw] plan_name
|
826
|
+
# The name of the plan.
|
827
|
+
# @return [String]
|
828
|
+
#
|
829
|
+
# @!attribute [rw] plan_id
|
830
|
+
# The plan identifier.
|
831
|
+
# @return [String]
|
832
|
+
#
|
833
|
+
# @!attribute [rw] provision_product_id
|
834
|
+
# The product identifier.
|
835
|
+
# @return [String]
|
836
|
+
#
|
837
|
+
# @!attribute [rw] provisioned_product_name
|
838
|
+
# The user-friendly name of the provisioned product.
|
839
|
+
# @return [String]
|
840
|
+
#
|
841
|
+
# @!attribute [rw] provisioning_artifact_id
|
842
|
+
# The identifier of the provisioning artifact.
|
843
|
+
# @return [String]
|
844
|
+
#
|
845
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/CreateProvisionedProductPlanOutput AWS API Documentation
|
846
|
+
#
|
847
|
+
class CreateProvisionedProductPlanOutput < Struct.new(
|
848
|
+
:plan_name,
|
849
|
+
:plan_id,
|
850
|
+
:provision_product_id,
|
851
|
+
:provisioned_product_name,
|
852
|
+
:provisioning_artifact_id)
|
853
|
+
include Aws::Structure
|
854
|
+
end
|
855
|
+
|
706
856
|
# @note When making an API call, you may pass CreateProvisioningArtifactInput
|
707
857
|
# data as a hash:
|
708
858
|
#
|
@@ -955,6 +1105,48 @@ module Aws::ServiceCatalog
|
|
955
1105
|
#
|
956
1106
|
class DeleteProductOutput < Aws::EmptyStructure; end
|
957
1107
|
|
1108
|
+
# @note When making an API call, you may pass DeleteProvisionedProductPlanInput
|
1109
|
+
# data as a hash:
|
1110
|
+
#
|
1111
|
+
# {
|
1112
|
+
# accept_language: "AcceptLanguage",
|
1113
|
+
# plan_id: "Id", # required
|
1114
|
+
# ignore_errors: false,
|
1115
|
+
# }
|
1116
|
+
#
|
1117
|
+
# @!attribute [rw] accept_language
|
1118
|
+
# The language code.
|
1119
|
+
#
|
1120
|
+
# * `en` - English (default)
|
1121
|
+
#
|
1122
|
+
# * `jp` - Japanese
|
1123
|
+
#
|
1124
|
+
# * `zh` - Chinese
|
1125
|
+
# @return [String]
|
1126
|
+
#
|
1127
|
+
# @!attribute [rw] plan_id
|
1128
|
+
# The plan identifier.
|
1129
|
+
# @return [String]
|
1130
|
+
#
|
1131
|
+
# @!attribute [rw] ignore_errors
|
1132
|
+
# If set to true, AWS Service Catalog stops managing the specified
|
1133
|
+
# provisioned product even if it cannot delete the underlying
|
1134
|
+
# resources.
|
1135
|
+
# @return [Boolean]
|
1136
|
+
#
|
1137
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeleteProvisionedProductPlanInput AWS API Documentation
|
1138
|
+
#
|
1139
|
+
class DeleteProvisionedProductPlanInput < Struct.new(
|
1140
|
+
:accept_language,
|
1141
|
+
:plan_id,
|
1142
|
+
:ignore_errors)
|
1143
|
+
include Aws::Structure
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DeleteProvisionedProductPlanOutput AWS API Documentation
|
1147
|
+
#
|
1148
|
+
class DeleteProvisionedProductPlanOutput < Aws::EmptyStructure; end
|
1149
|
+
|
958
1150
|
# @note When making an API call, you may pass DeleteProvisioningArtifactInput
|
959
1151
|
# data as a hash:
|
960
1152
|
#
|
@@ -1333,10 +1525,82 @@ module Aws::ServiceCatalog
|
|
1333
1525
|
# Information about the provisioned product.
|
1334
1526
|
# @return [Types::ProvisionedProductDetail]
|
1335
1527
|
#
|
1528
|
+
# @!attribute [rw] cloud_watch_dashboards
|
1529
|
+
# Any CloudWatch dashboards that were created when provisioning the
|
1530
|
+
# product.
|
1531
|
+
# @return [Array<Types::CloudWatchDashboard>]
|
1532
|
+
#
|
1336
1533
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisionedProductOutput AWS API Documentation
|
1337
1534
|
#
|
1338
1535
|
class DescribeProvisionedProductOutput < Struct.new(
|
1339
|
-
:provisioned_product_detail
|
1536
|
+
:provisioned_product_detail,
|
1537
|
+
:cloud_watch_dashboards)
|
1538
|
+
include Aws::Structure
|
1539
|
+
end
|
1540
|
+
|
1541
|
+
# @note When making an API call, you may pass DescribeProvisionedProductPlanInput
|
1542
|
+
# data as a hash:
|
1543
|
+
#
|
1544
|
+
# {
|
1545
|
+
# accept_language: "AcceptLanguage",
|
1546
|
+
# plan_id: "Id", # required
|
1547
|
+
# page_size: 1,
|
1548
|
+
# page_token: "PageToken",
|
1549
|
+
# }
|
1550
|
+
#
|
1551
|
+
# @!attribute [rw] accept_language
|
1552
|
+
# The language code.
|
1553
|
+
#
|
1554
|
+
# * `en` - English (default)
|
1555
|
+
#
|
1556
|
+
# * `jp` - Japanese
|
1557
|
+
#
|
1558
|
+
# * `zh` - Chinese
|
1559
|
+
# @return [String]
|
1560
|
+
#
|
1561
|
+
# @!attribute [rw] plan_id
|
1562
|
+
# The plan identifier.
|
1563
|
+
# @return [String]
|
1564
|
+
#
|
1565
|
+
# @!attribute [rw] page_size
|
1566
|
+
# The maximum number of items to return with this call.
|
1567
|
+
# @return [Integer]
|
1568
|
+
#
|
1569
|
+
# @!attribute [rw] page_token
|
1570
|
+
# The page token for the next set of results. To retrieve the first
|
1571
|
+
# set of results, use null.
|
1572
|
+
# @return [String]
|
1573
|
+
#
|
1574
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisionedProductPlanInput AWS API Documentation
|
1575
|
+
#
|
1576
|
+
class DescribeProvisionedProductPlanInput < Struct.new(
|
1577
|
+
:accept_language,
|
1578
|
+
:plan_id,
|
1579
|
+
:page_size,
|
1580
|
+
:page_token)
|
1581
|
+
include Aws::Structure
|
1582
|
+
end
|
1583
|
+
|
1584
|
+
# @!attribute [rw] provisioned_product_plan_details
|
1585
|
+
# Information about the plan.
|
1586
|
+
# @return [Types::ProvisionedProductPlanDetails]
|
1587
|
+
#
|
1588
|
+
# @!attribute [rw] resource_changes
|
1589
|
+
# Information about the resources changes that will occur when the
|
1590
|
+
# plan is executed.
|
1591
|
+
# @return [Array<Types::ResourceChange>]
|
1592
|
+
#
|
1593
|
+
# @!attribute [rw] next_page_token
|
1594
|
+
# The page token to use to retrieve the next set of results. If there
|
1595
|
+
# are no additional results, this value is null.
|
1596
|
+
# @return [String]
|
1597
|
+
#
|
1598
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/DescribeProvisionedProductPlanOutput AWS API Documentation
|
1599
|
+
#
|
1600
|
+
class DescribeProvisionedProductPlanOutput < Struct.new(
|
1601
|
+
:provisioned_product_plan_details,
|
1602
|
+
:resource_changes,
|
1603
|
+
:next_page_token)
|
1340
1604
|
include Aws::Structure
|
1341
1605
|
end
|
1342
1606
|
|
@@ -1680,6 +1944,58 @@ module Aws::ServiceCatalog
|
|
1680
1944
|
#
|
1681
1945
|
class DisassociateTagOptionFromResourceOutput < Aws::EmptyStructure; end
|
1682
1946
|
|
1947
|
+
# @note When making an API call, you may pass ExecuteProvisionedProductPlanInput
|
1948
|
+
# data as a hash:
|
1949
|
+
#
|
1950
|
+
# {
|
1951
|
+
# accept_language: "AcceptLanguage",
|
1952
|
+
# plan_id: "Id", # required
|
1953
|
+
# idempotency_token: "IdempotencyToken", # required
|
1954
|
+
# }
|
1955
|
+
#
|
1956
|
+
# @!attribute [rw] accept_language
|
1957
|
+
# The language code.
|
1958
|
+
#
|
1959
|
+
# * `en` - English (default)
|
1960
|
+
#
|
1961
|
+
# * `jp` - Japanese
|
1962
|
+
#
|
1963
|
+
# * `zh` - Chinese
|
1964
|
+
# @return [String]
|
1965
|
+
#
|
1966
|
+
# @!attribute [rw] plan_id
|
1967
|
+
# The plan identifier.
|
1968
|
+
# @return [String]
|
1969
|
+
#
|
1970
|
+
# @!attribute [rw] idempotency_token
|
1971
|
+
# A unique identifier that you provide to ensure idempotency. If
|
1972
|
+
# multiple requests differ only by the idempotency token, the same
|
1973
|
+
# response is returned for each repeated request.
|
1974
|
+
#
|
1975
|
+
# **A suitable default value is auto-generated.** You should normally
|
1976
|
+
# not need to pass this option.
|
1977
|
+
# @return [String]
|
1978
|
+
#
|
1979
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ExecuteProvisionedProductPlanInput AWS API Documentation
|
1980
|
+
#
|
1981
|
+
class ExecuteProvisionedProductPlanInput < Struct.new(
|
1982
|
+
:accept_language,
|
1983
|
+
:plan_id,
|
1984
|
+
:idempotency_token)
|
1985
|
+
include Aws::Structure
|
1986
|
+
end
|
1987
|
+
|
1988
|
+
# @!attribute [rw] record_detail
|
1989
|
+
# Information about the result of provisioning the product.
|
1990
|
+
# @return [Types::RecordDetail]
|
1991
|
+
#
|
1992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ExecuteProvisionedProductPlanOutput AWS API Documentation
|
1993
|
+
#
|
1994
|
+
class ExecuteProvisionedProductPlanOutput < Struct.new(
|
1995
|
+
:record_detail)
|
1996
|
+
include Aws::Structure
|
1997
|
+
end
|
1998
|
+
|
1683
1999
|
# Summary information about a product path for a user.
|
1684
2000
|
#
|
1685
2001
|
# @!attribute [rw] id
|
@@ -2109,12 +2425,81 @@ module Aws::ServiceCatalog
|
|
2109
2425
|
include Aws::Structure
|
2110
2426
|
end
|
2111
2427
|
|
2112
|
-
# @note When making an API call, you may pass
|
2428
|
+
# @note When making an API call, you may pass ListProvisionedProductPlansInput
|
2113
2429
|
# data as a hash:
|
2114
2430
|
#
|
2115
2431
|
# {
|
2116
2432
|
# accept_language: "AcceptLanguage",
|
2117
|
-
#
|
2433
|
+
# provision_product_id: "Id",
|
2434
|
+
# page_size: 1,
|
2435
|
+
# page_token: "PageToken",
|
2436
|
+
# access_level_filter: {
|
2437
|
+
# key: "Account", # accepts Account, Role, User
|
2438
|
+
# value: "AccessLevelFilterValue",
|
2439
|
+
# },
|
2440
|
+
# }
|
2441
|
+
#
|
2442
|
+
# @!attribute [rw] accept_language
|
2443
|
+
# The language code.
|
2444
|
+
#
|
2445
|
+
# * `en` - English (default)
|
2446
|
+
#
|
2447
|
+
# * `jp` - Japanese
|
2448
|
+
#
|
2449
|
+
# * `zh` - Chinese
|
2450
|
+
# @return [String]
|
2451
|
+
#
|
2452
|
+
# @!attribute [rw] provision_product_id
|
2453
|
+
# The product identifier.
|
2454
|
+
# @return [String]
|
2455
|
+
#
|
2456
|
+
# @!attribute [rw] page_size
|
2457
|
+
# The maximum number of items to return with this call.
|
2458
|
+
# @return [Integer]
|
2459
|
+
#
|
2460
|
+
# @!attribute [rw] page_token
|
2461
|
+
# The page token for the next set of results. To retrieve the first
|
2462
|
+
# set of results, use null.
|
2463
|
+
# @return [String]
|
2464
|
+
#
|
2465
|
+
# @!attribute [rw] access_level_filter
|
2466
|
+
# The access level to use to obtain results. The default is `User`.
|
2467
|
+
# @return [Types::AccessLevelFilter]
|
2468
|
+
#
|
2469
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListProvisionedProductPlansInput AWS API Documentation
|
2470
|
+
#
|
2471
|
+
class ListProvisionedProductPlansInput < Struct.new(
|
2472
|
+
:accept_language,
|
2473
|
+
:provision_product_id,
|
2474
|
+
:page_size,
|
2475
|
+
:page_token,
|
2476
|
+
:access_level_filter)
|
2477
|
+
include Aws::Structure
|
2478
|
+
end
|
2479
|
+
|
2480
|
+
# @!attribute [rw] provisioned_product_plans
|
2481
|
+
# Information about the plans.
|
2482
|
+
# @return [Array<Types::ProvisionedProductPlanSummary>]
|
2483
|
+
#
|
2484
|
+
# @!attribute [rw] next_page_token
|
2485
|
+
# The page token to use to retrieve the next set of results. If there
|
2486
|
+
# are no additional results, this value is null.
|
2487
|
+
# @return [String]
|
2488
|
+
#
|
2489
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListProvisionedProductPlansOutput AWS API Documentation
|
2490
|
+
#
|
2491
|
+
class ListProvisionedProductPlansOutput < Struct.new(
|
2492
|
+
:provisioned_product_plans,
|
2493
|
+
:next_page_token)
|
2494
|
+
include Aws::Structure
|
2495
|
+
end
|
2496
|
+
|
2497
|
+
# @note When making an API call, you may pass ListProvisioningArtifactsInput
|
2498
|
+
# data as a hash:
|
2499
|
+
#
|
2500
|
+
# {
|
2501
|
+
# accept_language: "AcceptLanguage",
|
2502
|
+
# product_id: "Id", # required
|
2118
2503
|
# }
|
2119
2504
|
#
|
2120
2505
|
# @!attribute [rw] accept_language
|
@@ -2435,7 +2820,7 @@ module Aws::ServiceCatalog
|
|
2435
2820
|
# @return [String]
|
2436
2821
|
#
|
2437
2822
|
# @!attribute [rw] created_time
|
2438
|
-
# The UTC
|
2823
|
+
# The UTC time stamp of the creation time.
|
2439
2824
|
# @return [Time]
|
2440
2825
|
#
|
2441
2826
|
# @!attribute [rw] provider_name
|
@@ -2513,7 +2898,7 @@ module Aws::ServiceCatalog
|
|
2513
2898
|
# @return [String]
|
2514
2899
|
#
|
2515
2900
|
# @!attribute [rw] created_time
|
2516
|
-
# The UTC
|
2901
|
+
# The UTC time stamp of the creation time.
|
2517
2902
|
# @return [Time]
|
2518
2903
|
#
|
2519
2904
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProductViewDetail AWS API Documentation
|
@@ -2658,7 +3043,7 @@ module Aws::ServiceCatalog
|
|
2658
3043
|
# @return [Array<Types::ProvisioningParameter>]
|
2659
3044
|
#
|
2660
3045
|
# @!attribute [rw] tags
|
2661
|
-
#
|
3046
|
+
# One or more tags.
|
2662
3047
|
# @return [Array<Types::Tag>]
|
2663
3048
|
#
|
2664
3049
|
# @!attribute [rw] notification_arns
|
@@ -2690,7 +3075,7 @@ module Aws::ServiceCatalog
|
|
2690
3075
|
end
|
2691
3076
|
|
2692
3077
|
# @!attribute [rw] record_detail
|
2693
|
-
# Information about the result of
|
3078
|
+
# Information about the result of provisioning the product.
|
2694
3079
|
# @return [Types::RecordDetail]
|
2695
3080
|
#
|
2696
3081
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisionProductOutput AWS API Documentation
|
@@ -2744,7 +3129,112 @@ module Aws::ServiceCatalog
|
|
2744
3129
|
# @return [String]
|
2745
3130
|
#
|
2746
3131
|
# @!attribute [rw] created_time
|
2747
|
-
# The UTC
|
3132
|
+
# The UTC time stamp of the creation time.
|
3133
|
+
# @return [Time]
|
3134
|
+
#
|
3135
|
+
# @!attribute [rw] idempotency_token
|
3136
|
+
# A unique identifier that you provide to ensure idempotency. If
|
3137
|
+
# multiple requests differ only by the idempotency token, the same
|
3138
|
+
# response is returned for each repeated request.
|
3139
|
+
# @return [String]
|
3140
|
+
#
|
3141
|
+
# @!attribute [rw] last_record_id
|
3142
|
+
# The record identifier of the last request performed on this
|
3143
|
+
# provisioned product.
|
3144
|
+
# @return [String]
|
3145
|
+
#
|
3146
|
+
# @!attribute [rw] tags
|
3147
|
+
# One or more tags.
|
3148
|
+
# @return [Array<Types::Tag>]
|
3149
|
+
#
|
3150
|
+
# @!attribute [rw] physical_id
|
3151
|
+
# The assigned identifier for the resource, such as an EC2 instance ID
|
3152
|
+
# or an S3 bucket name.
|
3153
|
+
# @return [String]
|
3154
|
+
#
|
3155
|
+
# @!attribute [rw] product_id
|
3156
|
+
# The product identifier.
|
3157
|
+
# @return [String]
|
3158
|
+
#
|
3159
|
+
# @!attribute [rw] provisioning_artifact_id
|
3160
|
+
# The identifier of the provisioning artifact.
|
3161
|
+
# @return [String]
|
3162
|
+
#
|
3163
|
+
# @!attribute [rw] user_arn
|
3164
|
+
# The Amazon Resource Name (ARN) of the IAM user.
|
3165
|
+
# @return [String]
|
3166
|
+
#
|
3167
|
+
# @!attribute [rw] user_arn_session
|
3168
|
+
# The ARN of the IAM user in the session. This ARN might contain a
|
3169
|
+
# session ID.
|
3170
|
+
# @return [String]
|
3171
|
+
#
|
3172
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisionedProductAttribute AWS API Documentation
|
3173
|
+
#
|
3174
|
+
class ProvisionedProductAttribute < Struct.new(
|
3175
|
+
:name,
|
3176
|
+
:arn,
|
3177
|
+
:type,
|
3178
|
+
:id,
|
3179
|
+
:status,
|
3180
|
+
:status_message,
|
3181
|
+
:created_time,
|
3182
|
+
:idempotency_token,
|
3183
|
+
:last_record_id,
|
3184
|
+
:tags,
|
3185
|
+
:physical_id,
|
3186
|
+
:product_id,
|
3187
|
+
:provisioning_artifact_id,
|
3188
|
+
:user_arn,
|
3189
|
+
:user_arn_session)
|
3190
|
+
include Aws::Structure
|
3191
|
+
end
|
3192
|
+
|
3193
|
+
# Information about a provisioned product.
|
3194
|
+
#
|
3195
|
+
# @!attribute [rw] name
|
3196
|
+
# The user-friendly name of the provisioned product.
|
3197
|
+
# @return [String]
|
3198
|
+
#
|
3199
|
+
# @!attribute [rw] arn
|
3200
|
+
# The ARN of the provisioned product.
|
3201
|
+
# @return [String]
|
3202
|
+
#
|
3203
|
+
# @!attribute [rw] type
|
3204
|
+
# The type of provisioned product. The supported value is `CFN_STACK`.
|
3205
|
+
# @return [String]
|
3206
|
+
#
|
3207
|
+
# @!attribute [rw] id
|
3208
|
+
# The identifier of the provisioned product.
|
3209
|
+
# @return [String]
|
3210
|
+
#
|
3211
|
+
# @!attribute [rw] status
|
3212
|
+
# The current status of the provisioned product.
|
3213
|
+
#
|
3214
|
+
# * `AVAILABLE` - Stable state, ready to perform any operation. The
|
3215
|
+
# most recent operation succeeded and completed.
|
3216
|
+
#
|
3217
|
+
# * `UNDER_CHANGE` - Transitive state, operations performed might not
|
3218
|
+
# have valid results. Wait for an `AVAILABLE` status before
|
3219
|
+
# performing operations.
|
3220
|
+
#
|
3221
|
+
# * `TAINTED` - Stable state, ready to perform any operation. The
|
3222
|
+
# stack has completed the requested operation but is not exactly
|
3223
|
+
# what was requested. For example, a request to update to a new
|
3224
|
+
# version failed and the stack rolled back to the current version.
|
3225
|
+
#
|
3226
|
+
# * `ERROR` - An unexpected error occurred, the provisioned product
|
3227
|
+
# exists but the stack is not running. For example, CloudFormation
|
3228
|
+
# received a parameter value that was not valid and could not launch
|
3229
|
+
# the stack.
|
3230
|
+
# @return [String]
|
3231
|
+
#
|
3232
|
+
# @!attribute [rw] status_message
|
3233
|
+
# The current status message of the provisioned product.
|
3234
|
+
# @return [String]
|
3235
|
+
#
|
3236
|
+
# @!attribute [rw] created_time
|
3237
|
+
# The UTC time stamp of the creation time.
|
2748
3238
|
# @return [Time]
|
2749
3239
|
#
|
2750
3240
|
# @!attribute [rw] idempotency_token
|
@@ -2773,6 +3263,131 @@ module Aws::ServiceCatalog
|
|
2773
3263
|
include Aws::Structure
|
2774
3264
|
end
|
2775
3265
|
|
3266
|
+
# Information about a plan.
|
3267
|
+
#
|
3268
|
+
# @!attribute [rw] created_time
|
3269
|
+
# The UTC time stamp of the creation time.
|
3270
|
+
# @return [Time]
|
3271
|
+
#
|
3272
|
+
# @!attribute [rw] path_id
|
3273
|
+
# The path identifier of the product. This value is optional if the
|
3274
|
+
# product has a default path, and required if the product has more
|
3275
|
+
# than one path. To list the paths for a product, use ListLaunchPaths.
|
3276
|
+
# @return [String]
|
3277
|
+
#
|
3278
|
+
# @!attribute [rw] product_id
|
3279
|
+
# The product identifier.
|
3280
|
+
# @return [String]
|
3281
|
+
#
|
3282
|
+
# @!attribute [rw] plan_name
|
3283
|
+
# The name of the plan.
|
3284
|
+
# @return [String]
|
3285
|
+
#
|
3286
|
+
# @!attribute [rw] plan_id
|
3287
|
+
# The plan identifier.
|
3288
|
+
# @return [String]
|
3289
|
+
#
|
3290
|
+
# @!attribute [rw] provision_product_id
|
3291
|
+
# The product identifier.
|
3292
|
+
# @return [String]
|
3293
|
+
#
|
3294
|
+
# @!attribute [rw] provision_product_name
|
3295
|
+
# The user-friendly name of the provisioned product.
|
3296
|
+
# @return [String]
|
3297
|
+
#
|
3298
|
+
# @!attribute [rw] plan_type
|
3299
|
+
# The plan type.
|
3300
|
+
# @return [String]
|
3301
|
+
#
|
3302
|
+
# @!attribute [rw] provisioning_artifact_id
|
3303
|
+
# The identifier of the provisioning artifact.
|
3304
|
+
# @return [String]
|
3305
|
+
#
|
3306
|
+
# @!attribute [rw] status
|
3307
|
+
# The status.
|
3308
|
+
# @return [String]
|
3309
|
+
#
|
3310
|
+
# @!attribute [rw] updated_time
|
3311
|
+
# The time when the plan was last updated.
|
3312
|
+
# @return [Time]
|
3313
|
+
#
|
3314
|
+
# @!attribute [rw] notification_arns
|
3315
|
+
# Passed to CloudFormation. The SNS topic ARNs to which to publish
|
3316
|
+
# stack-related events.
|
3317
|
+
# @return [Array<String>]
|
3318
|
+
#
|
3319
|
+
# @!attribute [rw] provisioning_parameters
|
3320
|
+
# Parameters specified by the administrator that are required for
|
3321
|
+
# provisioning the product.
|
3322
|
+
# @return [Array<Types::UpdateProvisioningParameter>]
|
3323
|
+
#
|
3324
|
+
# @!attribute [rw] tags
|
3325
|
+
# One or more tags.
|
3326
|
+
# @return [Array<Types::Tag>]
|
3327
|
+
#
|
3328
|
+
# @!attribute [rw] status_message
|
3329
|
+
# The status message.
|
3330
|
+
# @return [String]
|
3331
|
+
#
|
3332
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisionedProductPlanDetails AWS API Documentation
|
3333
|
+
#
|
3334
|
+
class ProvisionedProductPlanDetails < Struct.new(
|
3335
|
+
:created_time,
|
3336
|
+
:path_id,
|
3337
|
+
:product_id,
|
3338
|
+
:plan_name,
|
3339
|
+
:plan_id,
|
3340
|
+
:provision_product_id,
|
3341
|
+
:provision_product_name,
|
3342
|
+
:plan_type,
|
3343
|
+
:provisioning_artifact_id,
|
3344
|
+
:status,
|
3345
|
+
:updated_time,
|
3346
|
+
:notification_arns,
|
3347
|
+
:provisioning_parameters,
|
3348
|
+
:tags,
|
3349
|
+
:status_message)
|
3350
|
+
include Aws::Structure
|
3351
|
+
end
|
3352
|
+
|
3353
|
+
# Summary information about a plan.
|
3354
|
+
#
|
3355
|
+
# @!attribute [rw] plan_name
|
3356
|
+
# The name of the plan.
|
3357
|
+
# @return [String]
|
3358
|
+
#
|
3359
|
+
# @!attribute [rw] plan_id
|
3360
|
+
# The plan identifier.
|
3361
|
+
# @return [String]
|
3362
|
+
#
|
3363
|
+
# @!attribute [rw] provision_product_id
|
3364
|
+
# The product identifier.
|
3365
|
+
# @return [String]
|
3366
|
+
#
|
3367
|
+
# @!attribute [rw] provision_product_name
|
3368
|
+
# The user-friendly name of the provisioned product.
|
3369
|
+
# @return [String]
|
3370
|
+
#
|
3371
|
+
# @!attribute [rw] plan_type
|
3372
|
+
# The plan type.
|
3373
|
+
# @return [String]
|
3374
|
+
#
|
3375
|
+
# @!attribute [rw] provisioning_artifact_id
|
3376
|
+
# The identifier of the provisioning artifact.
|
3377
|
+
# @return [String]
|
3378
|
+
#
|
3379
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisionedProductPlanSummary AWS API Documentation
|
3380
|
+
#
|
3381
|
+
class ProvisionedProductPlanSummary < Struct.new(
|
3382
|
+
:plan_name,
|
3383
|
+
:plan_id,
|
3384
|
+
:provision_product_id,
|
3385
|
+
:provision_product_name,
|
3386
|
+
:plan_type,
|
3387
|
+
:provisioning_artifact_id)
|
3388
|
+
include Aws::Structure
|
3389
|
+
end
|
3390
|
+
|
2776
3391
|
# Information about a provisioning artifact. A provisioning artifact is
|
2777
3392
|
# also known as a product version.
|
2778
3393
|
#
|
@@ -2789,7 +3404,7 @@ module Aws::ServiceCatalog
|
|
2789
3404
|
# @return [String]
|
2790
3405
|
#
|
2791
3406
|
# @!attribute [rw] created_time
|
2792
|
-
# The UTC
|
3407
|
+
# The UTC time stamp of the creation time.
|
2793
3408
|
# @return [Time]
|
2794
3409
|
#
|
2795
3410
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ProvisioningArtifact AWS API Documentation
|
@@ -2828,7 +3443,7 @@ module Aws::ServiceCatalog
|
|
2828
3443
|
# @return [String]
|
2829
3444
|
#
|
2830
3445
|
# @!attribute [rw] created_time
|
2831
|
-
# The UTC
|
3446
|
+
# The UTC time stamp of the creation time.
|
2832
3447
|
# @return [Time]
|
2833
3448
|
#
|
2834
3449
|
# @!attribute [rw] active
|
@@ -2956,7 +3571,7 @@ module Aws::ServiceCatalog
|
|
2956
3571
|
# @return [String]
|
2957
3572
|
#
|
2958
3573
|
# @!attribute [rw] created_time
|
2959
|
-
# The UTC
|
3574
|
+
# The UTC time stamp of the creation time.
|
2960
3575
|
# @return [Time]
|
2961
3576
|
#
|
2962
3577
|
# @!attribute [rw] provisioning_artifact_metadata
|
@@ -3030,7 +3645,7 @@ module Aws::ServiceCatalog
|
|
3030
3645
|
# @return [String]
|
3031
3646
|
#
|
3032
3647
|
# @!attribute [rw] created_time
|
3033
|
-
# The UTC
|
3648
|
+
# The UTC time stamp of the creation time.
|
3034
3649
|
# @return [Time]
|
3035
3650
|
#
|
3036
3651
|
# @!attribute [rw] updated_time
|
@@ -3042,7 +3657,7 @@ module Aws::ServiceCatalog
|
|
3042
3657
|
# @return [String]
|
3043
3658
|
#
|
3044
3659
|
# @!attribute [rw] record_type
|
3045
|
-
# The record type
|
3660
|
+
# The record type.
|
3046
3661
|
#
|
3047
3662
|
# * `PROVISION_PRODUCT`
|
3048
3663
|
#
|
@@ -3068,11 +3683,11 @@ module Aws::ServiceCatalog
|
|
3068
3683
|
# @return [String]
|
3069
3684
|
#
|
3070
3685
|
# @!attribute [rw] record_errors
|
3071
|
-
# The errors that occurred
|
3686
|
+
# The errors that occurred.
|
3072
3687
|
# @return [Array<Types::RecordError>]
|
3073
3688
|
#
|
3074
3689
|
# @!attribute [rw] record_tags
|
3075
|
-
#
|
3690
|
+
# One or more tags.
|
3076
3691
|
# @return [Array<Types::RecordTag>]
|
3077
3692
|
#
|
3078
3693
|
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/RecordDetail AWS API Documentation
|
@@ -3137,7 +3752,7 @@ module Aws::ServiceCatalog
|
|
3137
3752
|
include Aws::Structure
|
3138
3753
|
end
|
3139
3754
|
|
3140
|
-
#
|
3755
|
+
# Information about a tag, which is a key-value pair.
|
3141
3756
|
#
|
3142
3757
|
# @!attribute [rw] key
|
3143
3758
|
# The key for this tag.
|
@@ -3189,6 +3804,77 @@ module Aws::ServiceCatalog
|
|
3189
3804
|
#
|
3190
3805
|
class RejectPortfolioShareOutput < Aws::EmptyStructure; end
|
3191
3806
|
|
3807
|
+
# Information about a resource change that will occur when a plan is
|
3808
|
+
# executed.
|
3809
|
+
#
|
3810
|
+
# @!attribute [rw] action
|
3811
|
+
# The change action.
|
3812
|
+
# @return [String]
|
3813
|
+
#
|
3814
|
+
# @!attribute [rw] logical_resource_id
|
3815
|
+
# The ID of the resource, as defined in the CloudFormation template.
|
3816
|
+
# @return [String]
|
3817
|
+
#
|
3818
|
+
# @!attribute [rw] physical_resource_id
|
3819
|
+
# The ID of the resource, if it was already created.
|
3820
|
+
# @return [String]
|
3821
|
+
#
|
3822
|
+
# @!attribute [rw] resource_type
|
3823
|
+
# The type of resource.
|
3824
|
+
# @return [String]
|
3825
|
+
#
|
3826
|
+
# @!attribute [rw] replacement
|
3827
|
+
# If the change type is `Modify`, indicates whether the existing
|
3828
|
+
# resource is deleted and replaced with a new one.
|
3829
|
+
# @return [String]
|
3830
|
+
#
|
3831
|
+
# @!attribute [rw] scope
|
3832
|
+
# The change scope.
|
3833
|
+
# @return [Array<String>]
|
3834
|
+
#
|
3835
|
+
# @!attribute [rw] details
|
3836
|
+
# Information about the resource changes.
|
3837
|
+
# @return [Array<Types::ResourceChangeDetail>]
|
3838
|
+
#
|
3839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ResourceChange AWS API Documentation
|
3840
|
+
#
|
3841
|
+
class ResourceChange < Struct.new(
|
3842
|
+
:action,
|
3843
|
+
:logical_resource_id,
|
3844
|
+
:physical_resource_id,
|
3845
|
+
:resource_type,
|
3846
|
+
:replacement,
|
3847
|
+
:scope,
|
3848
|
+
:details)
|
3849
|
+
include Aws::Structure
|
3850
|
+
end
|
3851
|
+
|
3852
|
+
# Information about a change to a resource attribute.
|
3853
|
+
#
|
3854
|
+
# @!attribute [rw] target
|
3855
|
+
# Information about the resource attribute that will be modified.
|
3856
|
+
# @return [Types::ResourceTargetDefinition]
|
3857
|
+
#
|
3858
|
+
# @!attribute [rw] evaluation
|
3859
|
+
# For static evaluations, the value the resource attribute will change
|
3860
|
+
# and the new value is known. For dynamic evaluations, the value might
|
3861
|
+
# change, and any new value will be determined when the plan is
|
3862
|
+
# updated.
|
3863
|
+
# @return [String]
|
3864
|
+
#
|
3865
|
+
# @!attribute [rw] causing_entity
|
3866
|
+
# The ID of the entity that caused the change.
|
3867
|
+
# @return [String]
|
3868
|
+
#
|
3869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ResourceChangeDetail AWS API Documentation
|
3870
|
+
#
|
3871
|
+
class ResourceChangeDetail < Struct.new(
|
3872
|
+
:target,
|
3873
|
+
:evaluation,
|
3874
|
+
:causing_entity)
|
3875
|
+
include Aws::Structure
|
3876
|
+
end
|
3877
|
+
|
3192
3878
|
# Information about a resource.
|
3193
3879
|
#
|
3194
3880
|
# @!attribute [rw] id
|
@@ -3222,6 +3908,31 @@ module Aws::ServiceCatalog
|
|
3222
3908
|
include Aws::Structure
|
3223
3909
|
end
|
3224
3910
|
|
3911
|
+
# Information about a change to a resource attribute.
|
3912
|
+
#
|
3913
|
+
# @!attribute [rw] attribute
|
3914
|
+
# The attribute that will change.
|
3915
|
+
# @return [String]
|
3916
|
+
#
|
3917
|
+
# @!attribute [rw] name
|
3918
|
+
# If the attribute is `Properties`, the value is the name of the
|
3919
|
+
# property. Otherwise, the value is null.
|
3920
|
+
# @return [String]
|
3921
|
+
#
|
3922
|
+
# @!attribute [rw] requires_recreation
|
3923
|
+
# If the attribute is `Properties`, indicates whether a change to this
|
3924
|
+
# property causes the resource to be recreated.
|
3925
|
+
# @return [String]
|
3926
|
+
#
|
3927
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ResourceTargetDefinition AWS API Documentation
|
3928
|
+
#
|
3929
|
+
class ResourceTargetDefinition < Struct.new(
|
3930
|
+
:attribute,
|
3931
|
+
:name,
|
3932
|
+
:requires_recreation)
|
3933
|
+
include Aws::Structure
|
3934
|
+
end
|
3935
|
+
|
3225
3936
|
# @note When making an API call, you may pass ScanProvisionedProductsInput
|
3226
3937
|
# data as a hash:
|
3227
3938
|
#
|
@@ -3456,9 +4167,106 @@ module Aws::ServiceCatalog
|
|
3456
4167
|
include Aws::Structure
|
3457
4168
|
end
|
3458
4169
|
|
3459
|
-
#
|
3460
|
-
#
|
3461
|
-
#
|
4170
|
+
# @note When making an API call, you may pass SearchProvisionedProductsInput
|
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
|
+
# filters: {
|
4180
|
+
# "SearchQuery" => ["ProvisionedProductViewFilterValue"],
|
4181
|
+
# },
|
4182
|
+
# sort_by: "SortField",
|
4183
|
+
# sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
|
4184
|
+
# page_size: 1,
|
4185
|
+
# page_token: "PageToken",
|
4186
|
+
# }
|
4187
|
+
#
|
4188
|
+
# @!attribute [rw] accept_language
|
4189
|
+
# The language code.
|
4190
|
+
#
|
4191
|
+
# * `en` - English (default)
|
4192
|
+
#
|
4193
|
+
# * `jp` - Japanese
|
4194
|
+
#
|
4195
|
+
# * `zh` - Chinese
|
4196
|
+
# @return [String]
|
4197
|
+
#
|
4198
|
+
# @!attribute [rw] access_level_filter
|
4199
|
+
# The access level to use to obtain results. The default is `User`.
|
4200
|
+
# @return [Types::AccessLevelFilter]
|
4201
|
+
#
|
4202
|
+
# @!attribute [rw] filters
|
4203
|
+
# The search filters.
|
4204
|
+
#
|
4205
|
+
# When the key is `SearchQuery`, the searchable fields are `arn`,
|
4206
|
+
# `createdTime`, `id`, `lastRecordId`, `idempotencyToken`, `name`,
|
4207
|
+
# `physicalId`, `productId`, `provisioningArtifact`, `type`, `status`,
|
4208
|
+
# `tags`, `userArn`, and `userArnSession`.
|
4209
|
+
#
|
4210
|
+
# Example: `"SearchQuery":["status:AVAILABLE"]`
|
4211
|
+
# @return [Hash<String,Array<String>>]
|
4212
|
+
#
|
4213
|
+
# @!attribute [rw] sort_by
|
4214
|
+
# The sort field. If no value is specified, the results are not
|
4215
|
+
# sorted. The valid values are `arn`, `id`, `name`, and
|
4216
|
+
# `lastRecordId`.
|
4217
|
+
# @return [String]
|
4218
|
+
#
|
4219
|
+
# @!attribute [rw] sort_order
|
4220
|
+
# The sort order. If no value is specified, the results are not
|
4221
|
+
# sorted.
|
4222
|
+
# @return [String]
|
4223
|
+
#
|
4224
|
+
# @!attribute [rw] page_size
|
4225
|
+
# The maximum number of items to return with this call.
|
4226
|
+
# @return [Integer]
|
4227
|
+
#
|
4228
|
+
# @!attribute [rw] page_token
|
4229
|
+
# The page token for the next set of results. To retrieve the first
|
4230
|
+
# set of results, use null.
|
4231
|
+
# @return [String]
|
4232
|
+
#
|
4233
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/SearchProvisionedProductsInput AWS API Documentation
|
4234
|
+
#
|
4235
|
+
class SearchProvisionedProductsInput < Struct.new(
|
4236
|
+
:accept_language,
|
4237
|
+
:access_level_filter,
|
4238
|
+
:filters,
|
4239
|
+
:sort_by,
|
4240
|
+
:sort_order,
|
4241
|
+
:page_size,
|
4242
|
+
:page_token)
|
4243
|
+
include Aws::Structure
|
4244
|
+
end
|
4245
|
+
|
4246
|
+
# @!attribute [rw] provisioned_products
|
4247
|
+
# Information about the provisioned products.
|
4248
|
+
# @return [Array<Types::ProvisionedProductAttribute>]
|
4249
|
+
#
|
4250
|
+
# @!attribute [rw] total_results_count
|
4251
|
+
# The number of provisioned products found.
|
4252
|
+
# @return [Integer]
|
4253
|
+
#
|
4254
|
+
# @!attribute [rw] next_page_token
|
4255
|
+
# The page token to use to retrieve the next set of results. If there
|
4256
|
+
# are no additional results, this value is null.
|
4257
|
+
# @return [String]
|
4258
|
+
#
|
4259
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/SearchProvisionedProductsOutput AWS API Documentation
|
4260
|
+
#
|
4261
|
+
class SearchProvisionedProductsOutput < Struct.new(
|
4262
|
+
:provisioned_products,
|
4263
|
+
:total_results_count,
|
4264
|
+
:next_page_token)
|
4265
|
+
include Aws::Structure
|
4266
|
+
end
|
4267
|
+
|
4268
|
+
# Information about a tag. A tag is a key-value pair. Tags are
|
4269
|
+
# propagated to the resources created when provisioning a product.
|
3462
4270
|
#
|
3463
4271
|
# @note When making an API call, you may pass Tag
|
3464
4272
|
# data as a hash:
|
@@ -3902,7 +4710,7 @@ module Aws::ServiceCatalog
|
|
3902
4710
|
#
|
3903
4711
|
# @!attribute [rw] update_token
|
3904
4712
|
# The idempotency token that uniquely identifies the provisioning
|
3905
|
-
# update
|
4713
|
+
# update request.
|
3906
4714
|
#
|
3907
4715
|
# **A suitable default value is auto-generated.** You should normally
|
3908
4716
|
# not need to pass this option.
|