aws-sdk-partnercentralselling 1.2.0 → 1.4.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -257,11 +257,34 @@ module Aws::PartnerCentralSelling
257
257
  # Used when loading credentials from the shared credentials file
258
258
  # at HOME/.aws/credentials. When not specified, 'default' is used.
259
259
  #
260
+ # @option options [String] :request_checksum_calculation ("when_supported")
261
+ # Determines when a checksum will be calculated for request payloads. Values are:
262
+ #
263
+ # * `when_supported` - (default) When set, a checksum will be
264
+ # calculated for all request payloads of operations modeled with the
265
+ # `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
266
+ # `requestAlgorithmMember` is modeled.
267
+ # * `when_required` - When set, a checksum will only be calculated for
268
+ # request payloads of operations modeled with the `httpChecksum` trait where
269
+ # `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
270
+ # is modeled and supplied.
271
+ #
260
272
  # @option options [Integer] :request_min_compression_size_bytes (10240)
261
273
  # The minimum size in bytes that triggers compression for request
262
274
  # bodies. The value must be non-negative integer value between 0
263
275
  # and 10485780 bytes inclusive.
264
276
  #
277
+ # @option options [String] :response_checksum_validation ("when_supported")
278
+ # Determines when checksum validation will be performed on response payloads. Values are:
279
+ #
280
+ # * `when_supported` - (default) When set, checksum validation is performed on all
281
+ # response payloads of operations modeled with the `httpChecksum` trait where
282
+ # `responseAlgorithms` is modeled, except when no modeled checksum algorithms
283
+ # are supported.
284
+ # * `when_required` - When set, checksum validation is not performed on
285
+ # response payloads of operations unless the checksum algorithm is supported and
286
+ # the `requestValidationModeMember` member is set to `ENABLED`.
287
+ #
265
288
  # @option options [Proc] :retry_backoff
266
289
  # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
267
290
  # This option is only used in the `legacy` retry mode.
@@ -454,6 +477,41 @@ module Aws::PartnerCentralSelling
454
477
 
455
478
  # @!group API Operations
456
479
 
480
+ # Use the `AcceptEngagementInvitation` action to accept an engagement
481
+ # invitation shared by AWS. Accepting the invitation indicates your
482
+ # willingness to participate in the engagement, granting you access to
483
+ # all engagement-related data.
484
+ #
485
+ # @option params [required, String] :catalog
486
+ # The `CatalogType` parameter specifies the catalog associated with the
487
+ # engagement invitation. Accepted values are `AWS` and `Sandbox`, which
488
+ # determine the environment in which the engagement invitation is
489
+ # managed.
490
+ #
491
+ # @option params [required, String] :identifier
492
+ # The `Identifier` parameter in the `AcceptEngagementInvitationRequest`
493
+ # specifies the unique identifier of the `EngagementInvitation` to be
494
+ # accepted. Providing the correct identifier ensures that the intended
495
+ # invitation is accepted.
496
+ #
497
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
498
+ #
499
+ # @example Request syntax with placeholder values
500
+ #
501
+ # resp = client.accept_engagement_invitation({
502
+ # catalog: "CatalogIdentifier", # required
503
+ # identifier: "EngagementInvitationArnOrIdentifier", # required
504
+ # })
505
+ #
506
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/AcceptEngagementInvitation AWS API Documentation
507
+ #
508
+ # @overload accept_engagement_invitation(params = {})
509
+ # @param [Hash] params ({})
510
+ def accept_engagement_invitation(params = {}, options = {})
511
+ req = build_request(:accept_engagement_invitation, params)
512
+ req.send_request(options)
513
+ end
514
+
457
515
  # Enables you to reassign an existing `Opportunity` to another user
458
516
  # within your Partner Central account. The specified user receives the
459
517
  # opportunity, and it appears on their Partner Central dashboard,
@@ -598,6 +656,196 @@ module Aws::PartnerCentralSelling
598
656
  req.send_request(options)
599
657
  end
600
658
 
659
+ # The `CreateEngagement` action allows you to create an `Engagement`,
660
+ # which serves as a collaborative space between different parties such
661
+ # as AWS Partners and AWS Sellers. This action automatically adds the
662
+ # caller's AWS account as an active member of the newly created
663
+ # `Engagement`.
664
+ #
665
+ # @option params [required, String] :catalog
666
+ # The `CreateEngagementRequest$Catalog` parameter specifies the catalog
667
+ # related to the engagement. Accepted values are `AWS` and `Sandbox`,
668
+ # which determine the environment in which the engagement is managed.
669
+ #
670
+ # @option params [required, String] :client_token
671
+ # The `CreateEngagementRequest$ClientToken` parameter specifies a
672
+ # unique, case-sensitive identifier to ensure that the request is
673
+ # handled exactly once. The value must not exceed sixty-four
674
+ # alphanumeric characters.
675
+ #
676
+ # **A suitable default value is auto-generated.** You should normally
677
+ # not need to pass this option.**
678
+ #
679
+ # @option params [Array<Types::EngagementContextDetails>] :contexts
680
+ # The `Contexts` field is a required array of objects, with a maximum of
681
+ # 5 contexts allowed, specifying detailed information about customer
682
+ # projects associated with the Engagement. Each context object contains
683
+ # a `Type` field indicating the context type, which must be
684
+ # `CustomerProject` in this version, and a `Payload` field containing
685
+ # the `CustomerProject` details. The `CustomerProject` object is
686
+ # composed of two main components: `Customer` and `Project`. The
687
+ # `Customer` object includes information such as `CompanyName`,
688
+ # `WebsiteUrl`, `Industry`, and `CountryCode`, providing essential
689
+ # details about the customer. The `Project` object contains `Title`,
690
+ # `BusinessProblem`, and `TargetCompletionDate`, offering insights into
691
+ # the specific project associated with the customer. This structure
692
+ # allows comprehensive context to be included within the Engagement,
693
+ # facilitating effective collaboration between parties by providing
694
+ # relevant customer and project information.
695
+ #
696
+ # @option params [required, String] :description
697
+ # Provides a description of the `Engagement`.
698
+ #
699
+ # @option params [required, String] :title
700
+ # Specifies the title of the `Engagement`.
701
+ #
702
+ # @return [Types::CreateEngagementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
703
+ #
704
+ # * {Types::CreateEngagementResponse#arn #arn} => String
705
+ # * {Types::CreateEngagementResponse#id #id} => String
706
+ #
707
+ # @example Request syntax with placeholder values
708
+ #
709
+ # resp = client.create_engagement({
710
+ # catalog: "CatalogIdentifier", # required
711
+ # client_token: "CreateEngagementRequestClientTokenString", # required
712
+ # contexts: [
713
+ # {
714
+ # payload: {
715
+ # customer_project: {
716
+ # customer: {
717
+ # company_name: "CompanyName", # required
718
+ # country_code: "US", # required, accepts US, AF, AX, AL, DZ, AS, AD, AO, AI, AQ, AG, AR, AM, AW, AU, AT, AZ, BS, BH, BD, BB, BY, BE, BZ, BJ, BM, BT, BO, BQ, BA, BW, BV, BR, IO, BN, BG, BF, BI, KH, CM, CA, CV, KY, CF, TD, CL, CN, CX, CC, CO, KM, CG, CK, CR, CI, HR, CU, CW, CY, CZ, CD, DK, DJ, DM, DO, EC, EG, SV, GQ, ER, EE, ET, FK, FO, FJ, FI, FR, GF, PF, TF, GA, GM, GE, DE, GH, GI, GR, GL, GD, GP, GU, GT, GG, GN, GW, GY, HT, HM, VA, HN, HK, HU, IS, IN, ID, IR, IQ, IE, IM, IL, IT, JM, JP, JE, JO, KZ, KE, KI, KR, KW, KG, LA, LV, LB, LS, LR, LY, LI, LT, LU, MO, MK, MG, MW, MY, MV, ML, MT, MH, MQ, MR, MU, YT, MX, FM, MD, MC, MN, ME, MS, MA, MZ, MM, NA, NR, NP, NL, AN, NC, NZ, NI, NE, NG, NU, NF, MP, NO, OM, PK, PW, PS, PA, PG, PY, PE, PH, PN, PL, PT, PR, QA, RE, RO, RU, RW, BL, SH, KN, LC, MF, PM, VC, WS, SM, ST, SA, SN, RS, SC, SL, SG, SX, SK, SI, SB, SO, ZA, GS, SS, ES, LK, SD, SR, SJ, SZ, SE, CH, SY, TW, TJ, TZ, TH, TL, TG, TK, TO, TT, TN, TR, TM, TC, TV, UG, UA, AE, GB, UM, UY, UZ, VU, VE, VN, VG, VI, WF, EH, YE, ZM, ZW
719
+ # industry: "Aerospace", # required, accepts Aerospace, Agriculture, Automotive, Computers and Electronics, Consumer Goods, Education, Energy - Oil and Gas, Energy - Power and Utilities, Financial Services, Gaming, Government, Healthcare, Hospitality, Life Sciences, Manufacturing, Marketing and Advertising, Media and Entertainment, Mining, Non-Profit Organization, Professional Services, Real Estate and Construction, Retail, Software and Internet, Telecommunications, Transportation and Logistics, Travel, Wholesale and Distribution, Other
720
+ # website_url: "CompanyWebsiteUrl", # required
721
+ # },
722
+ # project: {
723
+ # business_problem: "EngagementCustomerBusinessProblem", # required
724
+ # target_completion_date: "EngagementCustomerProjectDetailsTargetCompletionDateString", # required
725
+ # title: "EngagementCustomerProjectTitle", # required
726
+ # },
727
+ # },
728
+ # },
729
+ # type: "CustomerProject", # required, accepts CustomerProject
730
+ # },
731
+ # ],
732
+ # description: "EngagementDescription", # required
733
+ # title: "EngagementTitle", # required
734
+ # })
735
+ #
736
+ # @example Response structure
737
+ #
738
+ # resp.arn #=> String
739
+ # resp.id #=> String
740
+ #
741
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/CreateEngagement AWS API Documentation
742
+ #
743
+ # @overload create_engagement(params = {})
744
+ # @param [Hash] params ({})
745
+ def create_engagement(params = {}, options = {})
746
+ req = build_request(:create_engagement, params)
747
+ req.send_request(options)
748
+ end
749
+
750
+ # This action creates an invitation from a sender to a single receiver
751
+ # to join an engagement.
752
+ #
753
+ # @option params [required, String] :catalog
754
+ # Specifies the catalog related to the engagement. Accepted values are
755
+ # `AWS` and `Sandbox`, which determine the environment in which the
756
+ # engagement is managed.
757
+ #
758
+ # @option params [required, String] :client_token
759
+ # Specifies a unique, client-generated UUID to ensure that the request
760
+ # is handled exactly once. This token helps prevent duplicate invitation
761
+ # creations.
762
+ #
763
+ # **A suitable default value is auto-generated.** You should normally
764
+ # not need to pass this option.**
765
+ #
766
+ # @option params [required, String] :engagement_identifier
767
+ # The unique identifier of the `Engagement` associated with the
768
+ # invitation. This parameter ensures the invitation is created within
769
+ # the correct `Engagement` context.
770
+ #
771
+ # @option params [required, Types::Invitation] :invitation
772
+ # The `Invitation` object all information necessary to initiate an
773
+ # engagement invitation to a partner. It contains a personalized message
774
+ # from the sender, the invitation's receiver, and a payload. The
775
+ # `Payload` can be the `OpportunityInvitation`, which includes detailed
776
+ # structures for sender contacts, partner responsibilities, customer
777
+ # information, and project details.
778
+ #
779
+ # @return [Types::CreateEngagementInvitationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
780
+ #
781
+ # * {Types::CreateEngagementInvitationResponse#arn #arn} => String
782
+ # * {Types::CreateEngagementInvitationResponse#id #id} => String
783
+ #
784
+ # @example Request syntax with placeholder values
785
+ #
786
+ # resp = client.create_engagement_invitation({
787
+ # catalog: "CatalogIdentifier", # required
788
+ # client_token: "ClientToken", # required
789
+ # engagement_identifier: "EngagementIdentifier", # required
790
+ # invitation: { # required
791
+ # message: "InvitationMessage", # required
792
+ # payload: { # required
793
+ # opportunity_invitation: {
794
+ # customer: { # required
795
+ # company_name: "CompanyName", # required
796
+ # country_code: "US", # required, accepts US, AF, AX, AL, DZ, AS, AD, AO, AI, AQ, AG, AR, AM, AW, AU, AT, AZ, BS, BH, BD, BB, BY, BE, BZ, BJ, BM, BT, BO, BQ, BA, BW, BV, BR, IO, BN, BG, BF, BI, KH, CM, CA, CV, KY, CF, TD, CL, CN, CX, CC, CO, KM, CG, CK, CR, CI, HR, CU, CW, CY, CZ, CD, DK, DJ, DM, DO, EC, EG, SV, GQ, ER, EE, ET, FK, FO, FJ, FI, FR, GF, PF, TF, GA, GM, GE, DE, GH, GI, GR, GL, GD, GP, GU, GT, GG, GN, GW, GY, HT, HM, VA, HN, HK, HU, IS, IN, ID, IR, IQ, IE, IM, IL, IT, JM, JP, JE, JO, KZ, KE, KI, KR, KW, KG, LA, LV, LB, LS, LR, LY, LI, LT, LU, MO, MK, MG, MW, MY, MV, ML, MT, MH, MQ, MR, MU, YT, MX, FM, MD, MC, MN, ME, MS, MA, MZ, MM, NA, NR, NP, NL, AN, NC, NZ, NI, NE, NG, NU, NF, MP, NO, OM, PK, PW, PS, PA, PG, PY, PE, PH, PN, PL, PT, PR, QA, RE, RO, RU, RW, BL, SH, KN, LC, MF, PM, VC, WS, SM, ST, SA, SN, RS, SC, SL, SG, SX, SK, SI, SB, SO, ZA, GS, SS, ES, LK, SD, SR, SJ, SZ, SE, CH, SY, TW, TJ, TZ, TH, TL, TG, TK, TO, TT, TN, TR, TM, TC, TV, UG, UA, AE, GB, UM, UY, UZ, VU, VE, VN, VG, VI, WF, EH, YE, ZM, ZW
797
+ # industry: "Aerospace", # required, accepts Aerospace, Agriculture, Automotive, Computers and Electronics, Consumer Goods, Education, Energy - Oil and Gas, Energy - Power and Utilities, Financial Services, Gaming, Government, Healthcare, Hospitality, Life Sciences, Manufacturing, Marketing and Advertising, Media and Entertainment, Mining, Non-Profit Organization, Professional Services, Real Estate and Construction, Retail, Software and Internet, Telecommunications, Transportation and Logistics, Travel, Wholesale and Distribution, Other
798
+ # website_url: "CompanyWebsiteUrl", # required
799
+ # },
800
+ # project: { # required
801
+ # business_problem: "EngagementCustomerBusinessProblem", # required
802
+ # expected_customer_spend: [ # required
803
+ # {
804
+ # amount: "String", # required
805
+ # currency_code: "USD", # required, accepts USD, EUR, GBP, AUD, CAD, CNY, NZD, INR, JPY, CHF, SEK, AED, AFN, ALL, AMD, ANG, AOA, ARS, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CDF, CHE, CHW, CLF, CLP, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, FJD, FKP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, IRR, ISK, JMD, JOD, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USN, UYI, UYU, UZS, VEF, VND, VUV, WST, XAF, XCD, XDR, XOF, XPF, XSU, XUA, YER, ZAR, ZMW, ZWL
806
+ # estimation_url: "WebsiteUrl",
807
+ # frequency: "Monthly", # required, accepts Monthly
808
+ # target_company: "ExpectedCustomerSpendTargetCompanyString", # required
809
+ # },
810
+ # ],
811
+ # target_completion_date: "Date", # required
812
+ # title: "ProjectDetailsTitleString", # required
813
+ # },
814
+ # receiver_responsibilities: ["Distributor"], # required, accepts Distributor, Reseller, Hardware Partner, Managed Service Provider, Software Partner, Services Partner, Training Partner, Co-Sell Facilitator, Facilitator
815
+ # sender_contacts: [
816
+ # {
817
+ # business_title: "JobTitle",
818
+ # email: "SenderContactEmail", # required
819
+ # first_name: "Name",
820
+ # last_name: "Name",
821
+ # phone: "PhoneNumber",
822
+ # },
823
+ # ],
824
+ # },
825
+ # },
826
+ # receiver: { # required
827
+ # account: {
828
+ # alias: "Alias",
829
+ # aws_account_id: "AwsAccount", # required
830
+ # },
831
+ # },
832
+ # },
833
+ # })
834
+ #
835
+ # @example Response structure
836
+ #
837
+ # resp.arn #=> String
838
+ # resp.id #=> String
839
+ #
840
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/CreateEngagementInvitation AWS API Documentation
841
+ #
842
+ # @overload create_engagement_invitation(params = {})
843
+ # @param [Hash] params ({})
844
+ def create_engagement_invitation(params = {}, options = {})
845
+ req = build_request(:create_engagement_invitation, params)
846
+ req.send_request(options)
847
+ end
848
+
601
849
  # Creates an `Opportunity` record in Partner Central. Use this operation
