aws-sdk-licensemanagerusersubscriptions 1.12.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-licensemanagerusersubscriptions/client.rb +1 -1
- data/lib/aws-sdk-licensemanagerusersubscriptions/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-licensemanagerusersubscriptions.rb +1 -1
- data/sig/client.rbs +280 -0
- data/sig/errors.rbs +37 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +266 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1af53c16dff36d182c2a8e2cc2a476907f9f5424825f1742b122a7458c74d088
|
|
4
|
+
data.tar.gz: e00123d89a4ed62e5b4c0fed3536868c849a3a1406e96c41a0271ecae88cf596
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3d6a9a5bb20f317af586951a04576af2d4392eba1d6baf8e470cd3777c06a4424991f982ec52675d604c950075a9f1d56c177c4c2c0275ffce687728fac7d92
|
|
7
|
+
data.tar.gz: 2021b063bd4ce07d002cfc58724cef11ebda0b7cd28a3ec25e537fcaebdee2230ad32d0b8c724b0e7257cedd568821dc45351b20efdd5f4d2f53141570a962bb
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.13.0
|
|
@@ -1016,7 +1016,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
|
1016
1016
|
params: params,
|
|
1017
1017
|
config: config)
|
|
1018
1018
|
context[:gem_name] = 'aws-sdk-licensemanagerusersubscriptions'
|
|
1019
|
-
context[:gem_version] = '1.
|
|
1019
|
+
context[:gem_version] = '1.13.0'
|
|
1020
1020
|
Seahorse::Client::Request.new(handlers, context)
|
|
1021
1021
|
end
|
|
1022
1022
|
|
|
@@ -14,6 +14,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
|
14
14
|
option(
|
|
15
15
|
:endpoint_provider,
|
|
16
16
|
doc_type: 'Aws::LicenseManagerUserSubscriptions::EndpointProvider',
|
|
17
|
+
rbs_type: 'untyped',
|
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/sig/client.rbs
ADDED
|
@@ -0,0 +1,280 @@
|
|
|
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 LicenseManagerUserSubscriptions
|
|
10
|
+
class Client < ::Seahorse::Client::Base
|
|
11
|
+
include ::Aws::ClientStubs
|
|
12
|
+
|
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#initialize-instance_method
|
|
14
|
+
def self.new: (
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?active_endpoint_cache: bool,
|
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
20
|
+
?client_side_monitoring: bool,
|
|
21
|
+
?client_side_monitoring_client_id: String,
|
|
22
|
+
?client_side_monitoring_host: String,
|
|
23
|
+
?client_side_monitoring_port: Integer,
|
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
|
25
|
+
?convert_params: bool,
|
|
26
|
+
?correct_clock_skew: bool,
|
|
27
|
+
?defaults_mode: String,
|
|
28
|
+
?disable_host_prefix_injection: bool,
|
|
29
|
+
?disable_request_compression: bool,
|
|
30
|
+
?endpoint: String,
|
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
|
34
|
+
?endpoint_discovery: bool,
|
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
|
36
|
+
?log_formatter: untyped,
|
|
37
|
+
?log_level: Symbol,
|
|
38
|
+
?logger: untyped,
|
|
39
|
+
?max_attempts: Integer,
|
|
40
|
+
?profile: String,
|
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
|
42
|
+
?retry_backoff: Proc,
|
|
43
|
+
?retry_base_delay: Float,
|
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
45
|
+
?retry_limit: Integer,
|
|
46
|
+
?retry_max_delay: Integer,
|
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
48
|
+
?sdk_ua_app_id: String,
|
|
49
|
+
?secret_access_key: String,
|
|
50
|
+
?session_token: String,
|
|
51
|
+
?stub_responses: untyped,
|
|
52
|
+
?token_provider: untyped,
|
|
53
|
+
?use_dualstack_endpoint: bool,
|
|
54
|
+
?use_fips_endpoint: bool,
|
|
55
|
+
?validate_params: bool,
|
|
56
|
+
?endpoint_provider: untyped,
|
|
57
|
+
?http_proxy: String,
|
|
58
|
+
?http_open_timeout: (Float | Integer),
|
|
59
|
+
?http_read_timeout: (Float | Integer),
|
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
63
|
+
?http_wire_trace: bool,
|
|
64
|
+
?ssl_verify_peer: bool,
|
|
65
|
+
?ssl_ca_bundle: String,
|
|
66
|
+
?ssl_ca_directory: String,
|
|
67
|
+
?ssl_ca_store: String,
|
|
68
|
+
?on_chunk_received: Proc,
|
|
69
|
+
?on_chunk_sent: Proc,
|
|
70
|
+
?raise_response_errors: bool
|
|
71
|
+
) -> instance
|
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
interface _AssociateUserResponseSuccess
|
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateUserResponse]
|
|
77
|
+
def instance_user_summary: () -> Types::InstanceUserSummary
|
|
78
|
+
end
|
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#associate_user-instance_method
|
|
80
|
+
def associate_user: (
|
|
81
|
+
?domain: ::String,
|
|
82
|
+
identity_provider: {
|
|
83
|
+
active_directory_identity_provider: {
|
|
84
|
+
directory_id: ::String?
|
|
85
|
+
}?
|
|
86
|
+
},
|
|
87
|
+
instance_id: ::String,
|
|
88
|
+
username: ::String
|
|
89
|
+
) -> _AssociateUserResponseSuccess
|
|
90
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateUserResponseSuccess
|
|
91
|
+
|
|
92
|
+
interface _DeregisterIdentityProviderResponseSuccess
|
|
93
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterIdentityProviderResponse]
|
|
94
|
+
def identity_provider_summary: () -> Types::IdentityProviderSummary
|
|
95
|
+
end
|
|
96
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#deregister_identity_provider-instance_method
|
|
97
|
+
def deregister_identity_provider: (
|
|
98
|
+
identity_provider: {
|
|
99
|
+
active_directory_identity_provider: {
|
|
100
|
+
directory_id: ::String?
|
|
101
|
+
}?
|
|
102
|
+
},
|
|
103
|
+
product: ::String
|
|
104
|
+
) -> _DeregisterIdentityProviderResponseSuccess
|
|
105
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterIdentityProviderResponseSuccess
|
|
106
|
+
|
|
107
|
+
interface _DisassociateUserResponseSuccess
|
|
108
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateUserResponse]
|
|
109
|
+
def instance_user_summary: () -> Types::InstanceUserSummary
|
|
110
|
+
end
|
|
111
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#disassociate_user-instance_method
|
|
112
|
+
def disassociate_user: (
|
|
113
|
+
?domain: ::String,
|
|
114
|
+
identity_provider: {
|
|
115
|
+
active_directory_identity_provider: {
|
|
116
|
+
directory_id: ::String?
|
|
117
|
+
}?
|
|
118
|
+
},
|
|
119
|
+
instance_id: ::String,
|
|
120
|
+
username: ::String
|
|
121
|
+
) -> _DisassociateUserResponseSuccess
|
|
122
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateUserResponseSuccess
|
|
123
|
+
|
|
124
|
+
interface _ListIdentityProvidersResponseSuccess
|
|
125
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentityProvidersResponse]
|
|
126
|
+
def identity_provider_summaries: () -> ::Array[Types::IdentityProviderSummary]
|
|
127
|
+
def next_token: () -> ::String
|
|
128
|
+
end
|
|
129
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_identity_providers-instance_method
|
|
130
|
+
def list_identity_providers: (
|
|
131
|
+
?max_results: ::Integer,
|
|
132
|
+
?next_token: ::String
|
|
133
|
+
) -> _ListIdentityProvidersResponseSuccess
|
|
134
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIdentityProvidersResponseSuccess
|
|
135
|
+
|
|
136
|
+
interface _ListInstancesResponseSuccess
|
|
137
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListInstancesResponse]
|
|
138
|
+
def instance_summaries: () -> ::Array[Types::InstanceSummary]
|
|
139
|
+
def next_token: () -> ::String
|
|
140
|
+
end
|
|
141
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_instances-instance_method
|
|
142
|
+
def list_instances: (
|
|
143
|
+
?filters: Array[
|
|
144
|
+
{
|
|
145
|
+
attribute: ::String?,
|
|
146
|
+
operation: ::String?,
|
|
147
|
+
value: ::String?
|
|
148
|
+
},
|
|
149
|
+
],
|
|
150
|
+
?max_results: ::Integer,
|
|
151
|
+
?next_token: ::String
|
|
152
|
+
) -> _ListInstancesResponseSuccess
|
|
153
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInstancesResponseSuccess
|
|
154
|
+
|
|
155
|
+
interface _ListProductSubscriptionsResponseSuccess
|
|
156
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProductSubscriptionsResponse]
|
|
157
|
+
def next_token: () -> ::String
|
|
158
|
+
def product_user_summaries: () -> ::Array[Types::ProductUserSummary]
|
|
159
|
+
end
|
|
160
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_product_subscriptions-instance_method
|
|
161
|
+
def list_product_subscriptions: (
|
|
162
|
+
?filters: Array[
|
|
163
|
+
{
|
|
164
|
+
attribute: ::String?,
|
|
165
|
+
operation: ::String?,
|
|
166
|
+
value: ::String?
|
|
167
|
+
},
|
|
168
|
+
],
|
|
169
|
+
identity_provider: {
|
|
170
|
+
active_directory_identity_provider: {
|
|
171
|
+
directory_id: ::String?
|
|
172
|
+
}?
|
|
173
|
+
},
|
|
174
|
+
?max_results: ::Integer,
|
|
175
|
+
?next_token: ::String,
|
|
176
|
+
product: ::String
|
|
177
|
+
) -> _ListProductSubscriptionsResponseSuccess
|
|
178
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProductSubscriptionsResponseSuccess
|
|
179
|
+
|
|
180
|
+
interface _ListUserAssociationsResponseSuccess
|
|
181
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListUserAssociationsResponse]
|
|
182
|
+
def instance_user_summaries: () -> ::Array[Types::InstanceUserSummary]
|
|
183
|
+
def next_token: () -> ::String
|
|
184
|
+
end
|
|
185
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_user_associations-instance_method
|
|
186
|
+
def list_user_associations: (
|
|
187
|
+
?filters: Array[
|
|
188
|
+
{
|
|
189
|
+
attribute: ::String?,
|
|
190
|
+
operation: ::String?,
|
|
191
|
+
value: ::String?
|
|
192
|
+
},
|
|
193
|
+
],
|
|
194
|
+
identity_provider: {
|
|
195
|
+
active_directory_identity_provider: {
|
|
196
|
+
directory_id: ::String?
|
|
197
|
+
}?
|
|
198
|
+
},
|
|
199
|
+
instance_id: ::String,
|
|
200
|
+
?max_results: ::Integer,
|
|
201
|
+
?next_token: ::String
|
|
202
|
+
) -> _ListUserAssociationsResponseSuccess
|
|
203
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUserAssociationsResponseSuccess
|
|
204
|
+
|
|
205
|
+
interface _RegisterIdentityProviderResponseSuccess
|
|
206
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RegisterIdentityProviderResponse]
|
|
207
|
+
def identity_provider_summary: () -> Types::IdentityProviderSummary
|
|
208
|
+
end
|
|
209
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#register_identity_provider-instance_method
|
|
210
|
+
def register_identity_provider: (
|
|
211
|
+
identity_provider: {
|
|
212
|
+
active_directory_identity_provider: {
|
|
213
|
+
directory_id: ::String?
|
|
214
|
+
}?
|
|
215
|
+
},
|
|
216
|
+
product: ::String,
|
|
217
|
+
?settings: {
|
|
218
|
+
security_group_id: ::String,
|
|
219
|
+
subnets: Array[::String]
|
|
220
|
+
}
|
|
221
|
+
) -> _RegisterIdentityProviderResponseSuccess
|
|
222
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterIdentityProviderResponseSuccess
|
|
223
|
+
|
|
224
|
+
interface _StartProductSubscriptionResponseSuccess
|
|
225
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartProductSubscriptionResponse]
|
|
226
|
+
def product_user_summary: () -> Types::ProductUserSummary
|
|
227
|
+
end
|
|
228
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#start_product_subscription-instance_method
|
|
229
|
+
def start_product_subscription: (
|
|
230
|
+
?domain: ::String,
|
|
231
|
+
identity_provider: {
|
|
232
|
+
active_directory_identity_provider: {
|
|
233
|
+
directory_id: ::String?
|
|
234
|
+
}?
|
|
235
|
+
},
|
|
236
|
+
product: ::String,
|
|
237
|
+
username: ::String
|
|
238
|
+
) -> _StartProductSubscriptionResponseSuccess
|
|
239
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProductSubscriptionResponseSuccess
|
|
240
|
+
|
|
241
|
+
interface _StopProductSubscriptionResponseSuccess
|
|
242
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopProductSubscriptionResponse]
|
|
243
|
+
def product_user_summary: () -> Types::ProductUserSummary
|
|
244
|
+
end
|
|
245
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#stop_product_subscription-instance_method
|
|
246
|
+
def stop_product_subscription: (
|
|
247
|
+
?domain: ::String,
|
|
248
|
+
identity_provider: {
|
|
249
|
+
active_directory_identity_provider: {
|
|
250
|
+
directory_id: ::String?
|
|
251
|
+
}?
|
|
252
|
+
},
|
|
253
|
+
product: ::String,
|
|
254
|
+
username: ::String
|
|
255
|
+
) -> _StopProductSubscriptionResponseSuccess
|
|
256
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopProductSubscriptionResponseSuccess
|
|
257
|
+
|
|
258
|
+
interface _UpdateIdentityProviderSettingsResponseSuccess
|
|
259
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIdentityProviderSettingsResponse]
|
|
260
|
+
def identity_provider_summary: () -> Types::IdentityProviderSummary
|
|
261
|
+
end
|
|
262
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#update_identity_provider_settings-instance_method
|
|
263
|
+
def update_identity_provider_settings: (
|
|
264
|
+
identity_provider: {
|
|
265
|
+
active_directory_identity_provider: {
|
|
266
|
+
directory_id: ::String?
|
|
267
|
+
}?
|
|
268
|
+
},
|
|
269
|
+
product: ::String,
|
|
270
|
+
update_settings: {
|
|
271
|
+
add_subnets: Array[::String],
|
|
272
|
+
remove_subnets: Array[::String],
|
|
273
|
+
security_group_id: ::String?
|
|
274
|
+
}
|
|
275
|
+
) -> _UpdateIdentityProviderSettingsResponseSuccess
|
|
276
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIdentityProviderSettingsResponseSuccess
|
|
277
|
+
end
|
|
278
|
+
end
|
|
279
|
+
end
|
|
280
|
+
|
data/sig/errors.rbs
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
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 LicenseManagerUserSubscriptions
|
|
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 message: () -> ::String
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
end
|
data/sig/resource.rbs
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
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 LicenseManagerUserSubscriptions
|
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Resource.html
|
|
11
|
+
class Resource
|
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Resource.html#initialize-instance_method
|
|
13
|
+
def initialize: (
|
|
14
|
+
?client: Client,
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?active_endpoint_cache: bool,
|
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
20
|
+
?client_side_monitoring: bool,
|
|
21
|
+
?client_side_monitoring_client_id: String,
|
|
22
|
+
?client_side_monitoring_host: String,
|
|
23
|
+
?client_side_monitoring_port: Integer,
|
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
|
25
|
+
?convert_params: bool,
|
|
26
|
+
?correct_clock_skew: bool,
|
|
27
|
+
?defaults_mode: String,
|
|
28
|
+
?disable_host_prefix_injection: bool,
|
|
29
|
+
?disable_request_compression: bool,
|
|
30
|
+
?endpoint: String,
|
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
|
34
|
+
?endpoint_discovery: bool,
|
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
|
36
|
+
?log_formatter: untyped,
|
|
37
|
+
?log_level: Symbol,
|
|
38
|
+
?logger: untyped,
|
|
39
|
+
?max_attempts: Integer,
|
|
40
|
+
?profile: String,
|
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
|
42
|
+
?retry_backoff: Proc,
|
|
43
|
+
?retry_base_delay: Float,
|
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
45
|
+
?retry_limit: Integer,
|
|
46
|
+
?retry_max_delay: Integer,
|
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
48
|
+
?sdk_ua_app_id: String,
|
|
49
|
+
?secret_access_key: String,
|
|
50
|
+
?session_token: String,
|
|
51
|
+
?stub_responses: untyped,
|
|
52
|
+
?token_provider: untyped,
|
|
53
|
+
?use_dualstack_endpoint: bool,
|
|
54
|
+
?use_fips_endpoint: bool,
|
|
55
|
+
?validate_params: bool,
|
|
56
|
+
?endpoint_provider: untyped,
|
|
57
|
+
?http_proxy: String,
|
|
58
|
+
?http_open_timeout: (Float | Integer),
|
|
59
|
+
?http_read_timeout: (Float | Integer),
|
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
63
|
+
?http_wire_trace: bool,
|
|
64
|
+
?ssl_verify_peer: bool,
|
|
65
|
+
?ssl_ca_bundle: String,
|
|
66
|
+
?ssl_ca_directory: String,
|
|
67
|
+
?ssl_ca_store: String,
|
|
68
|
+
?on_chunk_received: Proc,
|
|
69
|
+
?on_chunk_sent: Proc,
|
|
70
|
+
?raise_response_errors: bool
|
|
71
|
+
) -> void
|
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
73
|
+
|
|
74
|
+
def client: () -> Client
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
end
|
|
78
|
+
end
|
|
79
|
+
end
|
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,266 @@
|
|
|
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::LicenseManagerUserSubscriptions
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessDeniedException
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class ActiveDirectoryIdentityProvider
|
|
17
|
+
attr_accessor directory_id: ::String
|
|
18
|
+
SENSITIVE: []
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
class AssociateUserRequest
|
|
22
|
+
attr_accessor domain: ::String
|
|
23
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
24
|
+
attr_accessor instance_id: ::String
|
|
25
|
+
attr_accessor username: ::String
|
|
26
|
+
SENSITIVE: []
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
class AssociateUserResponse
|
|
30
|
+
attr_accessor instance_user_summary: Types::InstanceUserSummary
|
|
31
|
+
SENSITIVE: []
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
class ConflictException
|
|
35
|
+
attr_accessor message: ::String
|
|
36
|
+
SENSITIVE: []
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
class DeregisterIdentityProviderRequest
|
|
40
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
41
|
+
attr_accessor product: ::String
|
|
42
|
+
SENSITIVE: []
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
class DeregisterIdentityProviderResponse
|
|
46
|
+
attr_accessor identity_provider_summary: Types::IdentityProviderSummary
|
|
47
|
+
SENSITIVE: []
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
class DisassociateUserRequest
|
|
51
|
+
attr_accessor domain: ::String
|
|
52
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
53
|
+
attr_accessor instance_id: ::String
|
|
54
|
+
attr_accessor username: ::String
|
|
55
|
+
SENSITIVE: []
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
class DisassociateUserResponse
|
|
59
|
+
attr_accessor instance_user_summary: Types::InstanceUserSummary
|
|
60
|
+
SENSITIVE: []
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
class Filter
|
|
64
|
+
attr_accessor attribute: ::String
|
|
65
|
+
attr_accessor operation: ::String
|
|
66
|
+
attr_accessor value: ::String
|
|
67
|
+
SENSITIVE: []
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
class IdentityProvider
|
|
71
|
+
attr_accessor active_directory_identity_provider: Types::ActiveDirectoryIdentityProvider
|
|
72
|
+
attr_accessor unknown: untyped
|
|
73
|
+
SENSITIVE: []
|
|
74
|
+
|
|
75
|
+
class ActiveDirectoryIdentityProvider < IdentityProvider
|
|
76
|
+
end
|
|
77
|
+
class Unknown < IdentityProvider
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
class IdentityProviderSummary
|
|
82
|
+
attr_accessor failure_message: ::String
|
|
83
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
84
|
+
attr_accessor product: ::String
|
|
85
|
+
attr_accessor settings: Types::Settings
|
|
86
|
+
attr_accessor status: ::String
|
|
87
|
+
SENSITIVE: []
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
class InstanceSummary
|
|
91
|
+
attr_accessor instance_id: ::String
|
|
92
|
+
attr_accessor last_status_check_date: ::String
|
|
93
|
+
attr_accessor products: ::Array[::String]
|
|
94
|
+
attr_accessor status: ::String
|
|
95
|
+
attr_accessor status_message: ::String
|
|
96
|
+
SENSITIVE: []
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
class InstanceUserSummary
|
|
100
|
+
attr_accessor association_date: ::String
|
|
101
|
+
attr_accessor disassociation_date: ::String
|
|
102
|
+
attr_accessor domain: ::String
|
|
103
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
104
|
+
attr_accessor instance_id: ::String
|
|
105
|
+
attr_accessor status: ::String
|
|
106
|
+
attr_accessor status_message: ::String
|
|
107
|
+
attr_accessor username: ::String
|
|
108
|
+
SENSITIVE: []
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
class InternalServerException
|
|
112
|
+
attr_accessor message: ::String
|
|
113
|
+
SENSITIVE: []
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
class ListIdentityProvidersRequest
|
|
117
|
+
attr_accessor max_results: ::Integer
|
|
118
|
+
attr_accessor next_token: ::String
|
|
119
|
+
SENSITIVE: []
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
class ListIdentityProvidersResponse
|
|
123
|
+
attr_accessor identity_provider_summaries: ::Array[Types::IdentityProviderSummary]
|
|
124
|
+
attr_accessor next_token: ::String
|
|
125
|
+
SENSITIVE: []
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
class ListInstancesRequest
|
|
129
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
130
|
+
attr_accessor max_results: ::Integer
|
|
131
|
+
attr_accessor next_token: ::String
|
|
132
|
+
SENSITIVE: []
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
class ListInstancesResponse
|
|
136
|
+
attr_accessor instance_summaries: ::Array[Types::InstanceSummary]
|
|
137
|
+
attr_accessor next_token: ::String
|
|
138
|
+
SENSITIVE: []
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
class ListProductSubscriptionsRequest
|
|
142
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
143
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
144
|
+
attr_accessor max_results: ::Integer
|
|
145
|
+
attr_accessor next_token: ::String
|
|
146
|
+
attr_accessor product: ::String
|
|
147
|
+
SENSITIVE: []
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
class ListProductSubscriptionsResponse
|
|
151
|
+
attr_accessor next_token: ::String
|
|
152
|
+
attr_accessor product_user_summaries: ::Array[Types::ProductUserSummary]
|
|
153
|
+
SENSITIVE: []
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
class ListUserAssociationsRequest
|
|
157
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
158
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
159
|
+
attr_accessor instance_id: ::String
|
|
160
|
+
attr_accessor max_results: ::Integer
|
|
161
|
+
attr_accessor next_token: ::String
|
|
162
|
+
SENSITIVE: []
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
class ListUserAssociationsResponse
|
|
166
|
+
attr_accessor instance_user_summaries: ::Array[Types::InstanceUserSummary]
|
|
167
|
+
attr_accessor next_token: ::String
|
|
168
|
+
SENSITIVE: []
|
|
169
|
+
end
|
|
170
|
+
|
|
171
|
+
class ProductUserSummary
|
|
172
|
+
attr_accessor domain: ::String
|
|
173
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
174
|
+
attr_accessor product: ::String
|
|
175
|
+
attr_accessor status: ::String
|
|
176
|
+
attr_accessor status_message: ::String
|
|
177
|
+
attr_accessor subscription_end_date: ::String
|
|
178
|
+
attr_accessor subscription_start_date: ::String
|
|
179
|
+
attr_accessor username: ::String
|
|
180
|
+
SENSITIVE: []
|
|
181
|
+
end
|
|
182
|
+
|
|
183
|
+
class RegisterIdentityProviderRequest
|
|
184
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
185
|
+
attr_accessor product: ::String
|
|
186
|
+
attr_accessor settings: Types::Settings
|
|
187
|
+
SENSITIVE: []
|
|
188
|
+
end
|
|
189
|
+
|
|
190
|
+
class RegisterIdentityProviderResponse
|
|
191
|
+
attr_accessor identity_provider_summary: Types::IdentityProviderSummary
|
|
192
|
+
SENSITIVE: []
|
|
193
|
+
end
|
|
194
|
+
|
|
195
|
+
class ResourceNotFoundException
|
|
196
|
+
attr_accessor message: ::String
|
|
197
|
+
SENSITIVE: []
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
class ServiceQuotaExceededException
|
|
201
|
+
attr_accessor message: ::String
|
|
202
|
+
SENSITIVE: []
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
class Settings
|
|
206
|
+
attr_accessor security_group_id: ::String
|
|
207
|
+
attr_accessor subnets: ::Array[::String]
|
|
208
|
+
SENSITIVE: []
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
class StartProductSubscriptionRequest
|
|
212
|
+
attr_accessor domain: ::String
|
|
213
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
214
|
+
attr_accessor product: ::String
|
|
215
|
+
attr_accessor username: ::String
|
|
216
|
+
SENSITIVE: []
|
|
217
|
+
end
|
|
218
|
+
|
|
219
|
+
class StartProductSubscriptionResponse
|
|
220
|
+
attr_accessor product_user_summary: Types::ProductUserSummary
|
|
221
|
+
SENSITIVE: []
|
|
222
|
+
end
|
|
223
|
+
|
|
224
|
+
class StopProductSubscriptionRequest
|
|
225
|
+
attr_accessor domain: ::String
|
|
226
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
227
|
+
attr_accessor product: ::String
|
|
228
|
+
attr_accessor username: ::String
|
|
229
|
+
SENSITIVE: []
|
|
230
|
+
end
|
|
231
|
+
|
|
232
|
+
class StopProductSubscriptionResponse
|
|
233
|
+
attr_accessor product_user_summary: Types::ProductUserSummary
|
|
234
|
+
SENSITIVE: []
|
|
235
|
+
end
|
|
236
|
+
|
|
237
|
+
class ThrottlingException
|
|
238
|
+
attr_accessor message: ::String
|
|
239
|
+
SENSITIVE: []
|
|
240
|
+
end
|
|
241
|
+
|
|
242
|
+
class UpdateIdentityProviderSettingsRequest
|
|
243
|
+
attr_accessor identity_provider: Types::IdentityProvider
|
|
244
|
+
attr_accessor product: ::String
|
|
245
|
+
attr_accessor update_settings: Types::UpdateSettings
|
|
246
|
+
SENSITIVE: []
|
|
247
|
+
end
|
|
248
|
+
|
|
249
|
+
class UpdateIdentityProviderSettingsResponse
|
|
250
|
+
attr_accessor identity_provider_summary: Types::IdentityProviderSummary
|
|
251
|
+
SENSITIVE: []
|
|
252
|
+
end
|
|
253
|
+
|
|
254
|
+
class UpdateSettings
|
|
255
|
+
attr_accessor add_subnets: ::Array[::String]
|
|
256
|
+
attr_accessor remove_subnets: ::Array[::String]
|
|
257
|
+
attr_accessor security_group_id: ::String
|
|
258
|
+
SENSITIVE: []
|
|
259
|
+
end
|
|
260
|
+
|
|
261
|
+
class ValidationException
|
|
262
|
+
attr_accessor message: ::String
|
|
263
|
+
SENSITIVE: []
|
|
264
|
+
end
|
|
265
|
+
end
|
|
266
|
+
end
|
data/sig/waiters.rbs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
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 LicenseManagerUserSubscriptions
|
|
10
|
+
module Waiters
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-licensemanagerusersubscriptions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.13.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.191.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.191.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -66,13 +66,18 @@ files:
|
|
|
66
66
|
- lib/aws-sdk-licensemanagerusersubscriptions/plugins/endpoints.rb
|
|
67
67
|
- lib/aws-sdk-licensemanagerusersubscriptions/resource.rb
|
|
68
68
|
- lib/aws-sdk-licensemanagerusersubscriptions/types.rb
|
|
69
|
+
- sig/client.rbs
|
|
70
|
+
- sig/errors.rbs
|
|
71
|
+
- sig/resource.rbs
|
|
72
|
+
- sig/types.rbs
|
|
73
|
+
- sig/waiters.rbs
|
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
|
70
75
|
licenses:
|
|
71
76
|
- Apache-2.0
|
|
72
77
|
metadata:
|
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-licensemanagerusersubscriptions
|
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-licensemanagerusersubscriptions/CHANGELOG.md
|
|
75
|
-
post_install_message:
|
|
80
|
+
post_install_message:
|
|
76
81
|
rdoc_options: []
|
|
77
82
|
require_paths:
|
|
78
83
|
- lib
|
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
92
|
- !ruby/object:Gem::Version
|
|
88
93
|
version: '0'
|
|
89
94
|
requirements: []
|
|
90
|
-
rubygems_version: 3.
|
|
91
|
-
signing_key:
|
|
95
|
+
rubygems_version: 3.4.10
|
|
96
|
+
signing_key:
|
|
92
97
|
specification_version: 4
|
|
93
98
|
summary: AWS SDK for Ruby - AWS License Manager User Subscriptions
|
|
94
99
|
test_files: []
|