aws-sdk-partnercentralaccount 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-partnercentralaccount/client.rb +2048 -0
- data/lib/aws-sdk-partnercentralaccount/client_api.rb +1109 -0
- data/lib/aws-sdk-partnercentralaccount/customizations.rb +0 -0
- data/lib/aws-sdk-partnercentralaccount/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-partnercentralaccount/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-partnercentralaccount/endpoints.rb +20 -0
- data/lib/aws-sdk-partnercentralaccount/errors.rb +198 -0
- data/lib/aws-sdk-partnercentralaccount/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-partnercentralaccount/resource.rb +26 -0
- data/lib/aws-sdk-partnercentralaccount/types.rb +2469 -0
- data/lib/aws-sdk-partnercentralaccount/waiters.rb +15 -0
- data/lib/aws-sdk-partnercentralaccount.rb +62 -0
- data/sig/client.rbs +577 -0
- data/sig/errors.rbs +45 -0
- data/sig/resource.rbs +86 -0
- data/sig/types.rbs +688 -0
- data/sig/waiters.rbs +13 -0
- metadata +97 -0
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
require 'aws-sdk-core/waiters'
|
|
11
|
+
|
|
12
|
+
module Aws::PartnerCentralAccount
|
|
13
|
+
module Waiters
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -0,0 +1,62 @@
|
|
|
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(:partnercentralaccount)
|
|
15
|
+
|
|
16
|
+
# This module provides support for Partner Central Account API. This module is available in the
|
|
17
|
+
# `aws-sdk-partnercentralaccount` 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_account = Aws::PartnerCentralAccount::Client.new
|
|
26
|
+
# resp = partner_central_account.accept_connection_invitation(params)
|
|
27
|
+
#
|
|
28
|
+
# See {Client} for more information.
|
|
29
|
+
#
|
|
30
|
+
# # Errors
|
|
31
|
+
#
|
|
32
|
+
# Errors returned from Partner Central Account API are defined in the
|
|
33
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
|
34
|
+
#
|
|
35
|
+
# begin
|
|
36
|
+
# # do stuff
|
|
37
|
+
# rescue Aws::PartnerCentralAccount::Errors::ServiceError
|
|
38
|
+
# # rescues all Partner Central Account API API errors
|
|
39
|
+
# end
|
|
40
|
+
#
|
|
41
|
+
# See {Errors} for more information.
|
|
42
|
+
#
|
|
43
|
+
# @!group service
|
|
44
|
+
module Aws::PartnerCentralAccount
|
|
45
|
+
autoload :Types, 'aws-sdk-partnercentralaccount/types'
|
|
46
|
+
autoload :ClientApi, 'aws-sdk-partnercentralaccount/client_api'
|
|
47
|
+
module Plugins
|
|
48
|
+
autoload :Endpoints, 'aws-sdk-partnercentralaccount/plugins/endpoints.rb'
|
|
49
|
+
end
|
|
50
|
+
autoload :Client, 'aws-sdk-partnercentralaccount/client'
|
|
51
|
+
autoload :Errors, 'aws-sdk-partnercentralaccount/errors'
|
|
52
|
+
autoload :Waiters, 'aws-sdk-partnercentralaccount/waiters'
|
|
53
|
+
autoload :Resource, 'aws-sdk-partnercentralaccount/resource'
|
|
54
|
+
autoload :EndpointParameters, 'aws-sdk-partnercentralaccount/endpoint_parameters'
|
|
55
|
+
autoload :EndpointProvider, 'aws-sdk-partnercentralaccount/endpoint_provider'
|
|
56
|
+
autoload :Endpoints, 'aws-sdk-partnercentralaccount/endpoints'
|
|
57
|
+
|
|
58
|
+
GEM_VERSION = '1.0.0'
|
|
59
|
+
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
require_relative 'aws-sdk-partnercentralaccount/customizations'
|
data/sig/client.rbs
ADDED
|
@@ -0,0 +1,577 @@
|
|
|
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 PartnerCentralAccount
|
|
10
|
+
class Client < ::Seahorse::Client::Base
|
|
11
|
+
include ::Aws::ClientStubs
|
|
12
|
+
|
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/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
|
+
?auth_scheme_preference: Array[String],
|
|
22
|
+
?client_side_monitoring: bool,
|
|
23
|
+
?client_side_monitoring_client_id: String,
|
|
24
|
+
?client_side_monitoring_host: String,
|
|
25
|
+
?client_side_monitoring_port: Integer,
|
|
26
|
+
?client_side_monitoring_publisher: untyped,
|
|
27
|
+
?convert_params: bool,
|
|
28
|
+
?correct_clock_skew: bool,
|
|
29
|
+
?defaults_mode: String,
|
|
30
|
+
?disable_host_prefix_injection: bool,
|
|
31
|
+
?disable_request_compression: bool,
|
|
32
|
+
?endpoint: String,
|
|
33
|
+
?endpoint_cache_max_entries: Integer,
|
|
34
|
+
?endpoint_cache_max_threads: Integer,
|
|
35
|
+
?endpoint_cache_poll_interval: Integer,
|
|
36
|
+
?endpoint_discovery: bool,
|
|
37
|
+
?ignore_configured_endpoint_urls: bool,
|
|
38
|
+
?log_formatter: untyped,
|
|
39
|
+
?log_level: Symbol,
|
|
40
|
+
?logger: untyped,
|
|
41
|
+
?max_attempts: Integer,
|
|
42
|
+
?profile: String,
|
|
43
|
+
?request_checksum_calculation: String,
|
|
44
|
+
?request_min_compression_size_bytes: Integer,
|
|
45
|
+
?response_checksum_validation: String,
|
|
46
|
+
?retry_backoff: Proc,
|
|
47
|
+
?retry_base_delay: Float,
|
|
48
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
49
|
+
?retry_limit: Integer,
|
|
50
|
+
?retry_max_delay: Integer,
|
|
51
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
52
|
+
?sdk_ua_app_id: String,
|
|
53
|
+
?secret_access_key: String,
|
|
54
|
+
?session_token: String,
|
|
55
|
+
?sigv4a_signing_region_set: Array[String],
|
|
56
|
+
?simple_json: bool,
|
|
57
|
+
?stub_responses: untyped,
|
|
58
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
|
59
|
+
?token_provider: untyped,
|
|
60
|
+
?use_dualstack_endpoint: bool,
|
|
61
|
+
?use_fips_endpoint: bool,
|
|
62
|
+
?validate_params: bool,
|
|
63
|
+
?endpoint_provider: untyped,
|
|
64
|
+
?http_proxy: String,
|
|
65
|
+
?http_open_timeout: (Float | Integer),
|
|
66
|
+
?http_read_timeout: (Float | Integer),
|
|
67
|
+
?http_idle_timeout: (Float | Integer),
|
|
68
|
+
?http_continue_timeout: (Float | Integer),
|
|
69
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
70
|
+
?http_wire_trace: bool,
|
|
71
|
+
?ssl_verify_peer: bool,
|
|
72
|
+
?ssl_ca_bundle: String,
|
|
73
|
+
?ssl_ca_directory: String,
|
|
74
|
+
?ssl_ca_store: String,
|
|
75
|
+
?on_chunk_received: Proc,
|
|
76
|
+
?on_chunk_sent: Proc,
|
|
77
|
+
?raise_response_errors: bool
|
|
78
|
+
) -> instance
|
|
79
|
+
| (?Hash[Symbol, untyped]) -> instance
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
interface _AcceptConnectionInvitationResponseSuccess
|
|
83
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AcceptConnectionInvitationResponse]
|
|
84
|
+
def connection: () -> Types::Connection
|
|
85
|
+
end
|
|
86
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#accept_connection_invitation-instance_method
|
|
87
|
+
def accept_connection_invitation: (
|
|
88
|
+
catalog: ::String,
|
|
89
|
+
identifier: ::String,
|
|
90
|
+
client_token: ::String
|
|
91
|
+
) -> _AcceptConnectionInvitationResponseSuccess
|
|
92
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptConnectionInvitationResponseSuccess
|
|
93
|
+
|
|
94
|
+
interface _AssociateAwsTrainingCertificationEmailDomainResponseSuccess
|
|
95
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateAwsTrainingCertificationEmailDomainResponse]
|
|
96
|
+
end
|
|
97
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#associate_aws_training_certification_email_domain-instance_method
|
|
98
|
+
def associate_aws_training_certification_email_domain: (
|
|
99
|
+
catalog: ::String,
|
|
100
|
+
identifier: ::String,
|
|
101
|
+
?client_token: ::String,
|
|
102
|
+
email: ::String,
|
|
103
|
+
email_verification_code: ::String
|
|
104
|
+
) -> _AssociateAwsTrainingCertificationEmailDomainResponseSuccess
|
|
105
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateAwsTrainingCertificationEmailDomainResponseSuccess
|
|
106
|
+
|
|
107
|
+
interface _CancelConnectionResponseSuccess
|
|
108
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelConnectionResponse]
|
|
109
|
+
def catalog: () -> ::String
|
|
110
|
+
def id: () -> ::String
|
|
111
|
+
def arn: () -> ::String
|
|
112
|
+
def other_participant_account_id: () -> ::String
|
|
113
|
+
def updated_at: () -> ::Time
|
|
114
|
+
def connection_types: () -> ::Hash[("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY"), Types::ConnectionTypeDetail]
|
|
115
|
+
end
|
|
116
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#cancel_connection-instance_method
|
|
117
|
+
def cancel_connection: (
|
|
118
|
+
catalog: ::String,
|
|
119
|
+
identifier: ::String,
|
|
120
|
+
connection_type: ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY"),
|
|
121
|
+
reason: ::String,
|
|
122
|
+
client_token: ::String
|
|
123
|
+
) -> _CancelConnectionResponseSuccess
|
|
124
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelConnectionResponseSuccess
|
|
125
|
+
|
|
126
|
+
interface _CancelConnectionInvitationResponseSuccess
|
|
127
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelConnectionInvitationResponse]
|
|
128
|
+
def catalog: () -> ::String
|
|
129
|
+
def id: () -> ::String
|
|
130
|
+
def arn: () -> ::String
|
|
131
|
+
def connection_id: () -> ::String
|
|
132
|
+
def connection_type: () -> ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
133
|
+
def created_at: () -> ::Time
|
|
134
|
+
def updated_at: () -> ::Time
|
|
135
|
+
def expires_at: () -> ::Time
|
|
136
|
+
def other_participant_identifier: () -> ::String
|
|
137
|
+
def participant_type: () -> ("SENDER" | "RECEIVER")
|
|
138
|
+
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELED" | "EXPIRED")
|
|
139
|
+
def invitation_message: () -> ::String
|
|
140
|
+
def inviter_email: () -> ::String
|
|
141
|
+
def inviter_name: () -> ::String
|
|
142
|
+
end
|
|
143
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#cancel_connection_invitation-instance_method
|
|
144
|
+
def cancel_connection_invitation: (
|
|
145
|
+
catalog: ::String,
|
|
146
|
+
identifier: ::String,
|
|
147
|
+
client_token: ::String
|
|
148
|
+
) -> _CancelConnectionInvitationResponseSuccess
|
|
149
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelConnectionInvitationResponseSuccess
|
|
150
|
+
|
|
151
|
+
interface _CancelProfileUpdateTaskResponseSuccess
|
|
152
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelProfileUpdateTaskResponse]
|
|
153
|
+
def catalog: () -> ::String
|
|
154
|
+
def arn: () -> ::String
|
|
155
|
+
def id: () -> ::String
|
|
156
|
+
def task_id: () -> ::String
|
|
157
|
+
def task_details: () -> Types::TaskDetails
|
|
158
|
+
def started_at: () -> ::Time
|
|
159
|
+
def status: () -> ("IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
160
|
+
def ended_at: () -> ::Time
|
|
161
|
+
def error_detail_list: () -> ::Array[Types::ErrorDetail]
|
|
162
|
+
end
|
|
163
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#cancel_profile_update_task-instance_method
|
|
164
|
+
def cancel_profile_update_task: (
|
|
165
|
+
catalog: ::String,
|
|
166
|
+
identifier: ::String,
|
|
167
|
+
?client_token: ::String,
|
|
168
|
+
task_id: ::String
|
|
169
|
+
) -> _CancelProfileUpdateTaskResponseSuccess
|
|
170
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelProfileUpdateTaskResponseSuccess
|
|
171
|
+
|
|
172
|
+
interface _CreateConnectionInvitationResponseSuccess
|
|
173
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectionInvitationResponse]
|
|
174
|
+
def catalog: () -> ::String
|
|
175
|
+
def id: () -> ::String
|
|
176
|
+
def arn: () -> ::String
|
|
177
|
+
def connection_id: () -> ::String
|
|
178
|
+
def connection_type: () -> ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
179
|
+
def created_at: () -> ::Time
|
|
180
|
+
def updated_at: () -> ::Time
|
|
181
|
+
def expires_at: () -> ::Time
|
|
182
|
+
def other_participant_identifier: () -> ::String
|
|
183
|
+
def participant_type: () -> ("SENDER" | "RECEIVER")
|
|
184
|
+
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELED" | "EXPIRED")
|
|
185
|
+
def invitation_message: () -> ::String
|
|
186
|
+
def inviter_email: () -> ::String
|
|
187
|
+
def inviter_name: () -> ::String
|
|
188
|
+
end
|
|
189
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#create_connection_invitation-instance_method
|
|
190
|
+
def create_connection_invitation: (
|
|
191
|
+
catalog: ::String,
|
|
192
|
+
client_token: ::String,
|
|
193
|
+
connection_type: ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY"),
|
|
194
|
+
email: ::String,
|
|
195
|
+
message: ::String,
|
|
196
|
+
name: ::String,
|
|
197
|
+
receiver_identifier: ::String
|
|
198
|
+
) -> _CreateConnectionInvitationResponseSuccess
|
|
199
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectionInvitationResponseSuccess
|
|
200
|
+
|
|
201
|
+
interface _CreatePartnerResponseSuccess
|
|
202
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePartnerResponse]
|
|
203
|
+
def catalog: () -> ::String
|
|
204
|
+
def arn: () -> ::String
|
|
205
|
+
def id: () -> ::String
|
|
206
|
+
def legal_name: () -> ::String
|
|
207
|
+
def created_at: () -> ::Time
|
|
208
|
+
def profile: () -> Types::PartnerProfile
|
|
209
|
+
def aws_training_certification_email_domains: () -> ::Array[Types::PartnerDomain]
|
|
210
|
+
def alliance_lead_contact: () -> Types::AllianceLeadContact
|
|
211
|
+
end
|
|
212
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#create_partner-instance_method
|
|
213
|
+
def create_partner: (
|
|
214
|
+
catalog: ::String,
|
|
215
|
+
?client_token: ::String,
|
|
216
|
+
legal_name: ::String,
|
|
217
|
+
primary_solution_type: ("SOFTWARE_PRODUCTS" | "CONSULTING_SERVICES" | "PROFESSIONAL_SERVICES" | "MANAGED_SERVICES" | "HARDWARE_PRODUCTS" | "COMMUNICATION_SERVICES" | "VALUE_ADDED_RESALE_AWS_SERVICES" | "TRAINING_SERVICES"),
|
|
218
|
+
alliance_lead_contact: {
|
|
219
|
+
first_name: ::String,
|
|
220
|
+
last_name: ::String,
|
|
221
|
+
email: ::String,
|
|
222
|
+
business_title: ::String
|
|
223
|
+
},
|
|
224
|
+
email_verification_code: ::String,
|
|
225
|
+
?tags: Array[
|
|
226
|
+
{
|
|
227
|
+
key: ::String,
|
|
228
|
+
value: ::String
|
|
229
|
+
},
|
|
230
|
+
]
|
|
231
|
+
) -> _CreatePartnerResponseSuccess
|
|
232
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePartnerResponseSuccess
|
|
233
|
+
|
|
234
|
+
interface _DisassociateAwsTrainingCertificationEmailDomainResponseSuccess
|
|
235
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateAwsTrainingCertificationEmailDomainResponse]
|
|
236
|
+
end
|
|
237
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#disassociate_aws_training_certification_email_domain-instance_method
|
|
238
|
+
def disassociate_aws_training_certification_email_domain: (
|
|
239
|
+
catalog: ::String,
|
|
240
|
+
identifier: ::String,
|
|
241
|
+
?client_token: ::String,
|
|
242
|
+
domain_name: ::String
|
|
243
|
+
) -> _DisassociateAwsTrainingCertificationEmailDomainResponseSuccess
|
|
244
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateAwsTrainingCertificationEmailDomainResponseSuccess
|
|
245
|
+
|
|
246
|
+
interface _GetAllianceLeadContactResponseSuccess
|
|
247
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAllianceLeadContactResponse]
|
|
248
|
+
def catalog: () -> ::String
|
|
249
|
+
def arn: () -> ::String
|
|
250
|
+
def id: () -> ::String
|
|
251
|
+
def alliance_lead_contact: () -> Types::AllianceLeadContact
|
|
252
|
+
end
|
|
253
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#get_alliance_lead_contact-instance_method
|
|
254
|
+
def get_alliance_lead_contact: (
|
|
255
|
+
catalog: ::String,
|
|
256
|
+
identifier: ::String
|
|
257
|
+
) -> _GetAllianceLeadContactResponseSuccess
|
|
258
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAllianceLeadContactResponseSuccess
|
|
259
|
+
|
|
260
|
+
interface _GetConnectionResponseSuccess
|
|
261
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectionResponse]
|
|
262
|
+
def catalog: () -> ::String
|
|
263
|
+
def id: () -> ::String
|
|
264
|
+
def arn: () -> ::String
|
|
265
|
+
def other_participant_account_id: () -> ::String
|
|
266
|
+
def updated_at: () -> ::Time
|
|
267
|
+
def connection_types: () -> ::Hash[("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY"), Types::ConnectionTypeDetail]
|
|
268
|
+
end
|
|
269
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#get_connection-instance_method
|
|
270
|
+
def get_connection: (
|
|
271
|
+
catalog: ::String,
|
|
272
|
+
identifier: ::String
|
|
273
|
+
) -> _GetConnectionResponseSuccess
|
|
274
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectionResponseSuccess
|
|
275
|
+
|
|
276
|
+
interface _GetConnectionInvitationResponseSuccess
|
|
277
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectionInvitationResponse]
|
|
278
|
+
def catalog: () -> ::String
|
|
279
|
+
def id: () -> ::String
|
|
280
|
+
def arn: () -> ::String
|
|
281
|
+
def connection_id: () -> ::String
|
|
282
|
+
def connection_type: () -> ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
283
|
+
def created_at: () -> ::Time
|
|
284
|
+
def updated_at: () -> ::Time
|
|
285
|
+
def expires_at: () -> ::Time
|
|
286
|
+
def other_participant_identifier: () -> ::String
|
|
287
|
+
def participant_type: () -> ("SENDER" | "RECEIVER")
|
|
288
|
+
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELED" | "EXPIRED")
|
|
289
|
+
def invitation_message: () -> ::String
|
|
290
|
+
def inviter_email: () -> ::String
|
|
291
|
+
def inviter_name: () -> ::String
|
|
292
|
+
end
|
|
293
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#get_connection_invitation-instance_method
|
|
294
|
+
def get_connection_invitation: (
|
|
295
|
+
catalog: ::String,
|
|
296
|
+
identifier: ::String
|
|
297
|
+
) -> _GetConnectionInvitationResponseSuccess
|
|
298
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectionInvitationResponseSuccess
|
|
299
|
+
|
|
300
|
+
interface _GetConnectionPreferencesResponseSuccess
|
|
301
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetConnectionPreferencesResponse]
|
|
302
|
+
def catalog: () -> ::String
|
|
303
|
+
def arn: () -> ::String
|
|
304
|
+
def access_type: () -> ("ALLOW_ALL" | "DENY_ALL" | "ALLOW_BY_DEFAULT_DENY_SOME")
|
|
305
|
+
def excluded_participant_ids: () -> ::Array[::String]
|
|
306
|
+
def updated_at: () -> ::Time
|
|
307
|
+
def revision: () -> ::Integer
|
|
308
|
+
end
|
|
309
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#get_connection_preferences-instance_method
|
|
310
|
+
def get_connection_preferences: (
|
|
311
|
+
catalog: ::String
|
|
312
|
+
) -> _GetConnectionPreferencesResponseSuccess
|
|
313
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectionPreferencesResponseSuccess
|
|
314
|
+
|
|
315
|
+
interface _GetPartnerResponseSuccess
|
|
316
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetPartnerResponse]
|
|
317
|
+
def catalog: () -> ::String
|
|
318
|
+
def arn: () -> ::String
|
|
319
|
+
def id: () -> ::String
|
|
320
|
+
def legal_name: () -> ::String
|
|
321
|
+
def created_at: () -> ::Time
|
|
322
|
+
def profile: () -> Types::PartnerProfile
|
|
323
|
+
def aws_training_certification_email_domains: () -> ::Array[Types::PartnerDomain]
|
|
324
|
+
end
|
|
325
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#get_partner-instance_method
|
|
326
|
+
def get_partner: (
|
|
327
|
+
catalog: ::String,
|
|
328
|
+
identifier: ::String
|
|
329
|
+
) -> _GetPartnerResponseSuccess
|
|
330
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetPartnerResponseSuccess
|
|
331
|
+
|
|
332
|
+
interface _GetProfileUpdateTaskResponseSuccess
|
|
333
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetProfileUpdateTaskResponse]
|
|
334
|
+
def catalog: () -> ::String
|
|
335
|
+
def arn: () -> ::String
|
|
336
|
+
def id: () -> ::String
|
|
337
|
+
def task_id: () -> ::String
|
|
338
|
+
def task_details: () -> Types::TaskDetails
|
|
339
|
+
def started_at: () -> ::Time
|
|
340
|
+
def status: () -> ("IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
341
|
+
def ended_at: () -> ::Time
|
|
342
|
+
def error_detail_list: () -> ::Array[Types::ErrorDetail]
|
|
343
|
+
end
|
|
344
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#get_profile_update_task-instance_method
|
|
345
|
+
def get_profile_update_task: (
|
|
346
|
+
catalog: ::String,
|
|
347
|
+
identifier: ::String
|
|
348
|
+
) -> _GetProfileUpdateTaskResponseSuccess
|
|
349
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProfileUpdateTaskResponseSuccess
|
|
350
|
+
|
|
351
|
+
interface _GetProfileVisibilityResponseSuccess
|
|
352
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetProfileVisibilityResponse]
|
|
353
|
+
def catalog: () -> ::String
|
|
354
|
+
def arn: () -> ::String
|
|
355
|
+
def id: () -> ::String
|
|
356
|
+
def visibility: () -> ("PRIVATE" | "PUBLIC")
|
|
357
|
+
def profile_id: () -> ::String
|
|
358
|
+
end
|
|
359
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#get_profile_visibility-instance_method
|
|
360
|
+
def get_profile_visibility: (
|
|
361
|
+
catalog: ::String,
|
|
362
|
+
identifier: ::String
|
|
363
|
+
) -> _GetProfileVisibilityResponseSuccess
|
|
364
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetProfileVisibilityResponseSuccess
|
|
365
|
+
|
|
366
|
+
interface _ListConnectionInvitationsResponseSuccess
|
|
367
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectionInvitationsResponse]
|
|
368
|
+
def connection_invitation_summaries: () -> ::Array[Types::ConnectionInvitationSummary]
|
|
369
|
+
def next_token: () -> ::String
|
|
370
|
+
end
|
|
371
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#list_connection_invitations-instance_method
|
|
372
|
+
def list_connection_invitations: (
|
|
373
|
+
catalog: ::String,
|
|
374
|
+
?next_token: ::String,
|
|
375
|
+
?connection_type: ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY"),
|
|
376
|
+
?max_results: ::Integer,
|
|
377
|
+
?other_participant_identifiers: Array[::String],
|
|
378
|
+
?participant_type: ("SENDER" | "RECEIVER"),
|
|
379
|
+
?status: ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELED" | "EXPIRED")
|
|
380
|
+
) -> _ListConnectionInvitationsResponseSuccess
|
|
381
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectionInvitationsResponseSuccess
|
|
382
|
+
|
|
383
|
+
interface _ListConnectionsResponseSuccess
|
|
384
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectionsResponse]
|
|
385
|
+
def connection_summaries: () -> ::Array[Types::ConnectionSummary]
|
|
386
|
+
def next_token: () -> ::String
|
|
387
|
+
end
|
|
388
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#list_connections-instance_method
|
|
389
|
+
def list_connections: (
|
|
390
|
+
catalog: ::String,
|
|
391
|
+
?next_token: ::String,
|
|
392
|
+
?connection_type: ::String,
|
|
393
|
+
?max_results: ::Integer,
|
|
394
|
+
?other_participant_identifiers: Array[::String]
|
|
395
|
+
) -> _ListConnectionsResponseSuccess
|
|
396
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectionsResponseSuccess
|
|
397
|
+
|
|
398
|
+
interface _ListPartnersResponseSuccess
|
|
399
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListPartnersResponse]
|
|
400
|
+
def partner_summary_list: () -> ::Array[Types::PartnerSummary]
|
|
401
|
+
def next_token: () -> ::String
|
|
402
|
+
end
|
|
403
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#list_partners-instance_method
|
|
404
|
+
def list_partners: (
|
|
405
|
+
catalog: ::String,
|
|
406
|
+
?next_token: ::String
|
|
407
|
+
) -> _ListPartnersResponseSuccess
|
|
408
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPartnersResponseSuccess
|
|
409
|
+
|
|
410
|
+
interface _ListTagsForResourceResponseSuccess
|
|
411
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
|
412
|
+
def resource_arn: () -> ::String
|
|
413
|
+
def tags: () -> ::Array[Types::Tag]
|
|
414
|
+
end
|
|
415
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#list_tags_for_resource-instance_method
|
|
416
|
+
def list_tags_for_resource: (
|
|
417
|
+
resource_arn: ::String
|
|
418
|
+
) -> _ListTagsForResourceResponseSuccess
|
|
419
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
|
420
|
+
|
|
421
|
+
interface _PutAllianceLeadContactResponseSuccess
|
|
422
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutAllianceLeadContactResponse]
|
|
423
|
+
def catalog: () -> ::String
|
|
424
|
+
def arn: () -> ::String
|
|
425
|
+
def id: () -> ::String
|
|
426
|
+
def alliance_lead_contact: () -> Types::AllianceLeadContact
|
|
427
|
+
end
|
|
428
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#put_alliance_lead_contact-instance_method
|
|
429
|
+
def put_alliance_lead_contact: (
|
|
430
|
+
catalog: ::String,
|
|
431
|
+
identifier: ::String,
|
|
432
|
+
alliance_lead_contact: {
|
|
433
|
+
first_name: ::String,
|
|
434
|
+
last_name: ::String,
|
|
435
|
+
email: ::String,
|
|
436
|
+
business_title: ::String
|
|
437
|
+
},
|
|
438
|
+
?email_verification_code: ::String
|
|
439
|
+
) -> _PutAllianceLeadContactResponseSuccess
|
|
440
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAllianceLeadContactResponseSuccess
|
|
441
|
+
|
|
442
|
+
interface _PutProfileVisibilityResponseSuccess
|
|
443
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutProfileVisibilityResponse]
|
|
444
|
+
def catalog: () -> ::String
|
|
445
|
+
def arn: () -> ::String
|
|
446
|
+
def id: () -> ::String
|
|
447
|
+
def visibility: () -> ("PRIVATE" | "PUBLIC")
|
|
448
|
+
def profile_id: () -> ::String
|
|
449
|
+
end
|
|
450
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#put_profile_visibility-instance_method
|
|
451
|
+
def put_profile_visibility: (
|
|
452
|
+
catalog: ::String,
|
|
453
|
+
identifier: ::String,
|
|
454
|
+
visibility: ("PRIVATE" | "PUBLIC")
|
|
455
|
+
) -> _PutProfileVisibilityResponseSuccess
|
|
456
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutProfileVisibilityResponseSuccess
|
|
457
|
+
|
|
458
|
+
interface _RejectConnectionInvitationResponseSuccess
|
|
459
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RejectConnectionInvitationResponse]
|
|
460
|
+
def catalog: () -> ::String
|
|
461
|
+
def id: () -> ::String
|
|
462
|
+
def arn: () -> ::String
|
|
463
|
+
def connection_id: () -> ::String
|
|
464
|
+
def connection_type: () -> ("OPPORTUNITY_COLLABORATION" | "SUBSIDIARY")
|
|
465
|
+
def created_at: () -> ::Time
|
|
466
|
+
def updated_at: () -> ::Time
|
|
467
|
+
def expires_at: () -> ::Time
|
|
468
|
+
def other_participant_identifier: () -> ::String
|
|
469
|
+
def participant_type: () -> ("SENDER" | "RECEIVER")
|
|
470
|
+
def status: () -> ("PENDING" | "ACCEPTED" | "REJECTED" | "CANCELED" | "EXPIRED")
|
|
471
|
+
def invitation_message: () -> ::String
|
|
472
|
+
def inviter_email: () -> ::String
|
|
473
|
+
def inviter_name: () -> ::String
|
|
474
|
+
end
|
|
475
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#reject_connection_invitation-instance_method
|
|
476
|
+
def reject_connection_invitation: (
|
|
477
|
+
catalog: ::String,
|
|
478
|
+
identifier: ::String,
|
|
479
|
+
client_token: ::String,
|
|
480
|
+
?reason: ::String
|
|
481
|
+
) -> _RejectConnectionInvitationResponseSuccess
|
|
482
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectConnectionInvitationResponseSuccess
|
|
483
|
+
|
|
484
|
+
interface _SendEmailVerificationCodeResponseSuccess
|
|
485
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SendEmailVerificationCodeResponse]
|
|
486
|
+
end
|
|
487
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#send_email_verification_code-instance_method
|
|
488
|
+
def send_email_verification_code: (
|
|
489
|
+
catalog: ::String,
|
|
490
|
+
email: ::String
|
|
491
|
+
) -> _SendEmailVerificationCodeResponseSuccess
|
|
492
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendEmailVerificationCodeResponseSuccess
|
|
493
|
+
|
|
494
|
+
interface _StartProfileUpdateTaskResponseSuccess
|
|
495
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartProfileUpdateTaskResponse]
|
|
496
|
+
def catalog: () -> ::String
|
|
497
|
+
def arn: () -> ::String
|
|
498
|
+
def id: () -> ::String
|
|
499
|
+
def task_id: () -> ::String
|
|
500
|
+
def task_details: () -> Types::TaskDetails
|
|
501
|
+
def started_at: () -> ::Time
|
|
502
|
+
def status: () -> ("IN_PROGRESS" | "CANCELED" | "SUCCEEDED" | "FAILED")
|
|
503
|
+
def ended_at: () -> ::Time
|
|
504
|
+
def error_detail_list: () -> ::Array[Types::ErrorDetail]
|
|
505
|
+
end
|
|
506
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#start_profile_update_task-instance_method
|
|
507
|
+
def start_profile_update_task: (
|
|
508
|
+
catalog: ::String,
|
|
509
|
+
identifier: ::String,
|
|
510
|
+
?client_token: ::String,
|
|
511
|
+
task_details: {
|
|
512
|
+
display_name: ::String,
|
|
513
|
+
description: ::String,
|
|
514
|
+
website_url: ::String,
|
|
515
|
+
logo_url: ::String,
|
|
516
|
+
primary_solution_type: ("SOFTWARE_PRODUCTS" | "CONSULTING_SERVICES" | "PROFESSIONAL_SERVICES" | "MANAGED_SERVICES" | "HARDWARE_PRODUCTS" | "COMMUNICATION_SERVICES" | "VALUE_ADDED_RESALE_AWS_SERVICES" | "TRAINING_SERVICES"),
|
|
517
|
+
industry_segments: Array[("AGRICULTURE_MINING" | "BIOTECHNOLOGY" | "BUSINESS_CONSUMER_SERVICES" | "BUSINESS_SERV" | "COMMUNICATIONS" | "COMPUTER_HARDWARE" | "COMPUTERS_ELECTRONICS" | "COMPUTER_SOFTWARE" | "CONSUMER_GOODS" | "CONSUMER_RELATED" | "EDUCATION" | "ENERGY_UTILITIES" | "FINANCIAL_SERVICES" | "GAMING" | "GOVERNMENT" | "GOVERNMENT_EDUCATION_PUBLIC_SERVICES" | "HEALTHCARE" | "HEALTHCARE_PHARMACEUTICALS_BIOTECH" | "INDUSTRIAL_ENERGY" | "INTERNET_SPECIFIC" | "LIFE_SCIENCES" | "MANUFACTURING" | "MEDIA_ENTERTAINMENT_LEISURE" | "MEDIA_ENTERTAINMENT" | "MEDICAL_HEALTH" | "NON_PROFIT_ORGANIZATION" | "OTHER" | "PROFESSIONAL_SERVICES" | "REAL_ESTATE_CONSTRUCTION" | "RETAIL" | "RETAIL_WHOLESALE_DISTRIBUTION" | "SEMICONDUCTOR_ELECTR" | "SOFTWARE_INTERNET" | "TELECOMMUNICATIONS" | "TRANSPORTATION_LOGISTICS" | "TRAVEL_HOSPITALITY" | "WHOLESALE_DISTRIBUTION")],
|
|
518
|
+
translation_source_locale: ::String,
|
|
519
|
+
localized_contents: Array[
|
|
520
|
+
{
|
|
521
|
+
display_name: ::String,
|
|
522
|
+
description: ::String,
|
|
523
|
+
website_url: ::String,
|
|
524
|
+
logo_url: ::String,
|
|
525
|
+
locale: ::String
|
|
526
|
+
},
|
|
527
|
+
]?
|
|
528
|
+
}
|
|
529
|
+
) -> _StartProfileUpdateTaskResponseSuccess
|
|
530
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProfileUpdateTaskResponseSuccess
|
|
531
|
+
|
|
532
|
+
interface _TagResourceResponseSuccess
|
|
533
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
|
534
|
+
end
|
|
535
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#tag_resource-instance_method
|
|
536
|
+
def tag_resource: (
|
|
537
|
+
resource_arn: ::String,
|
|
538
|
+
tags: Array[
|
|
539
|
+
{
|
|
540
|
+
key: ::String,
|
|
541
|
+
value: ::String
|
|
542
|
+
},
|
|
543
|
+
]
|
|
544
|
+
) -> _TagResourceResponseSuccess
|
|
545
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
|
546
|
+
|
|
547
|
+
interface _UntagResourceResponseSuccess
|
|
548
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
|
549
|
+
end
|
|
550
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#untag_resource-instance_method
|
|
551
|
+
def untag_resource: (
|
|
552
|
+
resource_arn: ::String,
|
|
553
|
+
tag_keys: Array[::String]
|
|
554
|
+
) -> _UntagResourceResponseSuccess
|
|
555
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
|
556
|
+
|
|
557
|
+
interface _UpdateConnectionPreferencesResponseSuccess
|
|
558
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateConnectionPreferencesResponse]
|
|
559
|
+
def catalog: () -> ::String
|
|
560
|
+
def arn: () -> ::String
|
|
561
|
+
def access_type: () -> ("ALLOW_ALL" | "DENY_ALL" | "ALLOW_BY_DEFAULT_DENY_SOME")
|
|
562
|
+
def excluded_participant_ids: () -> ::Array[::String]
|
|
563
|
+
def updated_at: () -> ::Time
|
|
564
|
+
def revision: () -> ::Integer
|
|
565
|
+
end
|
|
566
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PartnerCentralAccount/Client.html#update_connection_preferences-instance_method
|
|
567
|
+
def update_connection_preferences: (
|
|
568
|
+
catalog: ::String,
|
|
569
|
+
revision: ::Integer,
|
|
570
|
+
access_type: ("ALLOW_ALL" | "DENY_ALL" | "ALLOW_BY_DEFAULT_DENY_SOME"),
|
|
571
|
+
?excluded_participant_identifiers: Array[::String]
|
|
572
|
+
) -> _UpdateConnectionPreferencesResponseSuccess
|
|
573
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionPreferencesResponseSuccess
|
|
574
|
+
end
|
|
575
|
+
end
|
|
576
|
+
end
|
|
577
|
+
|