602
850
  # to create a potential business opportunity for submission to Amazon
603
851
  # Web Services. Creating an opportunity sets `Lifecycle.ReviewStatus` to
@@ -610,8 +858,8 @@ module Aws::PartnerCentralSelling
610
858
  # 2. To associate a solution with the opportunity, use
611
859
  # `AssociateOpportunity`.
612
860
  #
613
- # 3. To submit the opportunity, use
614
- # `StartEngagementFromOpportunityTask`.
861
+ # 3. To start the engagement with AWS, use
862
+ # `StartEngagementFromOpportunity`.
615
863
  #
616
864
  # After submission, you can't edit the opportunity until the review is
617
865
  # complete. But opportunities in the `Pending Submission` state must
@@ -739,13 +987,6 @@ module Aws::PartnerCentralSelling
739
987
  # public sector where the partner needs Amazon Web Services RFx
740
988
  # support.
741
989
  #
742
- # * Do Not Need Support from AWS Sales Rep: Indicates that a partner
743
- # doesn't need support from an Amazon Web Services sales
744
- # representative, and the partner solely manages the opportunity.
745
- # It's possible to request coselling support on these opportunities
746
- # at any stage during their lifecycles. This is also known as a
747
- # for-visibility-only (FVO) opportunity.
748
- #
749
990
  # @option params [Types::Project] :project
750
991
  # An object that contains project details for the `Opportunity`.
751
992
  #
@@ -837,6 +1078,7 @@ module Aws::PartnerCentralSelling
837
1078
  # {
838
1079
  # amount: "String", # required
839
1080
  # currency_code: "USD", # required, accepts USD, EUR, GBP, AUD, CAD, CNY, NZD, INR, JPY, CHF, SEK, AED, AFN, ALL, AMD, ANG, AOA, ARS, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CDF, CHE, CHW, CLF, CLP, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, FJD, FKP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, IRR, ISK, JMD, JOD, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USN, UYI, UYU, UZS, VEF, VND, VUV, WST, XAF, XCD, XDR, XOF, XPF, XSU, XUA, YER, ZAR, ZMW, ZWL
1081
+ # estimation_url: "WebsiteUrl",
840
1082
  # frequency: "Monthly", # required, accepts Monthly
841
1083
  # target_company: "ExpectedCustomerSpendTargetCompanyString", # required
842
1084
  # },
@@ -873,6 +1115,175 @@ module Aws::PartnerCentralSelling
873
1115
  req.send_request(options)
874
1116
  end
875
1117
 
1118
+ # This action allows you to create an immutable snapshot of a specific
1119
+ # resource, such as an opportunity, within the context of an engagement.
1120
+ # The snapshot captures a subset of the resource's data based on the
1121
+ # schema defined by the provided template.
1122
+ #
1123
+ # @option params [required, String] :catalog
1124
+ # Specifies the catalog where the snapshot is created. Valid values are
1125
+ # `AWS` and `Sandbox`.
1126
+ #
1127
+ # @option params [required, String] :client_token
1128
+ # Specifies a unique, client-generated UUID to ensure that the request
1129
+ # is handled exactly once. This token helps prevent duplicate snapshot
1130
+ # creations.
1131
+ #
1132
+ # **A suitable default value is auto-generated.** You should normally
1133
+ # not need to pass this option.**
1134
+ #
1135
+ # @option params [required, String] :engagement_identifier
1136
+ # The unique identifier of the engagement associated with this snapshot.
1137
+ # This field links the snapshot to a specific engagement context.
1138
+ #
1139
+ # @option params [required, String] :resource_identifier
1140
+ # The unique identifier of the specific resource to be snapshotted. The
1141
+ # format and constraints of this identifier depend on the `ResourceType`
1142
+ # specified. For example: For `Opportunity` type, it will be an
1143
+ # opportunity ID.
1144
+ #
1145
+ # @option params [required, String] :resource_snapshot_template_identifier
1146
+ # The name of the template that defines the schema for the snapshot.
1147
+ # This template determines which subset of the resource data will be
1148
+ # included in the snapshot. Must correspond to an existing and valid
1149
+ # template for the specified `ResourceType`.
1150
+ #
1151
+ # @option params [required, String] :resource_type
1152
+ # Specifies the type of resource for which the snapshot is being
1153
+ # created. This field determines the structure and content of the
1154
+ # snapshot. Must be one of the supported resource types, such as:
1155
+ # `Opportunity`.
1156
+ #
1157
+ # @return [Types::CreateResourceSnapshotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1158
+ #
1159
+ # * {Types::CreateResourceSnapshotResponse#arn #arn} => String
1160
+ # * {Types::CreateResourceSnapshotResponse#revision #revision} => Integer
1161
+ #
1162
+ # @example Request syntax with placeholder values
1163
+ #
1164
+ # resp = client.create_resource_snapshot({
1165
+ # catalog: "CatalogIdentifier", # required
1166
+ # client_token: "CreateResourceSnapshotRequestClientTokenString", # required
1167
+ # engagement_identifier: "EngagementIdentifier", # required
1168
+ # resource_identifier: "ResourceIdentifier", # required
1169
+ # resource_snapshot_template_identifier: "ResourceTemplateName", # required
1170
+ # resource_type: "Opportunity", # required, accepts Opportunity
1171
+ # })
1172
+ #
1173
+ # @example Response structure
1174
+ #
1175
+ # resp.arn #=> String
1176
+ # resp.revision #=> Integer
1177
+ #
1178
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/CreateResourceSnapshot AWS API Documentation
1179
+ #
1180
+ # @overload create_resource_snapshot(params = {})
1181
+ # @param [Hash] params ({})
1182
+ def create_resource_snapshot(params = {}, options = {})
1183
+ req = build_request(:create_resource_snapshot, params)
1184
+ req.send_request(options)
1185
+ end
1186
+
1187
+ # Use this action to create a job to generate a snapshot of the
1188
+ # specified resource within an engagement. It initiates an asynchronous
1189
+ # process to create a resource snapshot. The job creates a new snapshot
1190
+ # only if the resource state has changed, adhering to the same access
1191
+ # control and immutability rules as direct snapshot creation.
1192
+ #
1193
+ # @option params [required, String] :catalog
1194
+ # Specifies the catalog in which to create the snapshot job. Valid
1195
+ # values are `AWS` and ` Sandbox`.
1196
+ #
1197
+ # @option params [required, String] :client_token
1198
+ # A client-generated UUID used for idempotency check. The token helps
1199
+ # prevent duplicate job creations.
1200
+ #
1201
+ # **A suitable default value is auto-generated.** You should normally
1202
+ # not need to pass this option.**
1203
+ #
1204
+ # @option params [required, String] :engagement_identifier
1205
+ # Specifies the identifier of the engagement associated with the
1206
+ # resource to be snapshotted.
1207
+ #
1208
+ # @option params [required, String] :resource_identifier
1209
+ # Specifies the identifier of the specific resource to be snapshotted.
1210
+ # The format depends on the ` ResourceType`.
1211
+ #
1212
+ # @option params [required, String] :resource_snapshot_template_identifier
1213
+ # Specifies the name of the template that defines the schema for the
1214
+ # snapshot.
1215
+ #
1216
+ # @option params [required, String] :resource_type
1217
+ # The type of resource for which the snapshot job is being created. Must
1218
+ # be one of the supported resource types i.e. `Opportunity`
1219
+ #
1220
+ # @option params [Array<Types::Tag>] :tags
1221
+ # A list of objects specifying each tag name and value.
1222
+ #
1223
+ # @return [Types::CreateResourceSnapshotJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1224
+ #
1225
+ # * {Types::CreateResourceSnapshotJobResponse#arn #arn} => String
1226
+ # * {Types::CreateResourceSnapshotJobResponse#id #id} => String
1227
+ #
1228
+ # @example Request syntax with placeholder values
1229
+ #
1230
+ # resp = client.create_resource_snapshot_job({
1231
+ # catalog: "CatalogIdentifier", # required
1232
+ # client_token: "CreateResourceSnapshotJobRequestClientTokenString", # required
1233
+ # engagement_identifier: "EngagementIdentifier", # required
1234
+ # resource_identifier: "ResourceIdentifier", # required
1235
+ # resource_snapshot_template_identifier: "ResourceTemplateName", # required
1236
+ # resource_type: "Opportunity", # required, accepts Opportunity
1237
+ # tags: [
1238
+ # {
1239
+ # key: "TagKey", # required
1240
+ # value: "TagValue", # required
1241
+ # },
1242
+ # ],
1243
+ # })
1244
+ #
1245
+ # @example Response structure
1246
+ #
1247
+ # resp.arn #=> String
1248
+ # resp.id #=> String
1249
+ #
1250
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/CreateResourceSnapshotJob AWS API Documentation
1251
+ #
1252
+ # @overload create_resource_snapshot_job(params = {})
1253
+ # @param [Hash] params ({})
1254
+ def create_resource_snapshot_job(params = {}, options = {})
1255
+ req = build_request(:create_resource_snapshot_job, params)
1256
+ req.send_request(options)
1257
+ end
1258
+
1259
+ # Use this action to deletes a previously created resource snapshot job.
1260
+ # The job must be in a stopped state before it can be deleted.
1261
+ #
1262
+ # @option params [required, String] :catalog
1263
+ # Specifies the catalog from which to delete the snapshot job. Valid
1264
+ # values are `AWS` and `Sandbox`.
1265
+ #
1266
+ # @option params [required, String] :resource_snapshot_job_identifier
1267
+ # The unique identifier of the resource snapshot job to be deleted.
1268
+ #
1269
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1270
+ #
1271
+ # @example Request syntax with placeholder values
1272
+ #
1273
+ # resp = client.delete_resource_snapshot_job({
1274
+ # catalog: "CatalogIdentifier", # required
1275
+ # resource_snapshot_job_identifier: "ResourceSnapshotJobIdentifier", # required
1276
+ # })
1277
+ #
1278
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/DeleteResourceSnapshotJob AWS API Documentation
1279
+ #
1280
+ # @overload delete_resource_snapshot_job(params = {})
1281
+ # @param [Hash] params ({})
1282
+ def delete_resource_snapshot_job(params = {}, options = {})
1283
+ req = build_request(:delete_resource_snapshot_job, params)
1284
+ req.send_request(options)
1285
+ end
1286
+
876
1287
  # Allows you to remove an existing association between an `Opportunity`
877
1288
  # and related entities, such as a Partner Solution, Amazon Web Services
878
1289
  # product, or an Amazon Web Services Marketplace offer. This operation
@@ -1024,6 +1435,7 @@ module Aws::PartnerCentralSelling
1024
1435
  # resp.project.expected_customer_spend #=> Array
1025
1436
  # resp.project.expected_customer_spend[0].amount #=> String
1026
1437
  # resp.project.expected_customer_spend[0].currency_code #=> String, one of "USD", "EUR", "GBP", "AUD", "CAD", "CNY", "NZD", "INR", "JPY", "CHF", "SEK", "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOV", "BRL", "BSD", "BTN", "BWP", "BYN", "BZD", "CDF", "CHE", "CHW", "CLF", "CLP", "COP", "COU", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "FJD", "FKP", "GEL", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IQD", "IRR", "ISK", "JMD", "JOD", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRU", "MUR", "MVR", "MWK", "MXN", "MXV", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SGD", "SHP", "SLL", "SOS", "SRD", "SSP", "STN", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "USN", "UYI", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "XSU", "XUA", "YER", "ZAR", "ZMW", "ZWL"
1438
+ # resp.project.expected_customer_spend[0].estimation_url #=> String
1027
1439
  # resp.project.expected_customer_spend[0].frequency #=> String, one of "Monthly"
