aws-sdk-partnercentralselling 1.0.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 +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-partnercentralselling/client.rb +2031 -0
- data/lib/aws-sdk-partnercentralselling/client_api.rb +969 -0
- data/lib/aws-sdk-partnercentralselling/customizations.rb +0 -0
- data/lib/aws-sdk-partnercentralselling/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-partnercentralselling/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-partnercentralselling/endpoints.rb +20 -0
- data/lib/aws-sdk-partnercentralselling/errors.rb +160 -0
- data/lib/aws-sdk-partnercentralselling/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-partnercentralselling/resource.rb +26 -0
- data/lib/aws-sdk-partnercentralselling/types.rb +3457 -0
- data/lib/aws-sdk-partnercentralselling.rb +61 -0
- data/sig/client.rbs +495 -0
- data/sig/errors.rbs +39 -0
- data/sig/resource.rbs +83 -0
- data/sig/types.rbs +619 -0
- data/sig/waiters.rbs +13 -0
- metadata +99 -0
@@ -0,0 +1,61 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
|
11
|
+
require 'aws-sdk-core'
|
12
|
+
require 'aws-sigv4'
|
13
|
+
|
14
|
+
Aws::Plugins::GlobalConfiguration.add_identifier(:partnercentralselling)
|
15
|
+
|
16
|
+
# This module provides support for Partner Central Selling API. This module is available in the
|
17
|
+
# `aws-sdk-partnercentralselling` gem.
|
18
|
+
#
|
19
|
+
# # Client
|
20
|
+
#
|
21
|
+
# The {Client} class provides one method for each API operation. Operation
|
22
|
+
# methods each accept a hash of request parameters and return a response
|
23
|
+
# structure.
|
24
|
+
#
|
25
|
+
# partner_central_selling = Aws::PartnerCentralSelling::Client.new
|
26
|
+
# resp = partner_central_selling.assign_opportunity(params)
|
27
|
+
#
|
28
|
+
# See {Client} for more information.
|
29
|
+
#
|
30
|
+
# # Errors
|
31
|
+
#
|
32
|
+
# Errors returned from Partner Central Selling API are defined in the
|
33
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
34
|
+
#
|
35
|
+
# begin
|
36
|
+
# # do stuff
|
37
|
+
# rescue Aws::PartnerCentralSelling::Errors::ServiceError
|
38
|
+
# # rescues all Partner Central Selling API API errors
|
39
|
+
# end
|
40
|
+
#
|
41
|
+
# See {Errors} for more information.
|
42
|
+
#
|
43
|
+
# @!group service
|
44
|
+
module Aws::PartnerCentralSelling
|
45
|
+
autoload :Types, 'aws-sdk-partnercentralselling/types'
|
46
|
+
autoload :ClientApi, 'aws-sdk-partnercentralselling/client_api'
|
47
|
+
module Plugins
|
48
|
+
autoload :Endpoints, 'aws-sdk-partnercentralselling/plugins/endpoints.rb'
|
49
|
+
end
|
50
|
+
autoload :Client, 'aws-sdk-partnercentralselling/client'
|
51
|
+
autoload :Errors, 'aws-sdk-partnercentralselling/errors'
|
52
|
+
autoload :Resource, 'aws-sdk-partnercentralselling/resource'
|
53
|
+
autoload :EndpointParameters, 'aws-sdk-partnercentralselling/endpoint_parameters'
|
54
|
+
autoload :EndpointProvider, 'aws-sdk-partnercentralselling/endpoint_provider'
|
55
|
+
autoload :Endpoints, 'aws-sdk-partnercentralselling/endpoints'
|
56
|
+
|
57
|
+
GEM_VERSION = '1.0.0'
|
58
|
+
|
59
|
+
end
|
60
|
+
|
61
|
+
require_relative 'aws-sdk-partnercentralselling/customizations'
|
data/sig/client.rbs
ADDED
@@ -0,0 +1,495 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module PartnerCentralSelling
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?account_id: String,
|
19
|
+
?active_endpoint_cache: bool,
|
20
|
+
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?client_side_monitoring: bool,
|
22
|
+
?client_side_monitoring_client_id: String,
|
23
|
+
?client_side_monitoring_host: String,
|
24
|
+
?client_side_monitoring_port: Integer,
|
25
|
+
?client_side_monitoring_publisher: untyped,
|
26
|
+
?convert_params: bool,
|
27
|
+
?correct_clock_skew: bool,
|
28
|
+
?defaults_mode: String,
|
29
|
+
?disable_host_prefix_injection: bool,
|
30
|
+
?disable_request_compression: bool,
|
31
|
+
?endpoint: String,
|
32
|
+
?endpoint_cache_max_entries: Integer,
|
33
|
+
?endpoint_cache_max_threads: Integer,
|
34
|
+
?endpoint_cache_poll_interval: Integer,
|
35
|
+
?endpoint_discovery: bool,
|
36
|
+
?ignore_configured_endpoint_urls: bool,
|
37
|
+
?log_formatter: untyped,
|
38
|
+
?log_level: Symbol,
|
39
|
+
?logger: untyped,
|
40
|
+
?max_attempts: Integer,
|
41
|
+
?profile: String,
|
42
|
+
?request_min_compression_size_bytes: Integer,
|
43
|
+
?retry_backoff: Proc,
|
44
|
+
?retry_base_delay: Float,
|
45
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
46
|
+
?retry_limit: Integer,
|
47
|
+
?retry_max_delay: Integer,
|
48
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
49
|
+
?sdk_ua_app_id: String,
|
50
|
+
?secret_access_key: String,
|
51
|
+
?session_token: String,
|
52
|
+
?sigv4a_signing_region_set: Array[String],
|
53
|
+
?simple_json: bool,
|
54
|
+
?stub_responses: untyped,
|
55
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
56
|
+
?token_provider: untyped,
|
57
|
+
?use_dualstack_endpoint: bool,
|
58
|
+
?use_fips_endpoint: bool,
|
59
|
+
?validate_params: bool,
|
60
|
+
?endpoint_provider: untyped,
|
61
|
+
?http_proxy: String,
|
62
|
+
?http_open_timeout: (Float | Integer),
|
63
|
+
?http_read_timeout: (Float | Integer),
|
64
|
+
?http_idle_timeout: (Float | Integer),
|
65
|
+
?http_continue_timeout: (Float | Integer),
|
66
|
+
?ssl_timeout: (Float | Integer | nil),
|
67
|
+
?http_wire_trace: bool,
|
68
|
+
?ssl_verify_peer: bool,
|
69
|
+
?ssl_ca_bundle: String,
|
70
|
+
?ssl_ca_directory: String,
|
71
|
+
?ssl_ca_store: String,
|
72
|
+
?on_chunk_received: Proc,
|
73
|
+
?on_chunk_sent: Proc,
|
74
|
+
?raise_response_errors: bool
|
75
|
+
) -> instance
|
76
|
+
| (?Hash[Symbol, untyped]) -> instance
|
77
|
+
|
78
|
+
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#assign_opportunity-instance_method
|
80
|
+
def assign_opportunity: (
|
81
|
+
assignee: {
|
82
|
+
business_title: ::String,
|
83
|
+
email: ::String,
|
84
|
+
first_name: ::String,
|
85
|
+
last_name: ::String
|
86
|
+
},
|
87
|
+
catalog: ::String,
|
88
|
+
identifier: ::String
|
89
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
90
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
91
|
+
|
92
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#associate_opportunity-instance_method
|
93
|
+
def associate_opportunity: (
|
94
|
+
catalog: ::String,
|
95
|
+
opportunity_identifier: ::String,
|
96
|
+
related_entity_identifier: ::String,
|
97
|
+
related_entity_type: ("Solutions" | "AwsProducts" | "AwsMarketplaceOffers")
|
98
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
99
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
100
|
+
|
101
|
+
interface _CreateOpportunityResponseSuccess
|
102
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateOpportunityResponse]
|
103
|
+
def id: () -> ::String
|
104
|
+
def last_modified_date: () -> ::Time
|
105
|
+
def partner_opportunity_identifier: () -> ::String
|
106
|
+
end
|
107
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#create_opportunity-instance_method
|
108
|
+
def create_opportunity: (
|
109
|
+
catalog: ::String,
|
110
|
+
client_token: ::String,
|
111
|
+
?customer: {
|
112
|
+
account: {
|
113
|
+
address: {
|
114
|
+
city: ::String?,
|
115
|
+
country_code: ("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")?,
|
116
|
+
postal_code: ::String?,
|
117
|
+
state_or_region: ::String?,
|
118
|
+
street_address: ::String?
|
119
|
+
}?,
|
120
|
+
aws_account_id: ::String?,
|
121
|
+
company_name: ::String,
|
122
|
+
duns: ::String?,
|
123
|
+
industry: ("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")?,
|
124
|
+
other_industry: ::String?,
|
125
|
+
website_url: ::String?
|
126
|
+
}?,
|
127
|
+
contacts: Array[
|
128
|
+
{
|
129
|
+
business_title: ::String?,
|
130
|
+
email: ::String?,
|
131
|
+
first_name: ::String?,
|
132
|
+
last_name: ::String?,
|
133
|
+
phone: ::String?
|
134
|
+
},
|
135
|
+
]?
|
136
|
+
},
|
137
|
+
?life_cycle: {
|
138
|
+
closed_lost_reason: ("Customer Deficiency" | "Delay / Cancellation of Project" | "Legal / Tax / Regulatory" | "Lost to Competitor - Google" | "Lost to Competitor - Microsoft" | "Lost to Competitor - SoftLayer" | "Lost to Competitor - VMWare" | "Lost to Competitor - Other" | "No Opportunity" | "On Premises Deployment" | "Partner Gap" | "Price" | "Security / Compliance" | "Technical Limitations" | "Customer Experience" | "Other" | "People/Relationship/Governance" | "Product/Technology" | "Financial/Commercial")?,
|
139
|
+
next_steps: ::String?,
|
140
|
+
next_steps_history: Array[
|
141
|
+
{
|
142
|
+
time: ::Time,
|
143
|
+
value: ::String
|
144
|
+
},
|
145
|
+
]?,
|
146
|
+
review_comments: ::String?,
|
147
|
+
review_status: ("Pending Submission" | "Submitted" | "In review" | "Approved" | "Rejected" | "Action Required")?,
|
148
|
+
review_status_reason: ::String?,
|
149
|
+
stage: ("Prospect" | "Qualified" | "Technical Validation" | "Business Validation" | "Committed" | "Launched" | "Closed Lost")?,
|
150
|
+
target_close_date: ::String?
|
151
|
+
},
|
152
|
+
?marketing: {
|
153
|
+
aws_funding_used: ("Yes" | "No")?,
|
154
|
+
campaign_name: ::String?,
|
155
|
+
channels: Array[("AWS Marketing Central" | "Content Syndication" | "Display" | "Email" | "Live Event" | "Out Of Home (OOH)" | "Print" | "Search" | "Social" | "Telemarketing" | "TV" | "Video" | "Virtual Event")]?,
|
156
|
+
source: ("Marketing Activity" | "None")?,
|
157
|
+
use_cases: Array[::String]?
|
158
|
+
},
|
159
|
+
?national_security: ("Yes" | "No"),
|
160
|
+
?opportunity_team: Array[
|
161
|
+
{
|
162
|
+
business_title: ::String?,
|
163
|
+
email: ::String?,
|
164
|
+
first_name: ::String?,
|
165
|
+
last_name: ::String?,
|
166
|
+
phone: ::String?
|
167
|
+
},
|
168
|
+
],
|
169
|
+
?opportunity_type: ("Net New Business" | "Flat Renewal" | "Expansion"),
|
170
|
+
?origin: ("AWS Referral" | "Partner Referral"),
|
171
|
+
?partner_opportunity_identifier: ::String,
|
172
|
+
?primary_needs_from_aws: Array[("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")],
|
173
|
+
?project: {
|
174
|
+
additional_comments: ::String?,
|
175
|
+
apn_programs: Array[::String]?,
|
176
|
+
competitor_name: ("Oracle Cloud" | "On-Prem" | "Co-location" | "Akamai" | "AliCloud" | "Google Cloud Platform" | "IBM Softlayer" | "Microsoft Azure" | "Other- Cost Optimization" | "No Competition" | "*Other")?,
|
177
|
+
customer_business_problem: ::String?,
|
178
|
+
customer_use_case: ::String?,
|
179
|
+
delivery_models: Array[("SaaS or PaaS" | "BYOL or AMI" | "Managed Services" | "Professional Services" | "Resell" | "Other")]?,
|
180
|
+
expected_customer_spend: Array[
|
181
|
+
{
|
182
|
+
amount: ::String,
|
183
|
+
currency_code: ("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"),
|
184
|
+
frequency: ("Monthly"),
|
185
|
+
target_company: ::String
|
186
|
+
},
|
187
|
+
]?,
|
188
|
+
other_competitor_names: ::String?,
|
189
|
+
other_solution_description: ::String?,
|
190
|
+
related_opportunity_identifier: ::String?,
|
191
|
+
sales_activities: Array[("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")]?,
|
192
|
+
title: ::String?
|
193
|
+
},
|
194
|
+
?software_revenue: {
|
195
|
+
delivery_model: ("Contract" | "Pay-as-you-go" | "Subscription")?,
|
196
|
+
effective_date: ::String?,
|
197
|
+
expiration_date: ::String?,
|
198
|
+
value: {
|
199
|
+
amount: ::String,
|
200
|
+
currency_code: ("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")
|
201
|
+
}?
|
202
|
+
}
|
203
|
+
) -> _CreateOpportunityResponseSuccess
|
204
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateOpportunityResponseSuccess
|
205
|
+
|
206
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#disassociate_opportunity-instance_method
|
207
|
+
def disassociate_opportunity: (
|
208
|
+
catalog: ::String,
|
209
|
+
opportunity_identifier: ::String,
|
210
|
+
related_entity_identifier: ::String,
|
211
|
+
related_entity_type: ("Solutions" | "AwsProducts" | "AwsMarketplaceOffers")
|
212
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
213
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
214
|
+
|
215
|
+
interface _GetAwsOpportunitySummaryResponseSuccess
|
216
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAwsOpportunitySummaryResponse]
|
217
|
+
def catalog: () -> ::String
|
218
|
+
def customer: () -> Types::AwsOpportunityCustomer
|
219
|
+
def insights: () -> Types::AwsOpportunityInsights
|
220
|
+
def involvement_type: () -> ("For Visibility Only" | "Co-Sell")
|
221
|
+
def involvement_type_change_reason: () -> ("Expansion Opportunity" | "Change in Deal Information" | "Customer Requested" | "Technical Complexity" | "Risk Mitigation")
|
222
|
+
def life_cycle: () -> Types::AwsOpportunityLifeCycle
|
223
|
+
def opportunity_team: () -> ::Array[Types::AwsTeamMember]
|
224
|
+
def origin: () -> ("AWS Referral" | "Partner Referral")
|
225
|
+
def project: () -> Types::AwsOpportunityProject
|
226
|
+
def related_entity_ids: () -> Types::AwsOpportunityRelatedEntities
|
227
|
+
def related_opportunity_id: () -> ::String
|
228
|
+
def visibility: () -> ("Full" | "Limited")
|
229
|
+
end
|
230
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#get_aws_opportunity_summary-instance_method
|
231
|
+
def get_aws_opportunity_summary: (
|
232
|
+
catalog: ::String,
|
233
|
+
related_opportunity_identifier: ::String
|
234
|
+
) -> _GetAwsOpportunitySummaryResponseSuccess
|
235
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAwsOpportunitySummaryResponseSuccess
|
236
|
+
|
237
|
+
interface _GetEngagementInvitationResponseSuccess
|
238
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEngagementInvitationResponse]
|
239
|
+
def arn: () -> ::String
|
240
|
+
def catalog: () -> ::String
|
241
|
+
def engagement_title: () -> ::String
|
242
|
+
def expiration_date: () -> ::Time
|
243
|
+
def id: () -> ::String
|
244
|
+
def invitation_date: () -> ::Time
|
245
|
+
def payload: () -> Types::Payload
|
246
|
+
def payload_type: () -> ("OpportunityInvitation")
|
247
|
+
def receiver: () -> Types::Receiver
|
248
|
+
def rejection_reason: () -> ::String
|
249
|
+
def sender_aws_account_id: () -> ::String
|
250
|
+
def sender_company_name: () -> ::String
|
251
|
+
def status: () -> ("ACCEPTED" | "PENDING" | "REJECTED" | "EXPIRED")
|
252
|
+
end
|
253
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#get_engagement_invitation-instance_method
|
254
|
+
def get_engagement_invitation: (
|
255
|
+
catalog: ::String,
|
256
|
+
identifier: ::String
|
257
|
+
) -> _GetEngagementInvitationResponseSuccess
|
258
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEngagementInvitationResponseSuccess
|
259
|
+
|
260
|
+
interface _GetOpportunityResponseSuccess
|
261
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetOpportunityResponse]
|
262
|
+
def catalog: () -> ::String
|
263
|
+
def created_date: () -> ::Time
|
264
|
+
def customer: () -> Types::Customer
|
265
|
+
def id: () -> ::String
|
266
|
+
def last_modified_date: () -> ::Time
|
267
|
+
def life_cycle: () -> Types::LifeCycle
|
268
|
+
def marketing: () -> Types::Marketing
|
269
|
+
def national_security: () -> ("Yes" | "No")
|
270
|
+
def opportunity_team: () -> ::Array[Types::Contact]
|
271
|
+
def opportunity_type: () -> ("Net New Business" | "Flat Renewal" | "Expansion")
|
272
|
+
def partner_opportunity_identifier: () -> ::String
|
273
|
+
def primary_needs_from_aws: () -> ::Array[("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")]
|
274
|
+
def project: () -> Types::Project
|
275
|
+
def related_entity_identifiers: () -> Types::RelatedEntityIdentifiers
|
276
|
+
def software_revenue: () -> Types::SoftwareRevenue
|
277
|
+
end
|
278
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#get_opportunity-instance_method
|
279
|
+
def get_opportunity: (
|
280
|
+
catalog: ::String,
|
281
|
+
identifier: ::String
|
282
|
+
) -> _GetOpportunityResponseSuccess
|
283
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOpportunityResponseSuccess
|
284
|
+
|
285
|
+
interface _ListEngagementInvitationsResponseSuccess
|
286
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEngagementInvitationsResponse]
|
287
|
+
def engagement_invitation_summaries: () -> ::Array[Types::EngagementInvitationSummary]
|
288
|
+
def next_token: () -> ::String
|
289
|
+
end
|
290
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#list_engagement_invitations-instance_method
|
291
|
+
def list_engagement_invitations: (
|
292
|
+
catalog: ::String,
|
293
|
+
?max_results: ::Integer,
|
294
|
+
?next_token: ::String,
|
295
|
+
participant_type: ("RECEIVER"),
|
296
|
+
?payload_type: Array[("OpportunityInvitation")],
|
297
|
+
?sort: {
|
298
|
+
sort_by: ("InvitationDate"),
|
299
|
+
sort_order: ("ASCENDING" | "DESCENDING")
|
300
|
+
}
|
301
|
+
) -> _ListEngagementInvitationsResponseSuccess
|
302
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEngagementInvitationsResponseSuccess
|
303
|
+
|
304
|
+
interface _ListOpportunitiesResponseSuccess
|
305
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListOpportunitiesResponse]
|
306
|
+
def next_token: () -> ::String
|
307
|
+
def opportunity_summaries: () -> ::Array[Types::OpportunitySummary]
|
308
|
+
end
|
309
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#list_opportunities-instance_method
|
310
|
+
def list_opportunities: (
|
311
|
+
catalog: ::String,
|
312
|
+
?customer_company_name: Array[::String],
|
313
|
+
?identifier: Array[::String],
|
314
|
+
?last_modified_date: {
|
315
|
+
after_last_modified_date: ::Time?,
|
316
|
+
before_last_modified_date: ::Time?
|
317
|
+
},
|
318
|
+
?life_cycle_review_status: Array[("Pending Submission" | "Submitted" | "In review" | "Approved" | "Rejected" | "Action Required")],
|
319
|
+
?life_cycle_stage: Array[("Prospect" | "Qualified" | "Technical Validation" | "Business Validation" | "Committed" | "Launched" | "Closed Lost")],
|
320
|
+
?max_results: ::Integer,
|
321
|
+
?next_token: ::String,
|
322
|
+
?sort: {
|
323
|
+
sort_by: ("LastModifiedDate" | "Identifier" | "CustomerCompanyName"),
|
324
|
+
sort_order: ("ASCENDING" | "DESCENDING")
|
325
|
+
}
|
326
|
+
) -> _ListOpportunitiesResponseSuccess
|
327
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListOpportunitiesResponseSuccess
|
328
|
+
|
329
|
+
interface _ListSolutionsResponseSuccess
|
330
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSolutionsResponse]
|
331
|
+
def next_token: () -> ::String
|
332
|
+
def solution_summaries: () -> ::Array[Types::SolutionBase]
|
333
|
+
end
|
334
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#list_solutions-instance_method
|
335
|
+
def list_solutions: (
|
336
|
+
catalog: ::String,
|
337
|
+
?category: Array[::String],
|
338
|
+
?identifier: Array[::String],
|
339
|
+
?max_results: ::Integer,
|
340
|
+
?next_token: ::String,
|
341
|
+
?sort: {
|
342
|
+
sort_by: ("Identifier" | "Name" | "Status" | "Category" | "CreatedDate"),
|
343
|
+
sort_order: ("ASCENDING" | "DESCENDING")
|
344
|
+
},
|
345
|
+
?status: Array[("Active" | "Inactive" | "Draft")]
|
346
|
+
) -> _ListSolutionsResponseSuccess
|
347
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSolutionsResponseSuccess
|
348
|
+
|
349
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#reject_engagement_invitation-instance_method
|
350
|
+
def reject_engagement_invitation: (
|
351
|
+
catalog: ::String,
|
352
|
+
identifier: ::String,
|
353
|
+
?rejection_reason: ::String
|
354
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
355
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
356
|
+
|
357
|
+
interface _StartEngagementByAcceptingInvitationTaskResponseSuccess
|
358
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartEngagementByAcceptingInvitationTaskResponse]
|
359
|
+
def engagement_invitation_id: () -> ::String
|
360
|
+
def message: () -> ::String
|
361
|
+
def opportunity_id: () -> ::String
|
362
|
+
def reason_code: () -> ("InvitationAccessDenied" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "EngagementValidationFailed" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict")
|
363
|
+
def start_time: () -> ::Time
|
364
|
+
def task_arn: () -> ::String
|
365
|
+
def task_id: () -> ::String
|
366
|
+
def task_status: () -> ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
367
|
+
end
|
368
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#start_engagement_by_accepting_invitation_task-instance_method
|
369
|
+
def start_engagement_by_accepting_invitation_task: (
|
370
|
+
catalog: ::String,
|
371
|
+
client_token: ::String,
|
372
|
+
identifier: ::String
|
373
|
+
) -> _StartEngagementByAcceptingInvitationTaskResponseSuccess
|
374
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartEngagementByAcceptingInvitationTaskResponseSuccess
|
375
|
+
|
376
|
+
interface _StartEngagementFromOpportunityTaskResponseSuccess
|
377
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartEngagementFromOpportunityTaskResponse]
|
378
|
+
def message: () -> ::String
|
379
|
+
def opportunity_id: () -> ::String
|
380
|
+
def reason_code: () -> ("InvitationAccessDenied" | "EngagementAccessDenied" | "OpportunityAccessDenied" | "ResourceSnapshotJobAccessDenied" | "EngagementValidationFailed" | "OpportunitySubmissionFailed" | "EngagementInvitationConflict" | "InternalError" | "OpportunityValidationFailed" | "OpportunityConflict")
|
381
|
+
def start_time: () -> ::Time
|
382
|
+
def task_arn: () -> ::String
|
383
|
+
def task_id: () -> ::String
|
384
|
+
def task_status: () -> ("IN_PROGRESS" | "COMPLETE" | "FAILED")
|
385
|
+
end
|
386
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#start_engagement_from_opportunity_task-instance_method
|
387
|
+
def start_engagement_from_opportunity_task: (
|
388
|
+
aws_submission: {
|
389
|
+
involvement_type: ("For Visibility Only" | "Co-Sell"),
|
390
|
+
visibility: ("Full" | "Limited")?
|
391
|
+
},
|
392
|
+
catalog: ::String,
|
393
|
+
client_token: ::String,
|
394
|
+
identifier: ::String
|
395
|
+
) -> _StartEngagementFromOpportunityTaskResponseSuccess
|
396
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartEngagementFromOpportunityTaskResponseSuccess
|
397
|
+
|
398
|
+
interface _UpdateOpportunityResponseSuccess
|
399
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateOpportunityResponse]
|
400
|
+
def id: () -> ::String
|
401
|
+
def last_modified_date: () -> ::Time
|
402
|
+
end
|
403
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralSelling/Client.html#update_opportunity-instance_method
|
404
|
+
def update_opportunity: (
|
405
|
+
catalog: ::String,
|
406
|
+
?customer: {
|
407
|
+
account: {
|
408
|
+
address: {
|
409
|
+
city: ::String?,
|
410
|
+
country_code: ("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")?,
|
411
|
+
postal_code: ::String?,
|
412
|
+
state_or_region: ::String?,
|
413
|
+
street_address: ::String?
|
414
|
+
}?,
|
415
|
+
aws_account_id: ::String?,
|
416
|
+
company_name: ::String,
|
417
|
+
duns: ::String?,
|
418
|
+
industry: ("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")?,
|
419
|
+
other_industry: ::String?,
|
420
|
+
website_url: ::String?
|
421
|
+
}?,
|
422
|
+
contacts: Array[
|
423
|
+
{
|
424
|
+
business_title: ::String?,
|
425
|
+
email: ::String?,
|
426
|
+
first_name: ::String?,
|
427
|
+
last_name: ::String?,
|
428
|
+
phone: ::String?
|
429
|
+
},
|
430
|
+
]?
|
431
|
+
},
|
432
|
+
identifier: ::String,
|
433
|
+
last_modified_date: ::Time,
|
434
|
+
?life_cycle: {
|
435
|
+
closed_lost_reason: ("Customer Deficiency" | "Delay / Cancellation of Project" | "Legal / Tax / Regulatory" | "Lost to Competitor - Google" | "Lost to Competitor - Microsoft" | "Lost to Competitor - SoftLayer" | "Lost to Competitor - VMWare" | "Lost to Competitor - Other" | "No Opportunity" | "On Premises Deployment" | "Partner Gap" | "Price" | "Security / Compliance" | "Technical Limitations" | "Customer Experience" | "Other" | "People/Relationship/Governance" | "Product/Technology" | "Financial/Commercial")?,
|
436
|
+
next_steps: ::String?,
|
437
|
+
next_steps_history: Array[
|
438
|
+
{
|
439
|
+
time: ::Time,
|
440
|
+
value: ::String
|
441
|
+
},
|
442
|
+
]?,
|
443
|
+
review_comments: ::String?,
|
444
|
+
review_status: ("Pending Submission" | "Submitted" | "In review" | "Approved" | "Rejected" | "Action Required")?,
|
445
|
+
review_status_reason: ::String?,
|
446
|
+
stage: ("Prospect" | "Qualified" | "Technical Validation" | "Business Validation" | "Committed" | "Launched" | "Closed Lost")?,
|
447
|
+
target_close_date: ::String?
|
448
|
+
},
|
449
|
+
?marketing: {
|
450
|
+
aws_funding_used: ("Yes" | "No")?,
|
451
|
+
campaign_name: ::String?,
|
452
|
+
channels: Array[("AWS Marketing Central" | "Content Syndication" | "Display" | "Email" | "Live Event" | "Out Of Home (OOH)" | "Print" | "Search" | "Social" | "Telemarketing" | "TV" | "Video" | "Virtual Event")]?,
|
453
|
+
source: ("Marketing Activity" | "None")?,
|
454
|
+
use_cases: Array[::String]?
|
455
|
+
},
|
456
|
+
?national_security: ("Yes" | "No"),
|
457
|
+
?opportunity_type: ("Net New Business" | "Flat Renewal" | "Expansion"),
|
458
|
+
?partner_opportunity_identifier: ::String,
|
459
|
+
?primary_needs_from_aws: Array[("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")],
|
460
|
+
?project: {
|
461
|
+
additional_comments: ::String?,
|
462
|
+
apn_programs: Array[::String]?,
|
463
|
+
competitor_name: ("Oracle Cloud" | "On-Prem" | "Co-location" | "Akamai" | "AliCloud" | "Google Cloud Platform" | "IBM Softlayer" | "Microsoft Azure" | "Other- Cost Optimization" | "No Competition" | "*Other")?,
|
464
|
+
customer_business_problem: ::String?,
|
465
|
+
customer_use_case: ::String?,
|
466
|
+
delivery_models: Array[("SaaS or PaaS" | "BYOL or AMI" | "Managed Services" | "Professional Services" | "Resell" | "Other")]?,
|
467
|
+
expected_customer_spend: Array[
|
468
|
+
{
|
469
|
+
amount: ::String,
|
470
|
+
currency_code: ("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"),
|
471
|
+
frequency: ("Monthly"),
|
472
|
+
target_company: ::String
|
473
|
+
},
|
474
|
+
]?,
|
475
|
+
other_competitor_names: ::String?,
|
476
|
+
other_solution_description: ::String?,
|
477
|
+
related_opportunity_identifier: ::String?,
|
478
|
+
sales_activities: Array[("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")]?,
|
479
|
+
title: ::String?
|
480
|
+
},
|
481
|
+
?software_revenue: {
|
482
|
+
delivery_model: ("Contract" | "Pay-as-you-go" | "Subscription")?,
|
483
|
+
effective_date: ::String?,
|
484
|
+
expiration_date: ::String?,
|
485
|
+
value: {
|
486
|
+
amount: ::String,
|
487
|
+
currency_code: ("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")
|
488
|
+
}?
|
489
|
+
}
|
490
|
+
) -> _UpdateOpportunityResponseSuccess
|
491
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateOpportunityResponseSuccess
|
492
|
+
end
|
493
|
+
end
|
494
|
+
end
|
495
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module PartnerCentralSelling
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
33
|
+
def error_list: () -> ::String
|
34
|
+
def message: () -> ::String
|
35
|
+
def reason: () -> ::String
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|