aws-sdk-partnercentralselling 1.3.0 → 1.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae3b2cb2464243a5d52a91c54c1041b1aa50bf0c09ff3116d6dc82036b747cf4
4
- data.tar.gz: ef7d4cd94671dbd4e1c402305e70e18b420626ca4c348ff7fb81282758d6cc2e
3
+ metadata.gz: 25af7fcd0b30256f4ca8b0d99ef93ba1aa90231a72d4d0439f33321878747f59
4
+ data.tar.gz: 8bb656097f5c04d4f5caa9ffbec8127b4fbccd6844c840a159b39ed72ebfb253
5
5
  SHA512:
6
- metadata.gz: 15a43d295879dc6ac49de79fde7875cecbe0d0dc34b93cdcab34f068c8306f22fe55924d70f3c8b6052264fd8a3318a266840090614e589afea9e891cd717f61
7
- data.tar.gz: 46a3f8e675883352d0c51be4ccfc4b3a9bdf0340b97e25517f50f43406b305cd0ce1e26e5b4a5c965e402ab2b113babd45ccfc0608dde5b5b8a2bf5bf3b1fdbd
6
+ metadata.gz: 5bb51efe407f466b4659d452164ca095a5c556286df87c1e9f4cdb9c795362571cc2b15f7346bc0d1389d5f696f9b9cae91d2076167458903667282494dce9d1
7
+ data.tar.gz: 1f8ba87dda12427eb84d0d3277d83311530fb8773ac0712bddcb5e33509c7fb66ba521e3dbf63e0c3f11f38f4eec7c743d3c3878adcb8fef4563b8247d240fe7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.4.0 (2025-01-15)
5
+ ------------------
6
+
7
+ * Feature - Add Tagging support for ResourceSnapshotJob resources
8
+
4
9
  1.3.0 (2024-12-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.3.0
1
+ 1.4.0
@@ -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.
@@ -835,8 +858,8 @@ module Aws::PartnerCentralSelling
835
858
  # 2. To associate a solution with the opportunity, use
836
859
  # `AssociateOpportunity`.
837
860
  #
838
- # 3. To submit the opportunity, use
839
- # `StartEngagementFromOpportunityTask`.
861
+ # 3. To start the engagement with AWS, use
862
+ # `StartEngagementFromOpportunity`.
840
863
  #
841
864
  # After submission, you can't edit the opportunity until the review is
842
865
  # complete. But opportunities in the `Pending Submission` state must
@@ -964,13 +987,6 @@ module Aws::PartnerCentralSelling
964
987
  # public sector where the partner needs Amazon Web Services RFx
965
988
  # support.
966
989
  #
967
- # * Do Not Need Support from AWS Sales Rep: Indicates that a partner
968
- # doesn't need support from an Amazon Web Services sales
969
- # representative, and the partner solely manages the opportunity.
970
- # It's possible to request coselling support on these opportunities
971
- # at any stage during their lifecycles. This is also known as a
972
- # for-visibility-only (FVO) opportunity.
973
- #
974
990
  # @option params [Types::Project] :project
975
991
  # An object that contains project details for the `Opportunity`.
976
992
  #
@@ -1179,9 +1195,8 @@ module Aws::PartnerCentralSelling
1179
1195
  # values are `AWS` and ` Sandbox`.
1180
1196
  #
1181
1197
  # @option params [required, String] :client_token
1182
- # Specifies a unique, client-generated UUID to ensure that the request
1183
- # is handled exactly once. This token helps prevent duplicate snapshot
1184
- # job creations.
1198
+ # A client-generated UUID used for idempotency check. The token helps
1199
+ # prevent duplicate job creations.
1185
1200
  #
1186
1201
  # **A suitable default value is auto-generated.** You should normally
1187
1202
  # not need to pass this option.**
@@ -1192,7 +1207,7 @@ module Aws::PartnerCentralSelling
1192
1207
  #
1193
1208
  # @option params [required, String] :resource_identifier
1194
1209
  # Specifies the identifier of the specific resource to be snapshotted.
1195
- # The format depends on the `ResourceType`.
1210
+ # The format depends on the ` ResourceType`.
1196
1211
  #
1197
1212
  # @option params [required, String] :resource_snapshot_template_identifier
1198
1213
  # Specifies the name of the template that defines the schema for the
@@ -1200,7 +1215,10 @@ module Aws::PartnerCentralSelling
1200
1215
  #
1201
1216
  # @option params [required, String] :resource_type
1202
1217
  # The type of resource for which the snapshot job is being created. Must
1203
- # be one of the supported resource types `Opportunity`.
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.
1204
1222
  #
1205
1223
  # @return [Types::CreateResourceSnapshotJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1206
1224
  #
@@ -1216,6 +1234,12 @@ module Aws::PartnerCentralSelling
1216
1234
  # resource_identifier: "ResourceIdentifier", # required
1217
1235
  # resource_snapshot_template_identifier: "ResourceTemplateName", # required
1218
1236
  # resource_type: "Opportunity", # required, accepts Opportunity
1237
+ # tags: [
1238
+ # {
1239
+ # key: "TagKey", # required
1240
+ # value: "TagValue", # required
1241
+ # },
1242
+ # ],
1219
1243
  # })
1220
1244
  #
1221
1245
  # @example Response structure
@@ -2011,7 +2035,7 @@ module Aws::PartnerCentralSelling
2011
2035
  # resp.task_summaries[0].engagement_invitation_id #=> String
2012
2036
  # resp.task_summaries[0].message #=> String
2013
2037
  # resp.task_summaries[0].opportunity_id #=> String
2014
- # resp.task_summaries[0].reason_code #=> String, one of "InvitationAccessDenied", "InvitationValidationFailed", "EngagementAccessDenied", "OpportunityAccessDenied", "ResourceSnapshotJobAccessDenied", "ResourceSnapshotJobValidationFailed", "ResourceSnapshotJobConflict", "EngagementValidationFailed", "EngagementConflict", "OpportunitySubmissionFailed", "EngagementInvitationConflict", "OpportunityValidationFailed", "OpportunityConflict", "ResourceSnapshotAccessDenied", "ResourceSnapshotValidationFailed", "ResourceSnapshotConflict", "InternalError", "ServiceQuotaExceeded", "RequestThrottled"
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"
2015
2039
  # resp.task_summaries[0].resource_snapshot_job_id #=> String
2016
2040
  # resp.task_summaries[0].start_time #=> Time
2017
2041
  # resp.task_summaries[0].task_arn #=> String
@@ -2101,7 +2125,7 @@ module Aws::PartnerCentralSelling
2101
2125
  # resp.task_summaries[0].engagement_invitation_id #=> String
2102
2126
  # resp.task_summaries[0].message #=> String
2103
2127
  # resp.task_summaries[0].opportunity_id #=> String
2104
- # resp.task_summaries[0].reason_code #=> String, one of "InvitationAccessDenied", "InvitationValidationFailed", "EngagementAccessDenied", "OpportunityAccessDenied", "ResourceSnapshotJobAccessDenied", "ResourceSnapshotJobValidationFailed", "ResourceSnapshotJobConflict", "EngagementValidationFailed", "EngagementConflict", "OpportunitySubmissionFailed", "EngagementInvitationConflict", "OpportunityValidationFailed", "OpportunityConflict", "ResourceSnapshotAccessDenied", "ResourceSnapshotValidationFailed", "ResourceSnapshotConflict", "InternalError", "ServiceQuotaExceeded", "RequestThrottled"
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"
2105
2129
  # resp.task_summaries[0].resource_snapshot_job_id #=> String
2106
2130
  # resp.task_summaries[0].start_time #=> Time
2107
2131
  # resp.task_summaries[0].task_arn #=> String
@@ -2216,17 +2240,17 @@ module Aws::PartnerCentralSelling
2216
2240
  req.send_request(options)
2217
2241
  end
2218
2242
 
2219
- # Retrieves the details of member partners in an engagement. This
2220
- # operation can only be invoked by members of the engagement. The
2243
+ # Retrieves the details of member partners in an Engagement. This
2244
+ # operation can only be invoked by members of the Engagement. The
2221
2245
  # `ListEngagementMembers` operation allows you to fetch information
2222
- # about the members of a specific engagement. This action is restricted
2223
- # to members of the engagement being queried.
2246
+ # about the members of a specific Engagement. This action is restricted
2247
+ # to members of the Engagement being queried.
2224
2248
  #
2225
2249
  # @option params [required, String] :catalog
2226
2250
  # The catalog related to the request.
2227
2251
  #
2228
2252
  # @option params [required, String] :identifier
2229
- # Identifier of the engagement record to retrieve members from.
2253
+ # Identifier of the Engagement record to retrieve members from.
2230
2254
  #
2231
2255
  # @option params [Integer] :max_results
2232
2256
  # The maximum number of results to return in a single call.
@@ -2272,11 +2296,15 @@ module Aws::PartnerCentralSelling
2272
2296
  #
2273
2297
  # @option params [required, String] :catalog
2274
2298
  # Specifies the catalog in which to search for engagement-resource
2275
- # associations.
2299
+ # associations. Valid Values: "AWS" or "Sandbox"
2300
+ #
2301
+ # * `AWS` for production environments.
2302
+ #
2303
+ # * `Sandbox` for testing and development purposes.
2276
2304
  #
2277
2305
  # @option params [String] :created_by
2278
- # Filters the results to include only associations with resources owned
2279
- # by the specified AWS account. Use this when you want to find
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
2280
2308
  # associations related to resources owned by a particular account.
2281
2309
  #
2282
2310
  # @option params [String] :engagement_identifier
@@ -2340,7 +2368,7 @@ module Aws::PartnerCentralSelling
2340
2368
  req.send_request(options)
2341
2369
  end
2342
2370
 
2343
- # This action allows users to retrieve a list of engagement records from
2371
+ # This action allows users to retrieve a list of Engagement records from
2344
2372
  # Partner Central. This action can be used to manage and track various
2345
2373
  # engagements across different stages of the partner selling process.
2346
2374
  #
@@ -2624,13 +2652,25 @@ module Aws::PartnerCentralSelling
2624
2652
  end
2625
2653
 
2626
2654
  # Retrieves a list of resource view snapshots based on specified
2627
- # criteria.
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.
2628
2668
  #
2629
2669
  # @option params [required, String] :catalog
2630
2670
  # Specifies the catalog related to the request.
2631
2671
  #
2632
2672
  # @option params [String] :created_by
2633
- # Filters the response to include only snapshots of resources created by
2673
+ # Filters the response to include only snapshots of resources owned by
2634
2674
  # the specified AWS account.
2635
2675
  #
2636
2676
  # @option params [required, String] :engagement_identifier
@@ -2777,6 +2817,37 @@ module Aws::PartnerCentralSelling
2777
2817
  req.send_request(options)
2778
2818
  end
2779
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
+
2780
2851
  # Updates the currently set system settings, which include the IAM Role
2781
2852
  # used for resource snapshot jobs.
2782
2853
  #
@@ -2893,6 +2964,9 @@ module Aws::PartnerCentralSelling
2893
2964
  # accepted. Providing the correct identifier helps ensure that the
2894
2965
  # correct engagement is processed.
2895
2966
  #
2967
+ # @option params [Array<Types::Tag>] :tags
2968
+ # A list of objects specifying each tag name and value.
2969
+ #
2896
2970
  # @return [Types::StartEngagementByAcceptingInvitationTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2897
2971
  #
2898
2972
  # * {Types::StartEngagementByAcceptingInvitationTaskResponse#engagement_invitation_id #engagement_invitation_id} => String
@@ -2911,6 +2985,12 @@ module Aws::PartnerCentralSelling
2911
2985
  # catalog: "CatalogIdentifier", # required
2912
2986
  # client_token: "StartEngagementByAcceptingInvitationTaskRequestClientTokenString", # required
2913
2987
  # identifier: "EngagementInvitationArnOrIdentifier", # required
2988
+ # tags: [
2989
+ # {
2990
+ # key: "TagKey", # required
2991
+ # value: "TagValue", # required
2992
+ # },
2993
+ # ],
2914
2994
  # })
2915
2995
  #
2916
2996
  # @example Response structure
@@ -2918,7 +2998,7 @@ module Aws::PartnerCentralSelling
2918
2998
  # resp.engagement_invitation_id #=> String
2919
2999
  # resp.message #=> String
2920
3000
  # resp.opportunity_id #=> String
2921
- # resp.reason_code #=> String, one of "InvitationAccessDenied", "InvitationValidationFailed", "EngagementAccessDenied", "OpportunityAccessDenied", "ResourceSnapshotJobAccessDenied", "ResourceSnapshotJobValidationFailed", "ResourceSnapshotJobConflict", "EngagementValidationFailed", "EngagementConflict", "OpportunitySubmissionFailed", "EngagementInvitationConflict", "OpportunityValidationFailed", "OpportunityConflict", "ResourceSnapshotAccessDenied", "ResourceSnapshotValidationFailed", "ResourceSnapshotConflict", "InternalError", "ServiceQuotaExceeded", "RequestThrottled"
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"
2922
3002
  # resp.resource_snapshot_job_id #=> String
2923
3003
  # resp.start_time #=> Time
2924
3004
  # resp.task_arn #=> String
@@ -2963,6 +3043,9 @@ module Aws::PartnerCentralSelling
2963
3043
  # task is to be initiated. This helps ensure that the task is applied to
2964
3044
  # the correct opportunity.
2965
3045
  #
3046
+ # @option params [Array<Types::Tag>] :tags
3047
+ # A list of objects specifying each tag name and value.
3048
+ #
2966
3049
  # @return [Types::StartEngagementFromOpportunityTaskResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2967
3050
  #
2968
3051
  # * {Types::StartEngagementFromOpportunityTaskResponse#engagement_id #engagement_id} => String
@@ -2986,6 +3069,12 @@ module Aws::PartnerCentralSelling
2986
3069
  # catalog: "CatalogIdentifier", # required
2987
3070
  # client_token: "StartEngagementFromOpportunityTaskRequestClientTokenString", # required
2988
3071
  # identifier: "OpportunityIdentifier", # required
3072
+ # tags: [
3073
+ # {
3074
+ # key: "TagKey", # required
3075
+ # value: "TagValue", # required
3076
+ # },
3077
+ # ],
2989
3078
  # })
2990
3079
  #
2991
3080
  # @example Response structure
@@ -2994,7 +3083,7 @@ module Aws::PartnerCentralSelling
2994
3083
  # resp.engagement_invitation_id #=> String
2995
3084
  # resp.message #=> String
2996
3085
  # resp.opportunity_id #=> String
2997
- # resp.reason_code #=> String, one of "InvitationAccessDenied", "InvitationValidationFailed", "EngagementAccessDenied", "OpportunityAccessDenied", "ResourceSnapshotJobAccessDenied", "ResourceSnapshotJobValidationFailed", "ResourceSnapshotJobConflict", "EngagementValidationFailed", "EngagementConflict", "OpportunitySubmissionFailed", "EngagementInvitationConflict", "OpportunityValidationFailed", "OpportunityConflict", "ResourceSnapshotAccessDenied", "ResourceSnapshotValidationFailed", "ResourceSnapshotConflict", "InternalError", "ServiceQuotaExceeded", "RequestThrottled"
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"
2998
3087
  # resp.resource_snapshot_job_id #=> String
2999
3088
  # resp.start_time #=> Time
3000
3089
  # resp.task_arn #=> String
@@ -3013,7 +3102,12 @@ module Aws::PartnerCentralSelling
3013
3102
  # Starts a resource snapshot job that has been previously created.
3014
3103
  #
3015
3104
  # @option params [required, String] :catalog
3016
- # Specifies the catalog related to the request.
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.
3017
3111
  #
3018
3112
  # @option params [required, String] :resource_snapshot_job_identifier
3019
3113
  # The identifier of the resource snapshot job to start.
@@ -3040,7 +3134,12 @@ module Aws::PartnerCentralSelling
3040
3134
  # stopped.
3041
3135
  #
3042
3136
  # @option params [required, String] :catalog
3043
- # Specifies the catalog related to the request.
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.
3044
3143
  #
3045
3144
  # @option params [required, String] :resource_snapshot_job_identifier
3046
3145
  # The identifier of the job to stop.
@@ -3063,24 +3162,42 @@ module Aws::PartnerCentralSelling
3063
3162
  req.send_request(options)
3064
3163
  end
3065
3164
 
3066
- # Use this action to submit an opportunity that was previously created
3165
+ # Use this action to submit an Opportunity that was previously created
3067
3166
  # by partner for AWS review. After you perform this action, the
3068
- # opportunity becomes non-editable until it is reviewed by AWS and has `
3167
+ # Opportunity becomes non-editable until it is reviewed by AWS and has `
3069
3168
  # LifeCycle.ReviewStatus ` as either `Approved` or `Action Required`.
3070
3169
  #
3071
3170
  # @option params [required, String] :catalog
3072
- # Specifies the catalog related to the request.
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.
3073
3178
  #
3074
3179
  # @option params [required, String] :identifier
3075
- # The identifier of the opportunity previously created by partner and
3180
+ # The identifier of the Opportunity previously created by partner and
3076
3181
  # needs to be submitted.
3077
3182
  #
3078
3183
  # @option params [required, String] :involvement_type
3079
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.
3080
3193
  #
3081
3194
  # @option params [String] :visibility
3082
3195
  # Determines whether to restrict visibility of the opportunity from AWS
3083
- # sales. Default value is Full.
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.
3084
3201
  #
3085
3202
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3086
3203
  #
@@ -3102,6 +3219,65 @@ module Aws::PartnerCentralSelling
3102
3219
  req.send_request(options)
3103
3220
  end
3104
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
+
3105
3281
  # Updates the `Opportunity` record identified by a given `Identifier`.
3106
3282
  # This operation allows you to modify the details of an existing
3107
3283
  # opportunity to reflect the latest information and progress. Use this
@@ -3206,13 +3382,6 @@ module Aws::PartnerCentralSelling
3206
3382
  # public sector where the partner needs RFx support from Amazon Web
3207
3383
  # Services.
3208
3384
  #
3209
- # * Do Not Need Support from AWS Sales Rep: Indicates that a partner
3210
- # doesn't need support from an Amazon Web Services Sales
3211
- # representative. The opportunity is managed solely by the partner.
3212
- # It's possible to request coselling support on these opportunities
3213
- # at any stage during their lifecycle. Also known as,
3214
- # for-visibility-only (FVO) opportunity.
3215
- #
3216
3385
  # @option params [Types::Project] :project
3217
3386
  # An object that contains project details summary for the `Opportunity`.
3218
3387
  #
@@ -3348,7 +3517,7 @@ module Aws::PartnerCentralSelling
3348
3517
  tracer: tracer
3349
3518
  )
3350
3519
  context[:gem_name] = 'aws-sdk-partnercentralselling'
3351
- context[:gem_version] = '1.3.0'
3520
+ context[:gem_version] = '1.4.0'
3352
3521
  Seahorse::Client::Request.new(handlers, context)
3353
3522
  end
3354
3523