1028
1440
  # resp.project.expected_customer_spend[0].target_company #=> String
1029
1441
  # resp.related_entity_ids.aws_products #=> Array
@@ -1042,6 +1454,62 @@ module Aws::PartnerCentralSelling
1042
1454
  req.send_request(options)
1043
1455
  end
1044
1456
 
1457
+ # Use this action to retrieve the engagement record for a given
1458
+ # `EngagementIdentifier`.
1459
+ #
1460
+ # @option params [required, String] :catalog
1461
+ # Specifies the catalog related to the engagement request. Valid values
1462
+ # are `AWS` and `Sandbox`.
1463
+ #
1464
+ # @option params [required, String] :identifier
1465
+ # Specifies the identifier of the Engagement record to retrieve.
1466
+ #
1467
+ # @return [Types::GetEngagementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1468
+ #
1469
+ # * {Types::GetEngagementResponse#arn #arn} => String
1470
+ # * {Types::GetEngagementResponse#contexts #contexts} => Array&lt;Types::EngagementContextDetails&gt;
1471
+ # * {Types::GetEngagementResponse#created_at #created_at} => Time
1472
+ # * {Types::GetEngagementResponse#created_by #created_by} => String
1473
+ # * {Types::GetEngagementResponse#description #description} => String
1474
+ # * {Types::GetEngagementResponse#id #id} => String
1475
+ # * {Types::GetEngagementResponse#member_count #member_count} => Integer
1476
+ # * {Types::GetEngagementResponse#title #title} => String
1477
+ #
1478
+ # @example Request syntax with placeholder values
1479
+ #
1480
+ # resp = client.get_engagement({
1481
+ # catalog: "CatalogIdentifier", # required
1482
+ # identifier: "EngagementArnOrIdentifier", # required
1483
+ # })
1484
+ #
1485
+ # @example Response structure
1486
+ #
1487
+ # resp.arn #=> String
1488
+ # resp.contexts #=> Array
1489
+ # resp.contexts[0].payload.customer_project.customer.company_name #=> String
1490
+ # resp.contexts[0].payload.customer_project.customer.country_code #=> String, one of "US", "AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "CD", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"
1491
+ # resp.contexts[0].payload.customer_project.customer.industry #=> String, one of "Aerospace", "Agriculture", "Automotive", "Computers and Electronics", "Consumer Goods", "Education", "Energy - Oil and Gas", "Energy - Power and Utilities", "Financial Services", "Gaming", "Government", "Healthcare", "Hospitality", "Life Sciences", "Manufacturing", "Marketing and Advertising", "Media and Entertainment", "Mining", "Non-Profit Organization", "Professional Services", "Real Estate and Construction", "Retail", "Software and Internet", "Telecommunications", "Transportation and Logistics", "Travel", "Wholesale and Distribution", "Other"
1492
+ # resp.contexts[0].payload.customer_project.customer.website_url #=> String
1493
+ # resp.contexts[0].payload.customer_project.project.business_problem #=> String
1494
+ # resp.contexts[0].payload.customer_project.project.target_completion_date #=> String
1495
+ # resp.contexts[0].payload.customer_project.project.title #=> String
1496
+ # resp.contexts[0].type #=> String, one of "CustomerProject"
1497
+ # resp.created_at #=> Time
1498
+ # resp.created_by #=> String
1499
+ # resp.description #=> String
1500
+ # resp.id #=> String
1501
+ # resp.member_count #=> Integer
1502
+ # resp.title #=> String
1503
+ #
1504
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/GetEngagement AWS API Documentation
1505
+ #
1506
+ # @overload get_engagement(params = {})
1507
+ # @param [Hash] params ({})
1508
+ def get_engagement(params = {}, options = {})
1509
+ req = build_request(:get_engagement, params)
1510
+ req.send_request(options)
1511
+ end
1512
+
1045
1513
  # Retrieves the details of an engagement invitation shared by AWS with a
1046
1514
  # partner. The information includes aspects such as customer, project
1047
1515
  # details, and lifecycle information. To connect an engagement
@@ -1061,10 +1529,14 @@ module Aws::PartnerCentralSelling
1061
1529
  #
1062
1530
  # * {Types::GetEngagementInvitationResponse#arn #arn} => String
1063
1531
  # * {Types::GetEngagementInvitationResponse#catalog #catalog} => String
1532
+ # * {Types::GetEngagementInvitationResponse#engagement_description #engagement_description} => String
1533
+ # * {Types::GetEngagementInvitationResponse#engagement_id #engagement_id} => String
1064
1534
  # * {Types::GetEngagementInvitationResponse#engagement_title #engagement_title} => String
1535
+ # * {Types::GetEngagementInvitationResponse#existing_members #existing_members} => Array&lt;Types::EngagementMemberSummary&gt;
1065
1536
  # * {Types::GetEngagementInvitationResponse#expiration_date #expiration_date} => Time
1066
1537
  # * {Types::GetEngagementInvitationResponse#id #id} => String
1067
1538
  # * {Types::GetEngagementInvitationResponse#invitation_date #invitation_date} => Time
1539
+ # * {Types::GetEngagementInvitationResponse#invitation_message #invitation_message} => String
1068
1540
  # * {Types::GetEngagementInvitationResponse#payload #payload} => Types::Payload
1069
1541
  # * {Types::GetEngagementInvitationResponse#payload_type #payload_type} => String
1070
1542
  # * {Types::GetEngagementInvitationResponse#receiver #receiver} => Types::Receiver
@@ -1084,10 +1556,16 @@ module Aws::PartnerCentralSelling
1084
1556
  #
1085
1557
  # resp.arn #=> String
1086
1558
  # resp.catalog #=> String
1559
+ # resp.engagement_description #=> String
1560
+ # resp.engagement_id #=> String
1087
1561
  # resp.engagement_title #=> String
1562
+ # resp.existing_members #=> Array
1563
+ # resp.existing_members[0].company_name #=> String
1564
+ # resp.existing_members[0].website_url #=> String
1088
1565
  # resp.expiration_date #=> Time
1089
1566
  # resp.id #=> String
1090
1567
  # resp.invitation_date #=> Time
1568
+ # resp.invitation_message #=> String
1091
1569
  # resp.payload.opportunity_invitation.customer.company_name #=> String
1092
1570
  # resp.payload.opportunity_invitation.customer.country_code #=> String, one of "US", "AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "CD", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"
1093
1571
  # resp.payload.opportunity_invitation.customer.industry #=> String, one of "Aerospace", "Agriculture", "Automotive", "Computers and Electronics", "Consumer Goods", "Education", "Energy - Oil and Gas", "Energy - Power and Utilities", "Financial Services", "Gaming", "Government", "Healthcare", "Hospitality", "Life Sciences", "Manufacturing", "Marketing and Advertising", "Media and Entertainment", "Mining", "Non-Profit Organization", "Professional Services", "Real Estate and Construction", "Retail", "Software and Internet", "Telecommunications", "Transportation and Logistics", "Travel", "Wholesale and Distribution", "Other"
@@ -1096,6 +1574,7 @@ module Aws::PartnerCentralSelling
1096
1574
  # resp.payload.opportunity_invitation.project.expected_customer_spend #=> Array
1097
1575
  # resp.payload.opportunity_invitation.project.expected_customer_spend[0].amount #=> String
1098
1576
  # resp.payload.opportunity_invitation.project.expected_customer_spend[0].currency_code #=> String, one of "USD", "EUR", "GBP", "AUD", "CAD", "CNY", "NZD", "INR", "JPY", "CHF", "SEK", "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOV", "BRL", "BSD", "BTN", "BWP", "BYN", "BZD", "CDF", "CHE", "CHW", "CLF", "CLP", "COP", "COU", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "FJD", "FKP", "GEL", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IQD", "IRR", "ISK", "JMD", "JOD", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRU", "MUR", "MVR", "MWK", "MXN", "MXV", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SGD", "SHP", "SLL", "SOS", "SRD", "SSP", "STN", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "USN", "UYI", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "XSU", "XUA", "YER", "ZAR", "ZMW", "ZWL"
1577
+ # resp.payload.opportunity_invitation.project.expected_customer_spend[0].estimation_url #=> String
1099
1578
  # resp.payload.opportunity_invitation.project.expected_customer_spend[0].frequency #=> String, one of "Monthly"
1100
1579
  # resp.payload.opportunity_invitation.project.expected_customer_spend[0].target_company #=> String
1101
1580
  # resp.payload.opportunity_invitation.project.target_completion_date #=> String
@@ -1144,6 +1623,7 @@ module Aws::PartnerCentralSelling
1144
1623
  #
1145
1624
  # @return [Types::GetOpportunityResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1146
1625
  #
1626
+ # * {Types::GetOpportunityResponse#arn #arn} => String
1147
1627
  # * {Types::GetOpportunityResponse#catalog #catalog} => String
1148
1628
  # * {Types::GetOpportunityResponse#created_date #created_date} => Time
1149
1629
  # * {Types::GetOpportunityResponse#customer #customer} => Types::Customer
@@ -1169,6 +1649,7 @@ module Aws::PartnerCentralSelling
1169
1649
  #
1170
1650
  # @example Response structure
1171
1651
  #
1652
+ # resp.arn #=> String
1172
1653
  # resp.catalog #=> String
1173
1654
  # resp.created_date #=> Time
1174
1655
  # resp.customer.account.address.city #=> String
@@ -1229,6 +1710,7 @@ module Aws::PartnerCentralSelling
1229
1710
  # resp.project.expected_customer_spend #=> Array
1230
1711
  # resp.project.expected_customer_spend[0].amount #=> String
1231
1712
  # resp.project.expected_customer_spend[0].currency_code #=> String, one of "USD", "EUR", "GBP", "AUD", "CAD", "CNY", "NZD", "INR", "JPY", "CHF", "SEK", "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOV", "BRL", "BSD", "BTN", "BWP", "BYN", "BZD", "CDF", "CHE", "CHW", "CLF", "CLP", "COP", "COU", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "FJD", "FKP", "GEL", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IQD", "IRR", "ISK", "JMD", "JOD", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRU", "MUR", "MVR", "MWK", "MXN", "MXV", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SGD", "SHP", "SLL", "SOS", "SRD", "SSP", "STN", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "USN", "UYI", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "XSU", "XUA", "YER", "ZAR", "ZMW", "ZWL"
1713
+ # resp.project.expected_customer_spend[0].estimation_url #=> String
1232
1714
  # resp.project.expected_customer_spend[0].frequency #=> String, one of "Monthly"
1233
1715
  # resp.project.expected_customer_spend[0].target_company #=> String
1234
1716
  # resp.project.other_competitor_names #=> String
@@ -1258,89 +1740,708 @@ module Aws::PartnerCentralSelling
1258
1740
  req.send_request(options)
1259
1741
  end
1260
1742
 
1261
- # Retrieves a list of engagement invitations sent to the partner. This
1262
- # allows partners to view all pending or past engagement invitations,
1263
- # helping them track opportunities shared by AWS.
1743
+ # Use this action to retrieve a specific snapshot record.
1264
1744
  #
1265
1745
  # @option params [required, String] :catalog
1266
- # Specifies the catalog from which to list the engagement invitations.
1267
- # Use `AWS` for production invitations or `Sandbox` for testing
1268
- # environments.
1746
+ # Specifies the catalog related to the request. Valid values are:
1747
+ #
1748
+ # * AWS: Retrieves the snapshot from the production AWS environment.
1749
+ #
1750
+ # * Sandbox: Retrieves the snapshot from a sandbox environment used for
1751
+ # testing or development purposes.
1752
+ #
1753
+ # @option params [required, String] :engagement_identifier
1754
+ # The unique identifier of the engagement associated with the snapshot.
1755
+ # This field links the snapshot to a specific engagement context.
1756
+ #
1757
+ # @option params [required, String] :resource_identifier
1758
+ # The unique identifier of the specific resource that was snapshotted.
1759
+ # The format and constraints of this identifier depend on the
1760
+ # ResourceType specified. For `Opportunity` type, it will be an
1761
+ # `opportunity ID`
1762
+ #
1763
+ # @option params [required, String] :resource_snapshot_template_identifier
1764
+ # he name of the template that defines the schema for the snapshot. This
1765
+ # template determines which subset of the resource data is included in
1766
+ # the snapshot and must correspond to an existing and valid template for
1767
+ # the specified `ResourceType`.
1768
+ #
1769
+ # @option params [required, String] :resource_type
1770
+ # Specifies the type of resource that was snapshotted. This field
1771
+ # determines the structure and content of the snapshot payload. Valid
1772
+ # value includes:`Opportunity`: For opportunity-related data.
1773
+ #
1774
+ # @option params [Integer] :revision
1775
+ # Specifies which revision of the snapshot to retrieve. If omitted
1776
+ # returns the latest revision.
1777
+ #
1778
+ # @return [Types::GetResourceSnapshotResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1779
+ #
1780
+ # * {Types::GetResourceSnapshotResponse#arn #arn} => String
1781
+ # * {Types::GetResourceSnapshotResponse#catalog #catalog} => String
1782
+ # * {Types::GetResourceSnapshotResponse#created_at #created_at} => Time
1783
+ # * {Types::GetResourceSnapshotResponse#created_by #created_by} => String
1784
+ # * {Types::GetResourceSnapshotResponse#engagement_id #engagement_id} => String
1785
+ # * {Types::GetResourceSnapshotResponse#payload #payload} => Types::ResourceSnapshotPayload
1786
+ # * {Types::GetResourceSnapshotResponse#resource_id #resource_id} => String
1787
+ # * {Types::GetResourceSnapshotResponse#resource_snapshot_template_name #resource_snapshot_template_name} => String
1788
+ # * {Types::GetResourceSnapshotResponse#resource_type #resource_type} => String
1789
+ # * {Types::GetResourceSnapshotResponse#revision #revision} => Integer
1269
1790
  #
1270
- # @option params [Integer] :max_results
1271
- # Specifies the maximum number of engagement invitations to return in
1272
- # the response. If more results are available, a pagination token will
1273
- # be provided.
1791
+ # @example Request syntax with placeholder values
1274
1792
  #
1275
- # @option params [String] :next_token
1276
- # A pagination token used to retrieve additional pages of results when
1277
- # the response to a previous request was truncated. Pass this token to
1278
- # continue listing invitations from where the previous call left off.
1793
+ # resp = client.get_resource_snapshot({
1794
+ # catalog: "CatalogIdentifier", # required
1795
+ # engagement_identifier: "EngagementIdentifier", # required
1796
+ # resource_identifier: "ResourceIdentifier", # required
1797
+ # resource_snapshot_template_identifier: "ResourceTemplateName", # required
1798
+ # resource_type: "Opportunity", # required, accepts Opportunity
1799
+ # revision: 1,
1800
+ # })
1279
1801
  #
1280
- # @option params [required, String] :participant_type
1281
- # Specifies the type of participant for which to list engagement
1282
- # invitations. Identifies the role of the participant.
1802
+ # @example Response structure
1283
1803
  #
1284
- # @option params [Array<String>] :payload_type
1285
- # Defines the type of payload associated with the engagement invitations
1286
- # to be listed. The attributes in this payload help decide on acceptance
1287
- # or rejection of the invitation.
1804
+ # resp.arn #=> String
1805
+ # resp.catalog #=> String
1806
+ # resp.created_at #=> Time
1807
+ # resp.created_by #=> String
1808
+ # resp.engagement_id #=> String
1809
+ # resp.payload.opportunity_summary.customer.account.address.city #=> String
1810
+ # resp.payload.opportunity_summary.customer.account.address.country_code #=> String, one of "US", "AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "CD", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "AN", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW"
1811
+ # resp.payload.opportunity_summary.customer.account.address.postal_code #=> String
1812
+ # resp.payload.opportunity_summary.customer.account.address.state_or_region #=> String
1813
+ # resp.payload.opportunity_summary.customer.account.address.street_address #=> String
1814
+ # resp.payload.opportunity_summary.customer.account.aws_account_id #=> String
1815
+ # resp.payload.opportunity_summary.customer.account.company_name #=> String
1816
+ # resp.payload.opportunity_summary.customer.account.duns #=> String
1817
+ # resp.payload.opportunity_summary.customer.account.industry #=> String, one of "Aerospace", "Agriculture", "Automotive", "Computers and Electronics", "Consumer Goods", "Education", "Energy - Oil and Gas", "Energy - Power and Utilities", "Financial Services", "Gaming", "Government", "Healthcare", "Hospitality", "Life Sciences", "Manufacturing", "Marketing and Advertising", "Media and Entertainment", "Mining", "Non-Profit Organization", "Professional Services", "Real Estate and Construction", "Retail", "Software and Internet", "Telecommunications", "Transportation and Logistics", "Travel", "Wholesale and Distribution", "Other"
1818
+ # resp.payload.opportunity_summary.customer.account.other_industry #=> String
1819
+ # resp.payload.opportunity_summary.customer.account.website_url #=> String
1820
+ # resp.payload.opportunity_summary.customer.contacts #=> Array
1821
+ # resp.payload.opportunity_summary.customer.contacts[0].business_title #=> String
1822
+ # resp.payload.opportunity_summary.customer.contacts[0].email #=> String
1823
+ # resp.payload.opportunity_summary.customer.contacts[0].first_name #=> String
1824
+ # resp.payload.opportunity_summary.customer.contacts[0].last_name #=> String
1825
+ # resp.payload.opportunity_summary.customer.contacts[0].phone #=> String
1826
+ # resp.payload.opportunity_summary.lifecycle.next_steps #=> String
1827
+ # resp.payload.opportunity_summary.lifecycle.review_status #=> String, one of "Pending Submission", "Submitted", "In review", "Approved", "Rejected", "Action Required"
1828
+ # resp.payload.opportunity_summary.lifecycle.stage #=> String, one of "Prospect", "Qualified", "Technical Validation", "Business Validation", "Committed", "Launched", "Closed Lost"
1829
+ # resp.payload.opportunity_summary.lifecycle.target_close_date #=> String
1830
+ # resp.payload.opportunity_summary.opportunity_team #=> Array
1831
+ # resp.payload.opportunity_summary.opportunity_team[0].business_title #=> String
1832
+ # resp.payload.opportunity_summary.opportunity_team[0].email #=> String
1833
+ # resp.payload.opportunity_summary.opportunity_team[0].first_name #=> String
1834
+ # resp.payload.opportunity_summary.opportunity_team[0].last_name #=> String
1835
+ # resp.payload.opportunity_summary.opportunity_team[0].phone #=> String
1836
+ # resp.payload.opportunity_summary.opportunity_type #=> String, one of "Net New Business", "Flat Renewal", "Expansion"
1837
+ # resp.payload.opportunity_summary.primary_needs_from_aws #=> Array
1838
+ # resp.payload.opportunity_summary.primary_needs_from_aws[0] #=> String, one of "Co-Sell - Architectural Validation", "Co-Sell - Business Presentation", "Co-Sell - Competitive Information", "Co-Sell - Pricing Assistance", "Co-Sell - Technical Consultation", "Co-Sell - Total Cost of Ownership Evaluation", "Co-Sell - Deal Support", "Co-Sell - Support for Public Tender / RFx"
1839
+ # resp.payload.opportunity_summary.project.customer_use_case #=> String
1840
+ # resp.payload.opportunity_summary.project.delivery_models #=> Array
1841
+ # resp.payload.opportunity_summary.project.delivery_models[0] #=> String, one of "SaaS or PaaS", "BYOL or AMI", "Managed Services", "Professional Services", "Resell", "Other"
1842
+ # resp.payload.opportunity_summary.project.expected_customer_spend #=> Array
1843
+ # resp.payload.opportunity_summary.project.expected_customer_spend[0].amount #=> String
1844
+ # resp.payload.opportunity_summary.project.expected_customer_spend[0].currency_code #=> String, one of "USD", "EUR", "GBP", "AUD", "CAD", "CNY", "NZD", "INR", "JPY", "CHF", "SEK", "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOV", "BRL", "BSD", "BTN", "BWP", "BYN", "BZD", "CDF", "CHE", "CHW", "CLF", "CLP", "COP", "COU", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "FJD", "FKP", "GEL", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IQD", "IRR", "ISK", "JMD", "JOD", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRU", "MUR", "MVR", "MWK", "MXN", "MXV", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SGD", "SHP", "SLL", "SOS", "SRD", "SSP", "STN", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "USN", "UYI", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "XSU", "XUA", "YER", "ZAR", "ZMW", "ZWL"
1845
+ # resp.payload.opportunity_summary.project.expected_customer_spend[0].estimation_url #=> String
1846
+ # resp.payload.opportunity_summary.project.expected_customer_spend[0].frequency #=> String, one of "Monthly"
1847
+ # resp.payload.opportunity_summary.project.expected_customer_spend[0].target_company #=> String
1848
+ # resp.payload.opportunity_summary.project.other_solution_description #=> String
1849
+ # resp.payload.opportunity_summary.project.sales_activities #=> Array
1850
+ # resp.payload.opportunity_summary.project.sales_activities[0] #=> String, one of "Initialized discussions with customer", "Customer has shown interest in solution", "Conducted POC / Demo", "In evaluation / planning stage", "Agreed on solution to Business Problem", "Completed Action Plan", "Finalized Deployment Need", "SOW Signed"
1851
+ # resp.payload.opportunity_summary.related_entity_identifiers.aws_marketplace_offers #=> Array
1852
+ # resp.payload.opportunity_summary.related_entity_identifiers.aws_marketplace_offers[0] #=> String
1853
+ # resp.payload.opportunity_summary.related_entity_identifiers.aws_products #=> Array
1854
+ # resp.payload.opportunity_summary.related_entity_identifiers.aws_products[0] #=> String
1855
+ # resp.payload.opportunity_summary.related_entity_identifiers.solutions #=> Array
1856
+ # resp.payload.opportunity_summary.related_entity_identifiers.solutions[0] #=> String
1857
+ # resp.resource_id #=> String
1858
+ # resp.resource_snapshot_template_name #=> String
1859
+ # resp.resource_type #=> String, one of "Opportunity"
1860
+ # resp.revision #=> Integer
1861
+ #
1862
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/GetResourceSnapshot AWS API Documentation
1863
+ #
1864
+ # @overload get_resource_snapshot(params = {})
1865
+ # @param [Hash] params ({})
1866
+ def get_resource_snapshot(params = {}, options = {})
1867
+ req = build_request(:get_resource_snapshot, params)
1868
+ req.send_request(options)
1869
+ end
1870
+
1871
+ # Use this action to retrieves information about a specific resource
1872
+ # snapshot job.
1288
1873
  #
1289
- # @option params [Types::OpportunityEngagementInvitationSort] :sort
1290
- # Specifies the sorting options for listing engagement invitations.
1291
- # Invitations can be sorted by fields such as `InvitationDate` or
1292
- # `Status` to help partners view results in their preferred order.
1874
+ # @option params [required, String] :catalog
1875
+ # Specifies the catalog related to the request. Valid values are:
1293
1876
  #
1294
- # @return [Types::ListEngagementInvitationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1877
+ # * AWS: Retrieves the snapshot job from the production AWS environment.
1295
1878
  #
1296
- # * {Types::ListEngagementInvitationsResponse#engagement_invitation_summaries #engagement_invitation_summaries} => Array&lt;Types::EngagementInvitationSummary&gt;
1297
- # * {Types::ListEngagementInvitationsResponse#next_token #next_token} => String
1879
+ # * Sandbox: Retrieves the snapshot job from a sandbox environment used
1880
+ # for testing or development purposes.
1298
1881
  #
1299
- # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1882
+ # @option params [required, String] :resource_snapshot_job_identifier
1883
+ # The unique identifier of the resource snapshot job to be retrieved.
1884
+ # This identifier is crucial for pinpointing the specific job you want
1885
+ # to query.
1886
+ #
1887
+ # @return [Types::GetResourceSnapshotJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1888
+ #
1889
+ # * {Types::GetResourceSnapshotJobResponse#arn #arn} => String
1890
+ # * {Types::GetResourceSnapshotJobResponse#catalog #catalog} => String
1891
+ # * {Types::GetResourceSnapshotJobResponse#created_at #created_at} => Time
1892
+ # * {Types::GetResourceSnapshotJobResponse#engagement_id #engagement_id} => String
1893
+ # * {Types::GetResourceSnapshotJobResponse#id #id} => String
1894
+ # * {Types::GetResourceSnapshotJobResponse#last_failure #last_failure} => String
1895
+ # * {Types::GetResourceSnapshotJobResponse#last_successful_execution_date #last_successful_execution_date} => Time
1896
+ # * {Types::GetResourceSnapshotJobResponse#resource_arn #resource_arn} => String
1897
+ # * {Types::GetResourceSnapshotJobResponse#resource_id #resource_id} => String
1898
+ # * {Types::GetResourceSnapshotJobResponse#resource_snapshot_template_name #resource_snapshot_template_name} => String
1899
+ # * {Types::GetResourceSnapshotJobResponse#resource_type #resource_type} => String
1900
+ # * {Types::GetResourceSnapshotJobResponse#status #status} => String
1300
1901
  #
1301
1902
  # @example Request syntax with placeholder values
1302
1903
  #
1303
- # resp = client.list_engagement_invitations({
1904
+ # resp = client.get_resource_snapshot_job({
1304
1905
  # catalog: "CatalogIdentifier", # required
1305
- # max_results: 1,
1306
- # next_token: "String",
1307
- # participant_type: "RECEIVER", # required, accepts RECEIVER
1308
- # payload_type: ["OpportunityInvitation"], # accepts OpportunityInvitation
1309
- # sort: {
1310
- # sort_by: "InvitationDate", # required, accepts InvitationDate
1311
- # sort_order: "ASCENDING", # required, accepts ASCENDING, DESCENDING
1312
- # },
1906
+ # resource_snapshot_job_identifier: "ResourceSnapshotJobIdentifier", # required
1313
1907
  # })
1314
1908
  #
1315
1909
  # @example Response structure
1316
1910
  #
1317
- # resp.engagement_invitation_summaries #=> Array
1318
- # resp.engagement_invitation_summaries[0].arn #=> String
1319
- # resp.engagement_invitation_summaries[0].catalog #=> String
1320
- # resp.engagement_invitation_summaries[0].engagement_title #=> String
1321
- # resp.engagement_invitation_summaries[0].expiration_date #=> Time
1322
- # resp.engagement_invitation_summaries[0].id #=> String
1323
- # resp.engagement_invitation_summaries[0].invitation_date #=> Time
1324
- # resp.engagement_invitation_summaries[0].payload_type #=> String, one of "OpportunityInvitation"
1325
- # resp.engagement_invitation_summaries[0].receiver.account.alias #=> String
1326
- # resp.engagement_invitation_summaries[0].receiver.account.aws_account_id #=> String
1327
- # resp.engagement_invitation_summaries[0].sender_aws_account_id #=> String
1328
- # resp.engagement_invitation_summaries[0].sender_company_name #=> String
1329
- # resp.engagement_invitation_summaries[0].status #=> String, one of "ACCEPTED", "PENDING", "REJECTED", "EXPIRED"
1330
- # resp.next_token #=> String
1911
+ # resp.arn #=> String
1912
+ # resp.catalog #=> String
1913
+ # resp.created_at #=> Time
1914
+ # resp.engagement_id #=> String
1915
+ # resp.id #=> String
1916
+ # resp.last_failure #=> String
1917
+ # resp.last_successful_execution_date #=> Time
1918
+ # resp.resource_arn #=> String
1919
+ # resp.resource_id #=> String
1920
+ # resp.resource_snapshot_template_name #=> String
1921
+ # resp.resource_type #=> String, one of "Opportunity"
1922
+ # resp.status #=> String, one of "Running", "Stopped"
1331
1923
  #
1332
- # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListEngagementInvitations AWS API Documentation
1924
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/GetResourceSnapshotJob AWS API Documentation
1333
1925
  #
1334
- # @overload list_engagement_invitations(params = {})
1926
+ # @overload get_resource_snapshot_job(params = {})
1335
1927
  # @param [Hash] params ({})
1336
- def list_engagement_invitations(params = {}, options = {})
1337
- req = build_request(:list_engagement_invitations, params)
1928
+ def get_resource_snapshot_job(params = {}, options = {})
1929
+ req = build_request(:get_resource_snapshot_job, params)
1338
1930
  req.send_request(options)
1339
1931
  end
1340
1932
 
1341
- # This request accepts a list of filters that retrieve opportunity
1342
- # subsets as well as sort options. This feature is available to partners
1343
- # from [Partner Central][1] using the `ListOpportunities` API action.
1933
+ # Retrieves the currently set system settings, which include the IAM
1934
+ # Role used for resource snapshot jobs.
1935
+ #
1936
+ # @option params [required, String] :catalog
1937
+ # Specifies the catalog in which the settings are defined. Acceptable
1938
+ # values include `AWS` for production and `Sandbox` for testing
1939
+ # environments.
1940
+ #
1941
+ # @return [Types::GetSellingSystemSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1942
+ #
1943
+ # * {Types::GetSellingSystemSettingsResponse#catalog #catalog} => String
1944
+ # * {Types::GetSellingSystemSettingsResponse#resource_snapshot_job_role_arn #resource_snapshot_job_role_arn} => String
1945
+ #
1946
+ # @example Request syntax with placeholder values
1947
+ #
1948
+ # resp = client.get_selling_system_settings({
1949
+ # catalog: "CatalogIdentifier", # required
1950
+ # })
1951
+ #
1952
+ # @example Response structure
1953
+ #
1954
+ # resp.catalog #=> String
1955
+ # resp.resource_snapshot_job_role_arn #=> String
1956
+ #
1957
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/GetSellingSystemSettings AWS API Documentation
1958
+ #
1959
+ # @overload get_selling_system_settings(params = {})
1960
+ # @param [Hash] params ({})
1961
+ def get_selling_system_settings(params = {}, options = {})
1962
+ req = build_request(:get_selling_system_settings, params)
1963
+ req.send_request(options)
1964
+ end
1965
+
1966
+ # Lists all in-progress, completed, or failed
1967
+ # StartEngagementByAcceptingInvitationTask tasks that were initiated by
1968
+ # the caller's account.
1969
+ #
1970
+ # @option params [required, String] :catalog
1971
+ # Specifies the catalog related to the request. Valid values are:
1972
+ #
1973
+ # * AWS: Retrieves the request from the production AWS environment.
1974
+ #
1975
+ # * Sandbox: Retrieves the request from a sandbox environment used for
1976
+ # testing or development purposes.
1977
+ #
1978
+ # @option params [Array<String>] :engagement_invitation_identifier
1979
+ # Filters tasks by the identifiers of the engagement invitations they
1980
+ # are processing.
1981
+ #
1982
+ # @option params [Integer] :max_results
1983
+ # Use this parameter to control the number of items returned in each
1984
+ # request, which can be useful for performance tuning and managing large
1985
+ # result sets.
1986
+ #
1987
+ # @option params [String] :next_token
1988
+ # Use this parameter for pagination when the result set spans multiple
1989
+ # pages. This value is obtained from the NextToken field in the response
1990
+ # of a previous call to this API.
1991
+ #
1992
+ # @option params [Array<String>] :opportunity_identifier
1993
+ # Filters tasks by the identifiers of the opportunities they created or
1994
+ # are associated with.
1995
+ #
1996
+ # @option params [Types::ListTasksSortBase] :sort
1997
+ # Specifies the sorting criteria for the returned results. This allows
1998
+ # you to order the tasks based on specific attributes.
1999
+ #
2000
+ # @option params [Array<String>] :task_identifier
2001
+ # Filters tasks by their unique identifiers. Use this when you want to
2002
+ # retrieve information about specific tasks.
2003
+ #
2004
+ # @option params [Array<String>] :task_status
2005
+ # Filters the tasks based on their current status. This allows you to
2006
+ # focus on tasks in specific states.
2007
+ #
2008
+ # @return [Types::ListEngagementByAcceptingInvitationTasksResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2009
+ #
2010
+ # * {Types::ListEngagementByAcceptingInvitationTasksResponse#next_token #next_token} => String
2011
+ # * {Types::ListEngagementByAcceptingInvitationTasksResponse#task_summaries #task_summaries} => Array&lt;Types::ListEngagementByAcceptingInvitationTaskSummary&gt;
2012
+ #
2013
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2014
+ #
2015
+ # @example Request syntax with placeholder values
2016
+ #
2017
+ # resp = client.list_engagement_by_accepting_invitation_tasks({
2018
+ # catalog: "CatalogIdentifier", # required
2019
+ # engagement_invitation_identifier: ["EngagementInvitationArnOrIdentifier"],
2020
+ # max_results: 1,
2021
+ # next_token: "ListEngagementByAcceptingInvitationTasksRequestNextTokenString",
2022
+ # opportunity_identifier: ["OpportunityIdentifier"],
2023
+ # sort: {
2024
+ # sort_by: "StartTime", # required, accepts StartTime
2025
+ # sort_order: "ASCENDING", # required, accepts ASCENDING, DESCENDING
2026
+ # },
2027
+ # task_identifier: ["TaskArnOrIdentifier"],
2028
+ # task_status: ["IN_PROGRESS"], # accepts IN_PROGRESS, COMPLETE, FAILED
2029
+ # })
2030
+ #
2031
+ # @example Response structure
2032
+ #
2033
+ # resp.next_token #=> String
2034
+ # resp.task_summaries #=> Array
2035
+ # resp.task_summaries[0].engagement_invitation_id #=> String
2036
+ # resp.task_summaries[0].message #=> String
2037
+ # resp.task_summaries[0].opportunity_id #=> String
2038
+ # resp.task_summaries[0].reason_code #=> String, one of "InvitationAccessDenied", "InvitationValidationFailed", "EngagementAccessDenied", "OpportunityAccessDenied", "ResourceSnapshotJobAccessDenied", "ResourceSnapshotJobValidationFailed", "ResourceSnapshotJobConflict", "EngagementValidationFailed", "EngagementConflict", "OpportunitySubmissionFailed", "EngagementInvitationConflict", "InternalError", "OpportunityValidationFailed", "OpportunityConflict", "ResourceSnapshotAccessDenied", "ResourceSnapshotValidationFailed", "ResourceSnapshotConflict", "ServiceQuotaExceeded", "RequestThrottled"
2039
+ # resp.task_summaries[0].resource_snapshot_job_id #=> String
2040
+ # resp.task_summaries[0].start_time #=> Time
2041
+ # resp.task_summaries[0].task_arn #=> String
2042
+ # resp.task_summaries[0].task_id #=> String
2043
+ # resp.task_summaries[0].task_status #=> String, one of "IN_PROGRESS", "COMPLETE", "FAILED"
2044
+ #
2045
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListEngagementByAcceptingInvitationTasks AWS API Documentation
2046
+ #
2047
+ # @overload list_engagement_by_accepting_invitation_tasks(params = {})
2048
+ # @param [Hash] params ({})
2049
+ def list_engagement_by_accepting_invitation_tasks(params = {}, options = {})
2050
+ req = build_request(:list_engagement_by_accepting_invitation_tasks, params)
2051
+ req.send_request(options)
2052
+ end
2053
+
2054
+ # Lists all in-progress, completed, or failed
2055
+ # `EngagementFromOpportunity` tasks that were initiated by the caller's
2056
+ # account.
2057
+ #
2058
+ # @option params [required, String] :catalog
2059
+ # Specifies the catalog related to the request. Valid values are:
2060
+ #
2061
+ # * AWS: Retrieves the request from the production AWS environment.
2062
+ #
2063
+ # * Sandbox: Retrieves the request from a sandbox environment used for
2064
+ # testing or development purposes.
2065
+ #
2066
+ # @option params [Array<String>] :engagement_identifier
2067
+ # Filters tasks by the identifiers of the engagements they created or
2068
+ # are associated with.
2069
+ #
2070
+ # @option params [Integer] :max_results
2071
+ # Specifies the maximum number of results to return in a single page of
2072
+ # the response.Use this parameter to control the number of items
2073
+ # returned in each request, which can be useful for performance tuning
2074
+ # and managing large result sets.
2075
+ #
2076
+ # @option params [String] :next_token
2077
+ # The token for requesting the next page of results. This value is
2078
+ # obtained from the NextToken field in the response of a previous call
2079
+ # to this API. Use this parameter for pagination when the result set
2080
+ # spans multiple pages.
2081
+ #
2082
+ # @option params [Array<String>] :opportunity_identifier
2083
+ # The identifier of the original opportunity associated with this task.
2084
+ #
2085
+ # @option params [Types::ListTasksSortBase] :sort
2086
+ # Specifies the sorting criteria for the returned results. This allows
2087
+ # you to order the tasks based on specific attributes.
2088
+ #
2089
+ # @option params [Array<String>] :task_identifier
2090
+ # Filters tasks by their unique identifiers. Use this when you want to
2091
+ # retrieve information about specific tasks.
2092
+ #
2093
+ # @option params [Array<String>] :task_status
2094
+ # Filters the tasks based on their current status. This allows you to
2095
+ # focus on tasks in specific states.
2096
+ #
2097
+ # @return [Types::ListEngagementFromOpportunityTasksResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2098
+ #
2099
+ # * {Types::ListEngagementFromOpportunityTasksResponse#next_token #next_token} => String
2100
+ # * {Types::ListEngagementFromOpportunityTasksResponse#task_summaries #task_summaries} => Array&lt;Types::ListEngagementFromOpportunityTaskSummary&gt;
2101
+ #
2102
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2103
+ #
2104
+ # @example Request syntax with placeholder values
2105
+ #
2106
+ # resp = client.list_engagement_from_opportunity_tasks({
2107
+ # catalog: "CatalogIdentifier", # required
2108
+ # engagement_identifier: ["EngagementArnOrIdentifier"],
2109
+ # max_results: 1,
2110
+ # next_token: "ListEngagementFromOpportunityTasksRequestNextTokenString",
2111
+ # opportunity_identifier: ["OpportunityIdentifier"],
2112
+ # sort: {
2113
+ # sort_by: "StartTime", # required, accepts StartTime
2114
+ # sort_order: "ASCENDING", # required, accepts ASCENDING, DESCENDING
2115
+ # },
2116
+ # task_identifier: ["TaskArnOrIdentifier"],
2117
+ # task_status: ["IN_PROGRESS"], # accepts IN_PROGRESS, COMPLETE, FAILED
2118
+ # })
2119
+ #
2120
+ # @example Response structure
2121
+ #
2122
+ # resp.next_token #=> String
2123
+ # resp.task_summaries #=> Array
2124
+ # resp.task_summaries[0].engagement_id #=> String
2125
+ # resp.task_summaries[0].engagement_invitation_id #=> String
2126
+ # resp.task_summaries[0].message #=> String
2127
+ # resp.task_summaries[0].opportunity_id #=> String
2128
+ # resp.task_summaries[0].reason_code #=> String, one of "InvitationAccessDenied", "InvitationValidationFailed", "EngagementAccessDenied", "OpportunityAccessDenied", "ResourceSnapshotJobAccessDenied", "ResourceSnapshotJobValidationFailed", "ResourceSnapshotJobConflict", "EngagementValidationFailed", "EngagementConflict", "OpportunitySubmissionFailed", "EngagementInvitationConflict", "InternalError", "OpportunityValidationFailed", "OpportunityConflict", "ResourceSnapshotAccessDenied", "ResourceSnapshotValidationFailed", "ResourceSnapshotConflict", "ServiceQuotaExceeded", "RequestThrottled"
2129
+ # resp.task_summaries[0].resource_snapshot_job_id #=> String
2130
+ # resp.task_summaries[0].start_time #=> Time
2131
+ # resp.task_summaries[0].task_arn #=> String
2132
+ # resp.task_summaries[0].task_id #=> String
2133
+ # resp.task_summaries[0].task_status #=> String, one of "IN_PROGRESS", "COMPLETE", "FAILED"
2134
+ #
2135
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListEngagementFromOpportunityTasks AWS API Documentation
2136
+ #
2137
+ # @overload list_engagement_from_opportunity_tasks(params = {})
2138
+ # @param [Hash] params ({})
2139
+ def list_engagement_from_opportunity_tasks(params = {}, options = {})
2140
+ req = build_request(:list_engagement_from_opportunity_tasks, params)
2141
+ req.send_request(options)
2142
+ end
2143
+
2144
+ # Retrieves a list of engagement invitations sent to the partner. This
2145
+ # allows partners to view all pending or past engagement invitations,
2146
+ # helping them track opportunities shared by AWS.
2147
+ #
2148
+ # @option params [required, String] :catalog
2149
+ # Specifies the catalog from which to list the engagement invitations.
2150
+ # Use `AWS` for production invitations or `Sandbox` for testing
2151
+ # environments.
2152
+ #
2153
+ # @option params [Array<String>] :engagement_identifier
2154
+ # Retrieves a list of engagement invitation summaries based on specified
2155
+ # filters. The ListEngagementInvitations operation allows you to view
2156
+ # all invitations that you have sent or received. You must specify the
2157
+ # ParticipantType to filter invitations where you are either the SENDER
2158
+ # or the RECEIVER. Invitations will automatically expire if not accepted
2159
+ # within 15 days.
2160
+ #
2161
+ # @option params [Integer] :max_results
2162
+ # Specifies the maximum number of engagement invitations to return in
2163
+ # the response. If more results are available, a pagination token will
2164
+ # be provided.
2165
+ #
2166
+ # @option params [String] :next_token
2167
+ # A pagination token used to retrieve additional pages of results when
2168
+ # the response to a previous request was truncated. Pass this token to
2169
+ # continue listing invitations from where the previous call left off.
2170
+ #
2171
+ # @option params [required, String] :participant_type
2172
+ # Specifies the type of participant for which to list engagement
2173
+ # invitations. Identifies the role of the participant.
2174
+ #
2175
+ # @option params [Array<String>] :payload_type
2176
+ # Defines the type of payload associated with the engagement invitations
2177
+ # to be listed. The attributes in this payload help decide on acceptance
2178
+ # or rejection of the invitation.
2179
+ #
2180
+ # @option params [Array<String>] :sender_aws_account_id
2181
+ # List of sender AWS account IDs to filter the invitations.
2182
+ #
2183
+ # @option params [Types::OpportunityEngagementInvitationSort] :sort
2184
+ # Specifies the sorting options for listing engagement invitations.
2185
+ # Invitations can be sorted by fields such as `InvitationDate` or
2186
+ # `Status` to help partners view results in their preferred order.
2187
+ #
2188
+ # @option params [Array<String>] :status
2189
+ # Status values to filter the invitations.
2190
+ #
2191
+ # @return [Types::ListEngagementInvitationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2192
+ #
2193
+ # * {Types::ListEngagementInvitationsResponse#engagement_invitation_summaries #engagement_invitation_summaries} => Array&lt;Types::EngagementInvitationSummary&gt;
2194
+ # * {Types::ListEngagementInvitationsResponse#next_token #next_token} => String
2195
+ #
2196
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2197
+ #
2198
+ # @example Request syntax with placeholder values
2199
+ #
2200
+ # resp = client.list_engagement_invitations({
2201
+ # catalog: "CatalogIdentifier", # required
2202
+ # engagement_identifier: ["EngagementArnOrIdentifier"],
2203
+ # max_results: 1,
2204
+ # next_token: "String",
2205
+ # participant_type: "SENDER", # required, accepts SENDER, RECEIVER
2206
+ # payload_type: ["OpportunityInvitation"], # accepts OpportunityInvitation
2207
+ # sender_aws_account_id: ["AwsAccount"],
2208
+ # sort: {
2209
+ # sort_by: "InvitationDate", # required, accepts InvitationDate
2210
+ # sort_order: "ASCENDING", # required, accepts ASCENDING, DESCENDING
2211
+ # },
2212
+ # status: ["ACCEPTED"], # accepts ACCEPTED, PENDING, REJECTED, EXPIRED
2213
+ # })
2214
+ #
2215
+ # @example Response structure
2216
+ #
2217
+ # resp.engagement_invitation_summaries #=> Array
2218
+ # resp.engagement_invitation_summaries[0].arn #=> String
2219
+ # resp.engagement_invitation_summaries[0].catalog #=> String
2220
+ # resp.engagement_invitation_summaries[0].engagement_id #=> String
2221
+ # resp.engagement_invitation_summaries[0].engagement_title #=> String
2222
+ # resp.engagement_invitation_summaries[0].expiration_date #=> Time
2223
+ # resp.engagement_invitation_summaries[0].id #=> String
2224
+ # resp.engagement_invitation_summaries[0].invitation_date #=> Time
2225
+ # resp.engagement_invitation_summaries[0].participant_type #=> String, one of "SENDER", "RECEIVER"
2226
+ # resp.engagement_invitation_summaries[0].payload_type #=> String, one of "OpportunityInvitation"
2227
+ # resp.engagement_invitation_summaries[0].receiver.account.alias #=> String
2228
+ # resp.engagement_invitation_summaries[0].receiver.account.aws_account_id #=> String
2229
+ # resp.engagement_invitation_summaries[0].sender_aws_account_id #=> String
2230
+ # resp.engagement_invitation_summaries[0].sender_company_name #=> String
2231
+ # resp.engagement_invitation_summaries[0].status #=> String, one of "ACCEPTED", "PENDING", "REJECTED", "EXPIRED"
2232
+ # resp.next_token #=> String
2233
+ #
2234
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListEngagementInvitations AWS API Documentation
2235
+ #
2236
+ # @overload list_engagement_invitations(params = {})
2237
+ # @param [Hash] params ({})
2238
+ def list_engagement_invitations(params = {}, options = {})
2239
+ req = build_request(:list_engagement_invitations, params)
2240
+ req.send_request(options)
2241
+ end
2242
+
2243
+ # Retrieves the details of member partners in an Engagement. This
2244
+ # operation can only be invoked by members of the Engagement. The
2245
+ # `ListEngagementMembers` operation allows you to fetch information
2246
+ # about the members of a specific Engagement. This action is restricted
2247
+ # to members of the Engagement being queried.
2248
+ #
2249
+ # @option params [required, String] :catalog
2250
+ # The catalog related to the request.
2251
+ #
2252
+ # @option params [required, String] :identifier
2253
+ # Identifier of the Engagement record to retrieve members from.
2254
+ #
2255
+ # @option params [Integer] :max_results
2256
+ # The maximum number of results to return in a single call.
2257
+ #
2258
+ # @option params [String] :next_token
2259
+ # The token for the next set of results.
2260
+ #
2261
+ # @return [Types::ListEngagementMembersResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2262
+ #
2263
+ # * {Types::ListEngagementMembersResponse#engagement_member_list #engagement_member_list} => Array&lt;Types::EngagementMember&gt;
2264
+ # * {Types::ListEngagementMembersResponse#next_token #next_token} => String
2265
+ #
2266
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2267
+ #
2268
+ # @example Request syntax with placeholder values
2269
+ #
2270
+ # resp = client.list_engagement_members({
2271
+ # catalog: "CatalogIdentifier", # required
2272
+ # identifier: "EngagementArnOrIdentifier", # required
2273
+ # max_results: 1,
2274
+ # next_token: "String",
2275
+ # })
2276
+ #
2277
+ # @example Response structure
2278
+ #
2279
+ # resp.engagement_member_list #=> Array
2280
+ # resp.engagement_member_list[0].account_id #=> String
2281
+ # resp.engagement_member_list[0].company_name #=> String
2282
+ # resp.engagement_member_list[0].website_url #=> String
2283
+ # resp.next_token #=> String
2284
+ #
2285
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListEngagementMembers AWS API Documentation
2286
+ #
2287
+ # @overload list_engagement_members(params = {})
2288
+ # @param [Hash] params ({})
2289
+ def list_engagement_members(params = {}, options = {})
2290
+ req = build_request(:list_engagement_members, params)
2291
+ req.send_request(options)
2292
+ end
2293
+
2294
+ # Lists the associations between resources and engagements where the
2295
+ # caller is a member and has at least one snapshot in the engagement.
2296
+ #
2297
+ # @option params [required, String] :catalog
2298
+ # Specifies the catalog in which to search for engagement-resource
2299
+ # associations. Valid Values: "AWS" or "Sandbox"
2300
+ #
2301
+ # * `AWS` for production environments.
2302
+ #
2303
+ # * `Sandbox` for testing and development purposes.
2304
+ #
2305
+ # @option params [String] :created_by
2306
+ # Filters the response to include only snapshots of resources owned by
2307
+ # the specified AWS account ID. Use this when you want to find
2308
+ # associations related to resources owned by a particular account.
2309
+ #
2310
+ # @option params [String] :engagement_identifier
2311
+ # Filters the results to include only associations related to the
2312
+ # specified engagement. Use this when you want to find all resources
2313
+ # associated with a specific engagement.
2314
+ #
2315
+ # @option params [Integer] :max_results
2316
+ # Limits the number of results returned in a single call. Use this to
2317
+ # control the number of results returned, especially useful for
2318
+ # pagination.
2319
+ #
2320
+ # @option params [String] :next_token
2321
+ # A token used for pagination of results. Include this token in
2322
+ # subsequent requests to retrieve the next set of results.
2323
+ #
2324
+ # @option params [String] :resource_identifier
2325
+ # Filters the results to include only associations with the specified
2326
+ # resource. Varies depending on the resource type. Use this when you
2327
+ # want to find all engagements associated with a specific resource.
2328
+ #
2329
+ # @option params [String] :resource_type
2330
+ # Filters the results to include only associations with resources of the
2331
+ # specified type.
2332
+ #
2333
+ # @return [Types::ListEngagementResourceAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2334
+ #
2335
+ # * {Types::ListEngagementResourceAssociationsResponse#engagement_resource_association_summaries #engagement_resource_association_summaries} => Array&lt;Types::EngagementResourceAssociationSummary&gt;
2336
+ # * {Types::ListEngagementResourceAssociationsResponse#next_token #next_token} => String
2337
+ #
2338
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2339
+ #
2340
+ # @example Request syntax with placeholder values
2341
+ #
2342
+ # resp = client.list_engagement_resource_associations({
2343
+ # catalog: "CatalogIdentifier", # required
2344
+ # created_by: "AwsAccount",
2345
+ # engagement_identifier: "EngagementIdentifier",
2346
+ # max_results: 1,
2347
+ # next_token: "String",
2348
+ # resource_identifier: "ResourceIdentifier",
2349
+ # resource_type: "Opportunity", # accepts Opportunity
2350
+ # })
2351
+ #
2352
+ # @example Response structure
2353
+ #
2354
+ # resp.engagement_resource_association_summaries #=> Array
2355
+ # resp.engagement_resource_association_summaries[0].catalog #=> String
2356
+ # resp.engagement_resource_association_summaries[0].created_by #=> String
2357
+ # resp.engagement_resource_association_summaries[0].engagement_id #=> String
2358
+ # resp.engagement_resource_association_summaries[0].resource_id #=> String
2359
+ # resp.engagement_resource_association_summaries[0].resource_type #=> String, one of "Opportunity"
2360
+ # resp.next_token #=> String
2361
+ #
2362
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListEngagementResourceAssociations AWS API Documentation
2363
+ #
2364
+ # @overload list_engagement_resource_associations(params = {})
2365
+ # @param [Hash] params ({})
2366
+ def list_engagement_resource_associations(params = {}, options = {})
2367
+ req = build_request(:list_engagement_resource_associations, params)
2368
+ req.send_request(options)
2369
+ end
2370
+
2371
+ # This action allows users to retrieve a list of Engagement records from
2372
+ # Partner Central. This action can be used to manage and track various
2373
+ # engagements across different stages of the partner selling process.
2374
+ #
2375
+ # @option params [required, String] :catalog
2376
+ # Specifies the catalog related to the request.
2377
+ #
2378
+ # @option params [Array<String>] :created_by
2379
+ # A list of AWS account IDs. When specified, the response includes
2380
+ # engagements created by these accounts. This filter is useful for
2381
+ # finding engagements created by specific team members.
2382
+ #
2383
+ # @option params [Array<String>] :engagement_identifier
2384
+ # An array of strings representing engagement identifiers to retrieve.
2385
+ #
2386
+ # @option params [Array<String>] :exclude_created_by
2387
+ # An array of strings representing AWS Account IDs. Use this to exclude
2388
+ # engagements created by specific users.
2389
+ #
2390
+ # @option params [Integer] :max_results
2391
+ # The maximum number of results to return in a single call.
2392
+ #
2393
+ # @option params [String] :next_token
2394
+ # The token for the next set of results. This value is returned from a
2395
+ # previous call.
2396
+ #
2397
+ # @option params [Types::EngagementSort] :sort
2398
+ # An object that specifies the sort order of the results.
2399
+ #
2400
+ # @return [Types::ListEngagementsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2401
+ #
2402
+ # * {Types::ListEngagementsResponse#engagement_summary_list #engagement_summary_list} => Array&lt;Types::EngagementSummary&gt;
2403
+ # * {Types::ListEngagementsResponse#next_token #next_token} => String
2404
+ #
2405
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2406
+ #
2407
+ # @example Request syntax with placeholder values
2408
+ #
2409
+ # resp = client.list_engagements({
2410
+ # catalog: "CatalogIdentifier", # required
2411
+ # created_by: ["AwsAccount"],
2412
+ # engagement_identifier: ["EngagementArnOrIdentifier"],
2413
+ # exclude_created_by: ["AwsAccount"],
2414
+ # max_results: 1,
2415
+ # next_token: "String",
2416
+ # sort: {
2417
+ # sort_by: "CreatedDate", # required, accepts CreatedDate
2418
+ # sort_order: "ASCENDING", # required, accepts ASCENDING, DESCENDING
2419
+ # },
2420
+ # })
2421
+ #
2422
+ # @example Response structure
2423
+ #
2424
+ # resp.engagement_summary_list #=> Array
2425
+ # resp.engagement_summary_list[0].arn #=> String
2426
+ # resp.engagement_summary_list[0].created_at #=> Time
2427
+ # resp.engagement_summary_list[0].created_by #=> String
2428
+ # resp.engagement_summary_list[0].id #=> String
2429
+ # resp.engagement_summary_list[0].member_count #=> Integer
2430
+ # resp.engagement_summary_list[0].title #=> String
2431
+ # resp.next_token #=> String
2432
+ #
2433
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListEngagements AWS API Documentation
2434
+ #
2435
+ # @overload list_engagements(params = {})
2436
+ # @param [Hash] params ({})
2437
+ def list_engagements(params = {}, options = {})
2438
+ req = build_request(:list_engagements, params)
2439
+ req.send_request(options)
2440
+ end
2441
+
2442
+ # This request accepts a list of filters that retrieve opportunity
2443
+ # subsets as well as sort options. This feature is available to partners
2444
+ # from [Partner Central][1] using the `ListOpportunities` API action.
1344
2445
  #
1345
2446
  # To synchronize your system with Amazon Web Services, only list the
1346
2447
  # opportunities that were newly created or updated. We recommend you
@@ -1446,6 +2547,7 @@ module Aws::PartnerCentralSelling
1446
2547
  #
1447
2548
  # resp.next_token #=> String
1448
2549
  # resp.opportunity_summaries #=> Array
2550
+ # resp.opportunity_summaries[0].arn #=> String
1449
2551
  # resp.opportunity_summaries[0].catalog #=> String
1450
2552
  # resp.opportunity_summaries[0].created_date #=> Time
1451
2553
  # resp.opportunity_summaries[0].customer.account.address.city #=> String
@@ -1472,6 +2574,7 @@ module Aws::PartnerCentralSelling
1472
2574
  # resp.opportunity_summaries[0].project.expected_customer_spend #=> Array
1473
2575
  # resp.opportunity_summaries[0].project.expected_customer_spend[0].amount #=> String
1474
2576
  # resp.opportunity_summaries[0].project.expected_customer_spend[0].currency_code #=> String, one of "USD", "EUR", "GBP", "AUD", "CAD", "CNY", "NZD", "INR", "JPY", "CHF", "SEK", "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOV", "BRL", "BSD", "BTN", "BWP", "BYN", "BZD", "CDF", "CHE", "CHW", "CLF", "CLP", "COP", "COU", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "FJD", "FKP", "GEL", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IQD", "IRR", "ISK", "JMD", "JOD", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRU", "MUR", "MVR", "MWK", "MXN", "MXV", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SGD", "SHP", "SLL", "SOS", "SRD", "SSP", "STN", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "USN", "UYI", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "XSU", "XUA", "YER", "ZAR", "ZMW", "ZWL"
2577
+ # resp.opportunity_summaries[0].project.expected_customer_spend[0].estimation_url #=> String
1475
2578
  # resp.opportunity_summaries[0].project.expected_customer_spend[0].frequency #=> String, one of "Monthly"
1476
2579
  # resp.opportunity_summaries[0].project.expected_customer_spend[0].target_company #=> String
1477
2580
  #
@@ -1484,6 +2587,153 @@ module Aws::PartnerCentralSelling
1484
2587
  req.send_request(options)
1485
2588
  end
1486
2589
 
2590
+ # Lists resource snapshot jobs owned by the customer. This operation
2591
+ # supports various filtering scenarios, including listing all jobs owned
2592
+ # by the caller, jobs for a specific engagement, jobs with a specific
2593
+ # status, or any combination of these filters.
2594
+ #
2595
+ # @option params [required, String] :catalog
2596
+ # Specifies the catalog related to the request.
2597
+ #
2598
+ # @option params [String] :engagement_identifier
2599
+ # The identifier of the engagement to filter the response.
2600
+ #
2601
+ # @option params [Integer] :max_results
2602
+ # The maximum number of results to return in a single call. If omitted,
2603
+ # defaults to 50.
2604
+ #
2605
+ # @option params [String] :next_token
2606
+ # The token for the next set of results.
2607
+ #
2608
+ # @option params [Types::SortObject] :sort
2609
+ # Configures the sorting of the response. If omitted, results are sorted
2610
+ # by `CreatedDate` in descending order.
2611
+ #
2612
+ # @option params [String] :status
2613
+ # The status of the jobs to filter the response.
2614
+ #
2615
+ # @return [Types::ListResourceSnapshotJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2616
+ #
2617
+ # * {Types::ListResourceSnapshotJobsResponse#next_token #next_token} => String
2618
+ # * {Types::ListResourceSnapshotJobsResponse#resource_snapshot_job_summaries #resource_snapshot_job_summaries} => Array&lt;Types::ResourceSnapshotJobSummary&gt;
2619
+ #
2620
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2621
+ #
2622
+ # @example Request syntax with placeholder values
2623
+ #
2624
+ # resp = client.list_resource_snapshot_jobs({
2625
+ # catalog: "CatalogIdentifier", # required
2626
+ # engagement_identifier: "EngagementIdentifier",
2627
+ # max_results: 1,
2628
+ # next_token: "String",
2629
+ # sort: {
2630
+ # sort_by: "CreatedDate", # accepts CreatedDate
2631
+ # sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
2632
+ # },
2633
+ # status: "Running", # accepts Running, Stopped
2634
+ # })
2635
+ #
2636
+ # @example Response structure
2637
+ #
2638
+ # resp.next_token #=> String
2639
+ # resp.resource_snapshot_job_summaries #=> Array
2640
+ # resp.resource_snapshot_job_summaries[0].arn #=> String
2641
+ # resp.resource_snapshot_job_summaries[0].engagement_id #=> String
2642
+ # resp.resource_snapshot_job_summaries[0].id #=> String
2643
+ # resp.resource_snapshot_job_summaries[0].status #=> String, one of "Running", "Stopped"
2644
+ #
2645
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListResourceSnapshotJobs AWS API Documentation
2646
+ #
2647
+ # @overload list_resource_snapshot_jobs(params = {})
2648
+ # @param [Hash] params ({})
2649
+ def list_resource_snapshot_jobs(params = {}, options = {})
2650
+ req = build_request(:list_resource_snapshot_jobs, params)
2651
+ req.send_request(options)
2652
+ end
2653
+
2654
+ # Retrieves a list of resource view snapshots based on specified
2655
+ # criteria. This operation supports various use cases, including:
2656
+ #
2657
+ # * Fetching all snapshots associated with an engagement.
2658
+ #
2659
+ # * Retrieving snapshots of a specific resource type within an
2660
+ # engagement.
2661
+ #
2662
+ # * Obtaining snapshots for a particular resource using a specified
2663
+ # template.
2664
+ #
2665
+ # * Accessing the latest snapshot of a resource within an engagement.
2666
+ #
2667
+ # * Filtering snapshots by resource owner.
2668
+ #
2669
+ # @option params [required, String] :catalog
2670
+ # Specifies the catalog related to the request.
2671
+ #
2672
+ # @option params [String] :created_by
2673
+ # Filters the response to include only snapshots of resources owned by
2674
+ # the specified AWS account.
2675
+ #
2676
+ # @option params [required, String] :engagement_identifier
2677
+ # The unique identifier of the engagement associated with the snapshots.
2678
+ #
2679
+ # @option params [Integer] :max_results
2680
+ # The maximum number of results to return in a single call.
2681
+ #
2682
+ # @option params [String] :next_token
2683
+ # The token for the next set of results.
2684
+ #
2685
+ # @option params [String] :resource_identifier
2686
+ # Filters the response to include only snapshots of the specified
2687
+ # resource.
2688
+ #
2689
+ # @option params [String] :resource_snapshot_template_identifier
2690
+ # Filters the response to include only snapshots created using the
2691
+ # specified template.
2692
+ #
2693
+ # @option params [String] :resource_type
2694
+ # Filters the response to include only snapshots of the specified
2695
+ # resource type.
2696
+ #
2697
+ # @return [Types::ListResourceSnapshotsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2698
+ #
2699
+ # * {Types::ListResourceSnapshotsResponse#next_token #next_token} => String
2700
+ # * {Types::ListResourceSnapshotsResponse#resource_snapshot_summaries #resource_snapshot_summaries} => Array&lt;Types::ResourceSnapshotSummary&gt;
2701
+ #
2702
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2703
+ #
2704
+ # @example Request syntax with placeholder values
2705
+ #
2706
+ # resp = client.list_resource_snapshots({
2707
+ # catalog: "CatalogIdentifier", # required
2708
+ # created_by: "AwsAccount",
2709
+ # engagement_identifier: "EngagementIdentifier", # required
2710
+ # max_results: 1,
2711
+ # next_token: "String",
2712
+ # resource_identifier: "ResourceIdentifier",
2713
+ # resource_snapshot_template_identifier: "ResourceTemplateName",
2714
+ # resource_type: "Opportunity", # accepts Opportunity
2715
+ # })
2716
+ #
2717
+ # @example Response structure
2718
+ #
2719
+ # resp.next_token #=> String
2720
+ # resp.resource_snapshot_summaries #=> Array
2721
+ # resp.resource_snapshot_summaries[0].arn #=> String
2722
+ # resp.resource_snapshot_summaries[0].created_by #=> String
2723
+ # resp.resource_snapshot_summaries[0].resource_id #=> String
2724
+ # resp.resource_snapshot_summaries[0].resource_snapshot_template_name #=> String
2725
+ # resp.resource_snapshot_summaries[0].resource_type #=> String, one of "Opportunity"
2726
+ # resp.resource_snapshot_summaries[0].revision #=> Integer
2727
+ #
2728
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListResourceSnapshots AWS API Documentation
2729
+ #
2730
+ # @overload list_resource_snapshots(params = {})
2731
+ # @param [Hash] params ({})
2732
+ def list_resource_snapshots(params = {}, options = {})
2733
+ req = build_request(:list_resource_snapshots, params)
2734
+ req.send_request(options)
2735
+ end
2736
+
1487
2737
  # Retrieves a list of Partner Solutions that the partner registered on
1488
2738
  # Partner Central. This API is used to generate a list of solutions that
1489
2739
  # an end user selects from for association with an opportunity.
@@ -1550,6 +2800,7 @@ module Aws::PartnerCentralSelling
1550
2800
  #
1551
2801
  # resp.next_token #=> String
1552
2802
  # resp.solution_summaries #=> Array
2803
+ # resp.solution_summaries[0].arn #=> String
1553
2804
  # resp.solution_summaries[0].catalog #=> String
1554
2805
  # resp.solution_summaries[0].category #=> String
1555
2806
  # resp.solution_summaries[0].created_date #=> Time
@@ -1566,6 +2817,75 @@ module Aws::PartnerCentralSelling
1566
2817
  req.send_request(options)
1567
2818
  end
1568
2819
 
2820
+ # Returns a list of tags for a resource.
2821
+ #
2822
+ # @option params [required, String] :resource_arn
2823
+ # The Amazon Resource Name (ARN) of the resource for which you want to
2824
+ # retrieve tags.
2825
+ #
2826
+ # @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2827
+ #
2828
+ # * {Types::ListTagsForResourceResponse#tags #tags} => Array&lt;Types::Tag&gt;
2829
+ #
2830
+ # @example Request syntax with placeholder values
2831
+ #
2832
+ # resp = client.list_tags_for_resource({
2833
+ # resource_arn: "TaggableResourceArn", # required
2834
+ # })
2835
+ #
2836
+ # @example Response structure
2837
+ #
2838
+ # resp.tags #=> Array
2839
+ # resp.tags[0].key #=> String
2840
+ # resp.tags[0].value #=> String
2841
+ #
2842
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListTagsForResource AWS API Documentation
2843
+ #
2844
+ # @overload list_tags_for_resource(params = {})
2845
+ # @param [Hash] params ({})
2846
+ def list_tags_for_resource(params = {}, options = {})
2847
+ req = build_request(:list_tags_for_resource, params)
2848
+ req.send_request(options)
2849
+ end
2850
+
2851
+ # Updates the currently set system settings, which include the IAM Role
2852
+ # used for resource snapshot jobs.
2853
+ #
2854
+ # @option params [required, String] :catalog
2855
+ # Specifies the catalog in which the settings will be updated.
2856
+ # Acceptable values include `AWS` for production and `Sandbox` for
2857
+ # testing environments.
2858
+ #
2859
+ # @option params [String] :resource_snapshot_job_role_identifier
2860
+ # Specifies the ARN of the IAM Role used for resource snapshot job
2861
+ # executions.
2862
+ #
2863
+ # @return [Types::PutSellingSystemSettingsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2864
+ #
2865
+ # * {Types::PutSellingSystemSettingsResponse#catalog #catalog} => String
2866
+ # * {Types::PutSellingSystemSettingsResponse#resource_snapshot_job_role_arn #resource_snapshot_job_role_arn} => String
2867
+ #
2868
+ # @example Request syntax with placeholder values
2869
+ #
2870
+ # resp = client.put_selling_system_settings({
2871
+ # catalog: "CatalogIdentifier", # required
2872
+ # resource_snapshot_job_role_identifier: "ResourceSnapshotJobRoleIdentifier",
2873
+ # })
2874
+ #
2875
+ # @example Response structure
2876
+ #
2877
+ # resp.catalog #=> String
2878
+ # resp.resource_snapshot_job_role_arn #=> String
2879
+ #
2880
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/PutSellingSystemSettings AWS API Documentation
2881
+ #
2882
+ # @overload put_selling_system_settings(params = {})
2883
+ # @param [Hash] params ({})
2884
+ def put_selling_system_settings(params = {}, options = {})
2885
+ req = build_request(:put_selling_system_settings, params)
2886
+ req.send_request(options)
2887
+ end
2888
+
1569
2889
  # This action rejects an `EngagementInvitation` that AWS shared.
1570
2890
  # Rejecting an invitation indicates that the partner doesn't want to
1571
2891
  # pursue the opportunity, and all related data will become inaccessible
@@ -1644,12 +2964,16 @@ module Aws::PartnerCentralSelling
1644
2964
  # accepted. Providing the correct identifier helps ensure that the
1645
2965
  # correct engagement is processed.
1646
2966
  #
2967
+ # @option params [Array<Types::Tag>] :tags
2968
+ # A list of objects specifying each tag name and value.
2969
+ #
1647
2970
  # @return [Types::StartEngagementByAcceptingInvitationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1648
2971
  #
1649
2972
  # * {Types::StartEngagementByAcceptingInvitationTaskResponse#engagement_invitation_id #engagement_invitation_id} => String
1650
2973
  # * {Types::StartEngagementByAcceptingInvitationTaskResponse#message #message} => String
1651
2974
  # * {Types::StartEngagementByAcceptingInvitationTaskResponse#opportunity_id #opportunity_id} => String
1652
2975
  # * {Types::StartEngagementByAcceptingInvitationTaskResponse#reason_code #reason_code} => String
2976
+ # * {Types::StartEngagementByAcceptingInvitationTaskResponse#resource_snapshot_job_id #resource_snapshot_job_id} => String
1653
2977
  # * {Types::StartEngagementByAcceptingInvitationTaskResponse#start_time #start_time} => Time
1654
2978
  # * {Types::StartEngagementByAcceptingInvitationTaskResponse#task_arn #task_arn} => String
1655
2979
  # * {Types::StartEngagementByAcceptingInvitationTaskResponse#task_id #task_id} => String
@@ -1661,6 +2985,12 @@ module Aws::PartnerCentralSelling
1661
2985
  # catalog: "CatalogIdentifier", # required
1662
2986
  # client_token: "StartEngagementByAcceptingInvitationTaskRequestClientTokenString", # required
1663
2987
  # identifier: "EngagementInvitationArnOrIdentifier", # required
2988
+ # tags: [
2989
+ # {
2990
+ # key: "TagKey", # required
2991
+ # value: "TagValue", # required
2992
+ # },
2993
+ # ],
1664
2994
  # })
1665
2995
  #
1666
2996
  # @example Response structure
@@ -1668,7 +2998,8 @@ module Aws::PartnerCentralSelling
1668
2998
  # resp.engagement_invitation_id #=> String
1669
2999
  # resp.message #=> String
1670
3000
  # resp.opportunity_id #=> String
1671
- # resp.reason_code #=> String, one of "InvitationAccessDenied", "EngagementAccessDenied", "OpportunityAccessDenied", "ResourceSnapshotJobAccessDenied", "EngagementValidationFailed", "OpportunitySubmissionFailed", "EngagementInvitationConflict", "InternalError", "OpportunityValidationFailed", "OpportunityConflict", "ResourceSnapshotAccessDenied"
3001
+ # resp.reason_code #=> String, one of "InvitationAccessDenied", "InvitationValidationFailed", "EngagementAccessDenied", "OpportunityAccessDenied", "ResourceSnapshotJobAccessDenied", "ResourceSnapshotJobValidationFailed", "ResourceSnapshotJobConflict", "EngagementValidationFailed", "EngagementConflict", "OpportunitySubmissionFailed", "EngagementInvitationConflict", "InternalError", "OpportunityValidationFailed", "OpportunityConflict", "ResourceSnapshotAccessDenied", "ResourceSnapshotValidationFailed", "ResourceSnapshotConflict", "ServiceQuotaExceeded", "RequestThrottled"
3002
+ # resp.resource_snapshot_job_id #=> String
1672
3003
  # resp.start_time #=> Time
1673
3004
  # resp.task_arn #=> String
1674
3005
  # resp.task_id #=> String
@@ -1712,11 +3043,17 @@ module Aws::PartnerCentralSelling
1712
3043
  # task is to be initiated. This helps ensure that the task is applied to
1713
3044
  # the correct opportunity.
1714
3045
  #
3046
+ # @option params [Array<Types::Tag>] :tags
3047
+ # A list of objects specifying each tag name and value.
3048
+ #
1715
3049
  # @return [Types::StartEngagementFromOpportunityTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1716
3050
  #
3051
+ # * {Types::StartEngagementFromOpportunityTaskResponse#engagement_id #engagement_id} => String
3052
+ # * {Types::StartEngagementFromOpportunityTaskResponse#engagement_invitation_id #engagement_invitation_id} => String
1717
3053
  # * {Types::StartEngagementFromOpportunityTaskResponse#message #message} => String
1718
3054
  # * {Types::StartEngagementFromOpportunityTaskResponse#opportunity_id #opportunity_id} => String
1719
3055
  # * {Types::StartEngagementFromOpportunityTaskResponse#reason_code #reason_code} => String
3056
+ # * {Types::StartEngagementFromOpportunityTaskResponse#resource_snapshot_job_id #resource_snapshot_job_id} => String
1720
3057
  # * {Types::StartEngagementFromOpportunityTaskResponse#start_time #start_time} => Time
1721
3058
  # * {Types::StartEngagementFromOpportunityTaskResponse#task_arn #task_arn} => String
1722
3059
  # * {Types::StartEngagementFromOpportunityTaskResponse#task_id #task_id} => String
@@ -1732,13 +3069,22 @@ module Aws::PartnerCentralSelling
1732
3069
  # catalog: "CatalogIdentifier", # required
1733
3070
  # client_token: "StartEngagementFromOpportunityTaskRequestClientTokenString", # required
1734
3071
  # identifier: "OpportunityIdentifier", # required
3072
+ # tags: [
3073
+ # {
3074
+ # key: "TagKey", # required
3075
+ # value: "TagValue", # required
3076
+ # },
3077
+ # ],
1735
3078
  # })
1736
3079
  #
1737
3080
  # @example Response structure
1738
3081
  #
3082
+ # resp.engagement_id #=> String
3083
+ # resp.engagement_invitation_id #=> String
1739
3084
  # resp.message #=> String
1740
3085
  # resp.opportunity_id #=> String
1741
- # resp.reason_code #=> String, one of "InvitationAccessDenied", "EngagementAccessDenied", "OpportunityAccessDenied", "ResourceSnapshotJobAccessDenied", "EngagementValidationFailed", "OpportunitySubmissionFailed", "EngagementInvitationConflict", "InternalError", "OpportunityValidationFailed", "OpportunityConflict", "ResourceSnapshotAccessDenied"
3086
+ # resp.reason_code #=> String, one of "InvitationAccessDenied", "InvitationValidationFailed", "EngagementAccessDenied", "OpportunityAccessDenied", "ResourceSnapshotJobAccessDenied", "ResourceSnapshotJobValidationFailed", "ResourceSnapshotJobConflict", "EngagementValidationFailed", "EngagementConflict", "OpportunitySubmissionFailed", "EngagementInvitationConflict", "InternalError", "OpportunityValidationFailed", "OpportunityConflict", "ResourceSnapshotAccessDenied", "ResourceSnapshotValidationFailed", "ResourceSnapshotConflict", "ServiceQuotaExceeded", "RequestThrottled"
3087
+ # resp.resource_snapshot_job_id #=> String
1742
3088
  # resp.start_time #=> Time
1743
3089
  # resp.task_arn #=> String
1744
3090
  # resp.task_id #=> String
@@ -1753,6 +3099,185 @@ module Aws::PartnerCentralSelling
1753
3099
  req.send_request(options)
1754
3100
  end
1755
3101
 
3102
+ # Starts a resource snapshot job that has been previously created.
3103
+ #
3104
+ # @option params [required, String] :catalog
3105
+ # Specifies the catalog related to the request. Valid values are:
3106
+ #
3107
+ # * AWS: Starts the request from the production AWS environment.
3108
+ #
3109
+ # * Sandbox: Starts the request from a sandbox environment used for
3110
+ # testing or development purposes.
3111
+ #
3112
+ # @option params [required, String] :resource_snapshot_job_identifier
3113
+ # The identifier of the resource snapshot job to start.
3114
+ #
3115
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3116
+ #
3117
+ # @example Request syntax with placeholder values
3118
+ #
3119
+ # resp = client.start_resource_snapshot_job({
3120
+ # catalog: "CatalogIdentifier", # required
3121
+ # resource_snapshot_job_identifier: "ResourceSnapshotJobIdentifier", # required
3122
+ # })
3123
+ #
3124
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/StartResourceSnapshotJob AWS API Documentation
3125
+ #
3126
+ # @overload start_resource_snapshot_job(params = {})
3127
+ # @param [Hash] params ({})
3128
+ def start_resource_snapshot_job(params = {}, options = {})
3129
+ req = build_request(:start_resource_snapshot_job, params)
3130
+ req.send_request(options)
3131
+ end
3132
+
3133
+ # Stops a resource snapshot job. The job must be started prior to being
3134
+ # stopped.
3135
+ #
3136
+ # @option params [required, String] :catalog
3137
+ # Specifies the catalog related to the request. Valid values are:
3138
+ #
3139
+ # * AWS: Stops the request from the production AWS environment.
3140
+ #
3141
+ # * Sandbox: Stops the request from a sandbox environment used for
3142
+ # testing or development purposes.
3143
+ #
3144
+ # @option params [required, String] :resource_snapshot_job_identifier
3145
+ # The identifier of the job to stop.
3146
+ #
3147
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3148
+ #
3149
+ # @example Request syntax with placeholder values
3150
+ #
3151
+ # resp = client.stop_resource_snapshot_job({
3152
+ # catalog: "CatalogIdentifier", # required
3153
+ # resource_snapshot_job_identifier: "ResourceSnapshotJobIdentifier", # required
3154
+ # })
3155
+ #
3156
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/StopResourceSnapshotJob AWS API Documentation
3157
+ #
3158
+ # @overload stop_resource_snapshot_job(params = {})
3159
+ # @param [Hash] params ({})
3160
+ def stop_resource_snapshot_job(params = {}, options = {})
3161
+ req = build_request(:stop_resource_snapshot_job, params)
3162
+ req.send_request(options)
3163
+ end
3164
+
3165
+ # Use this action to submit an Opportunity that was previously created
3166
+ # by partner for AWS review. After you perform this action, the
3167
+ # Opportunity becomes non-editable until it is reviewed by AWS and has `
3168
+ # LifeCycle.ReviewStatus ` as either `Approved` or `Action Required`.
3169
+ #
3170
+ # @option params [required, String] :catalog
3171
+ # Specifies the catalog related to the request. Valid values are:
3172
+ #
3173
+ # * AWS: Submits the opportunity request from the production AWS
3174
+ # environment.
3175
+ #
3176
+ # * Sandbox: Submits the opportunity request from a sandbox environment
3177
+ # used for testing or development purposes.
3178
+ #
3179
+ # @option params [required, String] :identifier
3180
+ # The identifier of the Opportunity previously created by partner and
3181
+ # needs to be submitted.
3182
+ #
3183
+ # @option params [required, String] :involvement_type
3184
+ # Specifies the level of AWS sellers' involvement on the opportunity.
3185
+ # Valid values:
3186
+ #
3187
+ # * `Co-sell`: Indicates the user wants to co-sell with AWS. Share the
3188
+ # opportunity with AWS to receive deal assistance and support.
3189
+ #
3190
+ # * `For Visibility Only`: Indicates that the user does not need support
3191
+ # from AWS Sales Rep. Share this opportunity with AWS for visibility
3192
+ # only, you will not receive deal assistance and support.
3193
+ #
3194
+ # @option params [String] :visibility
3195
+ # Determines whether to restrict visibility of the opportunity from AWS
3196
+ # sales. Default value is Full. Valid values:
3197
+ #
3198
+ # * `Full`: The opportunity is fully visible to AWS sales.
3199
+ #
3200
+ # * `Limited`: The opportunity has restricted visibility to AWS sales.
3201
+ #
3202
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3203
+ #
3204
+ # @example Request syntax with placeholder values
3205
+ #
3206
+ # resp = client.submit_opportunity({
3207
+ # catalog: "CatalogIdentifier", # required
3208
+ # identifier: "OpportunityIdentifier", # required
3209
+ # involvement_type: "For Visibility Only", # required, accepts For Visibility Only, Co-Sell
3210
+ # visibility: "Full", # accepts Full, Limited
3211
+ # })
3212
+ #
3213
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/SubmitOpportunity AWS API Documentation
3214
+ #
3215
+ # @overload submit_opportunity(params = {})
3216
+ # @param [Hash] params ({})
3217
+ def submit_opportunity(params = {}, options = {})
3218
+ req = build_request(:submit_opportunity, params)
3219
+ req.send_request(options)
3220
+ end
3221
+
3222
+ # Assigns one or more tags (key-value pairs) to the specified resource.
3223
+ #
3224
+ # @option params [required, String] :resource_arn
3225
+ # The Amazon Resource Name (ARN) of the resource that you want to tag.
3226
+ #
3227
+ # @option params [required, Array<Types::Tag>] :tags
3228
+ # A map of the key-value pairs of the tag or tags to assign to the
3229
+ # resource.
3230
+ #
3231
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3232
+ #
3233
+ # @example Request syntax with placeholder values
3234
+ #
3235
+ # resp = client.tag_resource({
3236
+ # resource_arn: "TaggableResourceArn", # required
3237
+ # tags: [ # required
3238
+ # {
3239
+ # key: "TagKey", # required
3240
+ # value: "TagValue", # required
3241
+ # },
3242
+ # ],
3243
+ # })
3244
+ #
3245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/TagResource AWS API Documentation
3246
+ #
3247
+ # @overload tag_resource(params = {})
3248
+ # @param [Hash] params ({})
3249
+ def tag_resource(params = {}, options = {})
3250
+ req = build_request(:tag_resource, params)
3251
+ req.send_request(options)
3252
+ end
3253
+
3254
+ # Removes a tag or tags from a resource.
3255
+ #
3256
+ # @option params [required, String] :resource_arn
3257
+ # The Amazon Resource Name (ARN) of the resource that you want to untag.
3258
+ #
3259
+ # @option params [required, Array<String>] :tag_keys
3260
+ # The keys of the key-value pairs for the tag or tags you want to remove
3261
+ # from the specified resource.
3262
+ #
3263
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3264
+ #
3265
+ # @example Request syntax with placeholder values
3266
+ #
3267
+ # resp = client.untag_resource({
3268
+ # resource_arn: "TaggableResourceArn", # required
3269
+ # tag_keys: ["TagKey"], # required
3270
+ # })
3271
+ #
3272
+ # @see http://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/UntagResource AWS API Documentation
3273
+ #
3274
+ # @overload untag_resource(params = {})
3275
+ # @param [Hash] params ({})
3276
+ def untag_resource(params = {}, options = {})
3277
+ req = build_request(:untag_resource, params)
3278
+ req.send_request(options)
3279
+ end
3280
+
1756
3281
  # Updates the `Opportunity` record identified by a given `Identifier`.
1757
3282
  # This operation allows you to modify the details of an existing
1758
3283
  # opportunity to reflect the latest information and progress. Use this
@@ -1857,13 +3382,6 @@ module Aws::PartnerCentralSelling
1857
3382
  # public sector where the partner needs RFx support from Amazon Web
1858
3383
  # Services.
1859
3384
  #
1860
- # * Do Not Need Support from AWS Sales Rep: Indicates that a partner
1861
- # doesn't need support from an Amazon Web Services Sales
1862
- # representative. The opportunity is managed solely by the partner.
1863
- # It's possible to request coselling support on these opportunities
1864
- # at any stage during their lifecycle. Also known as,
1865
- # for-visibility-only (FVO) opportunity.
1866
- #
1867
3385
  # @option params [Types::Project] :project
1868
3386
  # An object that contains project details summary for the `Opportunity`.
1869
3387
  #
@@ -1945,6 +3463,7 @@ module Aws::PartnerCentralSelling
1945
3463
  # {
1946
3464
  # amount: "String", # required
1947
3465
  # currency_code: "USD", # required, accepts USD, EUR, GBP, AUD, CAD, CNY, NZD, INR, JPY, CHF, SEK, AED, AFN, ALL, AMD, ANG, AOA, ARS, AWG, AZN, BAM, BBD, BDT, BGN, BHD, BIF, BMD, BND, BOB, BOV, BRL, BSD, BTN, BWP, BYN, BZD, CDF, CHE, CHW, CLF, CLP, COP, COU, CRC, CUC, CUP, CVE, CZK, DJF, DKK, DOP, DZD, EGP, ERN, ETB, FJD, FKP, GEL, GHS, GIP, GMD, GNF, GTQ, GYD, HKD, HNL, HRK, HTG, HUF, IDR, ILS, IQD, IRR, ISK, JMD, JOD, KES, KGS, KHR, KMF, KPW, KRW, KWD, KYD, KZT, LAK, LBP, LKR, LRD, LSL, LYD, MAD, MDL, MGA, MKD, MMK, MNT, MOP, MRU, MUR, MVR, MWK, MXN, MXV, MYR, MZN, NAD, NGN, NIO, NOK, NPR, OMR, PAB, PEN, PGK, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, RWF, SAR, SBD, SCR, SDG, SGD, SHP, SLL, SOS, SRD, SSP, STN, SVC, SYP, SZL, THB, TJS, TMT, TND, TOP, TRY, TTD, TWD, TZS, UAH, UGX, USN, UYI, UYU, UZS, VEF, VND, VUV, WST, XAF, XCD, XDR, XOF, XPF, XSU, XUA, YER, ZAR, ZMW, ZWL
3466
+ # estimation_url: "WebsiteUrl",
1948
3467
  # frequency: "Monthly", # required, accepts Monthly
1949
3468
  # target_company: "ExpectedCustomerSpendTargetCompanyString", # required
1950
3469
  # },
@@ -1998,7 +3517,7 @@ module Aws::PartnerCentralSelling
1998
3517
  tracer: tracer
1999
3518
  )
2000
3519
  context[:gem_name] = 'aws-sdk-partnercentralselling'
2001
- context[:gem_version] = '1.2.0'
3520
+ context[:gem_version] = '1.4.0'
2002
3521
  Seahorse::Client::Request.new(handlers, context)
2003
3522
  end
2004
3523