aws-sdk-licensemanagerusersubscriptions 1.26.0 → 1.28.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-licensemanagerusersubscriptions/client.rb +627 -62
- data/lib/aws-sdk-licensemanagerusersubscriptions/client_api.rb +255 -12
- data/lib/aws-sdk-licensemanagerusersubscriptions/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-licensemanagerusersubscriptions/types.rb +636 -57
- data/lib/aws-sdk-licensemanagerusersubscriptions.rb +1 -1
- data/sig/client.rbs +232 -15
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +157 -3
- metadata +6 -6
@@ -54,7 +54,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
54
54
|
autoload :EndpointProvider, 'aws-sdk-licensemanagerusersubscriptions/endpoint_provider'
|
55
55
|
autoload :Endpoints, 'aws-sdk-licensemanagerusersubscriptions/endpoints'
|
56
56
|
|
57
|
-
GEM_VERSION = '1.
|
57
|
+
GEM_VERSION = '1.28.0'
|
58
58
|
|
59
59
|
end
|
60
60
|
|
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -84,28 +86,91 @@ module Aws
|
|
84
86
|
?domain: ::String,
|
85
87
|
identity_provider: {
|
86
88
|
active_directory_identity_provider: {
|
89
|
+
active_directory_settings: {
|
90
|
+
domain_credentials_provider: {
|
91
|
+
secrets_manager_credentials_provider: {
|
92
|
+
secret_id: ::String?
|
93
|
+
}?
|
94
|
+
}?,
|
95
|
+
domain_ipv_4_list: Array[::String]?,
|
96
|
+
domain_name: ::String?,
|
97
|
+
domain_network_settings: {
|
98
|
+
subnets: Array[::String]
|
99
|
+
}?
|
100
|
+
}?,
|
101
|
+
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
87
102
|
directory_id: ::String?
|
88
103
|
}?
|
89
104
|
},
|
90
105
|
instance_id: ::String,
|
106
|
+
?tags: Hash[::String, ::String],
|
91
107
|
username: ::String
|
92
108
|
) -> _AssociateUserResponseSuccess
|
93
109
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateUserResponseSuccess
|
94
110
|
|
111
|
+
interface _CreateLicenseServerEndpointResponseSuccess
|
112
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLicenseServerEndpointResponse]
|
113
|
+
def identity_provider_arn: () -> ::String
|
114
|
+
def license_server_endpoint_arn: () -> ::String
|
115
|
+
end
|
116
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#create_license_server_endpoint-instance_method
|
117
|
+
def create_license_server_endpoint: (
|
118
|
+
identity_provider_arn: ::String,
|
119
|
+
license_server_settings: {
|
120
|
+
server_settings: {
|
121
|
+
rds_sal_settings: {
|
122
|
+
rds_sal_credentials_provider: {
|
123
|
+
secrets_manager_credentials_provider: {
|
124
|
+
secret_id: ::String?
|
125
|
+
}?
|
126
|
+
}
|
127
|
+
}?
|
128
|
+
},
|
129
|
+
server_type: ("RDS_SAL")
|
130
|
+
},
|
131
|
+
?tags: Hash[::String, ::String]
|
132
|
+
) -> _CreateLicenseServerEndpointResponseSuccess
|
133
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLicenseServerEndpointResponseSuccess
|
134
|
+
|
135
|
+
interface _DeleteLicenseServerEndpointResponseSuccess
|
136
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteLicenseServerEndpointResponse]
|
137
|
+
def license_server_endpoint: () -> Types::LicenseServerEndpoint
|
138
|
+
end
|
139
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#delete_license_server_endpoint-instance_method
|
140
|
+
def delete_license_server_endpoint: (
|
141
|
+
license_server_endpoint_arn: ::String,
|
142
|
+
server_type: ("RDS_SAL")
|
143
|
+
) -> _DeleteLicenseServerEndpointResponseSuccess
|
144
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteLicenseServerEndpointResponseSuccess
|
145
|
+
|
95
146
|
interface _DeregisterIdentityProviderResponseSuccess
|
96
147
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeregisterIdentityProviderResponse]
|
97
148
|
def identity_provider_summary: () -> Types::IdentityProviderSummary
|
98
149
|
end
|
99
150
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#deregister_identity_provider-instance_method
|
100
151
|
def deregister_identity_provider: (
|
101
|
-
identity_provider: {
|
152
|
+
?identity_provider: {
|
102
153
|
active_directory_identity_provider: {
|
154
|
+
active_directory_settings: {
|
155
|
+
domain_credentials_provider: {
|
156
|
+
secrets_manager_credentials_provider: {
|
157
|
+
secret_id: ::String?
|
158
|
+
}?
|
159
|
+
}?,
|
160
|
+
domain_ipv_4_list: Array[::String]?,
|
161
|
+
domain_name: ::String?,
|
162
|
+
domain_network_settings: {
|
163
|
+
subnets: Array[::String]
|
164
|
+
}?
|
165
|
+
}?,
|
166
|
+
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
103
167
|
directory_id: ::String?
|
104
168
|
}?
|
105
169
|
},
|
106
|
-
|
170
|
+
?identity_provider_arn: ::String,
|
171
|
+
?product: ::String
|
107
172
|
) -> _DeregisterIdentityProviderResponseSuccess
|
108
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterIdentityProviderResponseSuccess
|
173
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeregisterIdentityProviderResponseSuccess
|
109
174
|
|
110
175
|
interface _DisassociateUserResponseSuccess
|
111
176
|
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateUserResponse]
|
@@ -114,15 +179,29 @@ module Aws
|
|
114
179
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#disassociate_user-instance_method
|
115
180
|
def disassociate_user: (
|
116
181
|
?domain: ::String,
|
117
|
-
identity_provider: {
|
182
|
+
?identity_provider: {
|
118
183
|
active_directory_identity_provider: {
|
184
|
+
active_directory_settings: {
|
185
|
+
domain_credentials_provider: {
|
186
|
+
secrets_manager_credentials_provider: {
|
187
|
+
secret_id: ::String?
|
188
|
+
}?
|
189
|
+
}?,
|
190
|
+
domain_ipv_4_list: Array[::String]?,
|
191
|
+
domain_name: ::String?,
|
192
|
+
domain_network_settings: {
|
193
|
+
subnets: Array[::String]
|
194
|
+
}?
|
195
|
+
}?,
|
196
|
+
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
119
197
|
directory_id: ::String?
|
120
198
|
}?
|
121
199
|
},
|
122
|
-
instance_id: ::String,
|
123
|
-
|
200
|
+
?instance_id: ::String,
|
201
|
+
?instance_user_arn: ::String,
|
202
|
+
?username: ::String
|
124
203
|
) -> _DisassociateUserResponseSuccess
|
125
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateUserResponseSuccess
|
204
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateUserResponseSuccess
|
126
205
|
|
127
206
|
interface _ListIdentityProvidersResponseSuccess
|
128
207
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListIdentityProvidersResponse]
|
@@ -131,6 +210,13 @@ module Aws
|
|
131
210
|
end
|
132
211
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_identity_providers-instance_method
|
133
212
|
def list_identity_providers: (
|
213
|
+
?filters: Array[
|
214
|
+
{
|
215
|
+
attribute: ::String?,
|
216
|
+
operation: ::String?,
|
217
|
+
value: ::String?
|
218
|
+
},
|
219
|
+
],
|
134
220
|
?max_results: ::Integer,
|
135
221
|
?next_token: ::String
|
136
222
|
) -> _ListIdentityProvidersResponseSuccess
|
@@ -155,6 +241,25 @@ module Aws
|
|
155
241
|
) -> _ListInstancesResponseSuccess
|
156
242
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListInstancesResponseSuccess
|
157
243
|
|
244
|
+
interface _ListLicenseServerEndpointsResponseSuccess
|
245
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListLicenseServerEndpointsResponse]
|
246
|
+
def license_server_endpoints: () -> ::Array[Types::LicenseServerEndpoint]
|
247
|
+
def next_token: () -> ::String
|
248
|
+
end
|
249
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_license_server_endpoints-instance_method
|
250
|
+
def list_license_server_endpoints: (
|
251
|
+
?filters: Array[
|
252
|
+
{
|
253
|
+
attribute: ::String?,
|
254
|
+
operation: ::String?,
|
255
|
+
value: ::String?
|
256
|
+
},
|
257
|
+
],
|
258
|
+
?max_results: ::Integer,
|
259
|
+
?next_token: ::String
|
260
|
+
) -> _ListLicenseServerEndpointsResponseSuccess
|
261
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLicenseServerEndpointsResponseSuccess
|
262
|
+
|
158
263
|
interface _ListProductSubscriptionsResponseSuccess
|
159
264
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListProductSubscriptionsResponse]
|
160
265
|
def next_token: () -> ::String
|
@@ -171,15 +276,38 @@ module Aws
|
|
171
276
|
],
|
172
277
|
identity_provider: {
|
173
278
|
active_directory_identity_provider: {
|
279
|
+
active_directory_settings: {
|
280
|
+
domain_credentials_provider: {
|
281
|
+
secrets_manager_credentials_provider: {
|
282
|
+
secret_id: ::String?
|
283
|
+
}?
|
284
|
+
}?,
|
285
|
+
domain_ipv_4_list: Array[::String]?,
|
286
|
+
domain_name: ::String?,
|
287
|
+
domain_network_settings: {
|
288
|
+
subnets: Array[::String]
|
289
|
+
}?
|
290
|
+
}?,
|
291
|
+
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
174
292
|
directory_id: ::String?
|
175
293
|
}?
|
176
294
|
},
|
177
295
|
?max_results: ::Integer,
|
178
296
|
?next_token: ::String,
|
179
|
-
product: ::String
|
297
|
+
?product: ::String
|
180
298
|
) -> _ListProductSubscriptionsResponseSuccess
|
181
299
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProductSubscriptionsResponseSuccess
|
182
300
|
|
301
|
+
interface _ListTagsForResourceResponseSuccess
|
302
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
303
|
+
def tags: () -> ::Hash[::String, ::String]
|
304
|
+
end
|
305
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#list_tags_for_resource-instance_method
|
306
|
+
def list_tags_for_resource: (
|
307
|
+
resource_arn: ::String
|
308
|
+
) -> _ListTagsForResourceResponseSuccess
|
309
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
310
|
+
|
183
311
|
interface _ListUserAssociationsResponseSuccess
|
184
312
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListUserAssociationsResponse]
|
185
313
|
def instance_user_summaries: () -> ::Array[Types::InstanceUserSummary]
|
@@ -196,6 +324,19 @@ module Aws
|
|
196
324
|
],
|
197
325
|
identity_provider: {
|
198
326
|
active_directory_identity_provider: {
|
327
|
+
active_directory_settings: {
|
328
|
+
domain_credentials_provider: {
|
329
|
+
secrets_manager_credentials_provider: {
|
330
|
+
secret_id: ::String?
|
331
|
+
}?
|
332
|
+
}?,
|
333
|
+
domain_ipv_4_list: Array[::String]?,
|
334
|
+
domain_name: ::String?,
|
335
|
+
domain_network_settings: {
|
336
|
+
subnets: Array[::String]
|
337
|
+
}?
|
338
|
+
}?,
|
339
|
+
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
199
340
|
directory_id: ::String?
|
200
341
|
}?
|
201
342
|
},
|
@@ -213,6 +354,19 @@ module Aws
|
|
213
354
|
def register_identity_provider: (
|
214
355
|
identity_provider: {
|
215
356
|
active_directory_identity_provider: {
|
357
|
+
active_directory_settings: {
|
358
|
+
domain_credentials_provider: {
|
359
|
+
secrets_manager_credentials_provider: {
|
360
|
+
secret_id: ::String?
|
361
|
+
}?
|
362
|
+
}?,
|
363
|
+
domain_ipv_4_list: Array[::String]?,
|
364
|
+
domain_name: ::String?,
|
365
|
+
domain_network_settings: {
|
366
|
+
subnets: Array[::String]
|
367
|
+
}?
|
368
|
+
}?,
|
369
|
+
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
216
370
|
directory_id: ::String?
|
217
371
|
}?
|
218
372
|
},
|
@@ -220,7 +374,8 @@ module Aws
|
|
220
374
|
?settings: {
|
221
375
|
security_group_id: ::String,
|
222
376
|
subnets: Array[::String]
|
223
|
-
}
|
377
|
+
},
|
378
|
+
?tags: Hash[::String, ::String]
|
224
379
|
) -> _RegisterIdentityProviderResponseSuccess
|
225
380
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterIdentityProviderResponseSuccess
|
226
381
|
|
@@ -233,10 +388,24 @@ module Aws
|
|
233
388
|
?domain: ::String,
|
234
389
|
identity_provider: {
|
235
390
|
active_directory_identity_provider: {
|
391
|
+
active_directory_settings: {
|
392
|
+
domain_credentials_provider: {
|
393
|
+
secrets_manager_credentials_provider: {
|
394
|
+
secret_id: ::String?
|
395
|
+
}?
|
396
|
+
}?,
|
397
|
+
domain_ipv_4_list: Array[::String]?,
|
398
|
+
domain_name: ::String?,
|
399
|
+
domain_network_settings: {
|
400
|
+
subnets: Array[::String]
|
401
|
+
}?
|
402
|
+
}?,
|
403
|
+
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
236
404
|
directory_id: ::String?
|
237
405
|
}?
|
238
406
|
},
|
239
407
|
product: ::String,
|
408
|
+
?tags: Hash[::String, ::String],
|
240
409
|
username: ::String
|
241
410
|
) -> _StartProductSubscriptionResponseSuccess
|
242
411
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartProductSubscriptionResponseSuccess
|
@@ -248,15 +417,49 @@ module Aws
|
|
248
417
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#stop_product_subscription-instance_method
|
249
418
|
def stop_product_subscription: (
|
250
419
|
?domain: ::String,
|
251
|
-
identity_provider: {
|
420
|
+
?identity_provider: {
|
252
421
|
active_directory_identity_provider: {
|
422
|
+
active_directory_settings: {
|
423
|
+
domain_credentials_provider: {
|
424
|
+
secrets_manager_credentials_provider: {
|
425
|
+
secret_id: ::String?
|
426
|
+
}?
|
427
|
+
}?,
|
428
|
+
domain_ipv_4_list: Array[::String]?,
|
429
|
+
domain_name: ::String?,
|
430
|
+
domain_network_settings: {
|
431
|
+
subnets: Array[::String]
|
432
|
+
}?
|
433
|
+
}?,
|
434
|
+
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
253
435
|
directory_id: ::String?
|
254
436
|
}?
|
255
437
|
},
|
256
|
-
product: ::String,
|
257
|
-
|
438
|
+
?product: ::String,
|
439
|
+
?product_user_arn: ::String,
|
440
|
+
?username: ::String
|
258
441
|
) -> _StopProductSubscriptionResponseSuccess
|
259
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopProductSubscriptionResponseSuccess
|
442
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopProductSubscriptionResponseSuccess
|
443
|
+
|
444
|
+
interface _TagResourceResponseSuccess
|
445
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
|
446
|
+
end
|
447
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#tag_resource-instance_method
|
448
|
+
def tag_resource: (
|
449
|
+
resource_arn: ::String,
|
450
|
+
tags: Hash[::String, ::String]
|
451
|
+
) -> _TagResourceResponseSuccess
|
452
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
453
|
+
|
454
|
+
interface _UntagResourceResponseSuccess
|
455
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
|
456
|
+
end
|
457
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#untag_resource-instance_method
|
458
|
+
def untag_resource: (
|
459
|
+
resource_arn: ::String,
|
460
|
+
tag_keys: Array[::String]
|
461
|
+
) -> _UntagResourceResponseSuccess
|
462
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
260
463
|
|
261
464
|
interface _UpdateIdentityProviderSettingsResponseSuccess
|
262
465
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIdentityProviderSettingsResponse]
|
@@ -264,12 +467,26 @@ module Aws
|
|
264
467
|
end
|
265
468
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/LicenseManagerUserSubscriptions/Client.html#update_identity_provider_settings-instance_method
|
266
469
|
def update_identity_provider_settings: (
|
267
|
-
identity_provider: {
|
470
|
+
?identity_provider: {
|
268
471
|
active_directory_identity_provider: {
|
472
|
+
active_directory_settings: {
|
473
|
+
domain_credentials_provider: {
|
474
|
+
secrets_manager_credentials_provider: {
|
475
|
+
secret_id: ::String?
|
476
|
+
}?
|
477
|
+
}?,
|
478
|
+
domain_ipv_4_list: Array[::String]?,
|
479
|
+
domain_name: ::String?,
|
480
|
+
domain_network_settings: {
|
481
|
+
subnets: Array[::String]
|
482
|
+
}?
|
483
|
+
}?,
|
484
|
+
active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")?,
|
269
485
|
directory_id: ::String?
|
270
486
|
}?
|
271
487
|
},
|
272
|
-
|
488
|
+
?identity_provider_arn: ::String,
|
489
|
+
?product: ::String,
|
273
490
|
update_settings: {
|
274
491
|
add_subnets: Array[::String],
|
275
492
|
remove_subnets: Array[::String],
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -14,16 +14,27 @@ module Aws::LicenseManagerUserSubscriptions
|
|
14
14
|
end
|
15
15
|
|
16
16
|
class ActiveDirectoryIdentityProvider
|
17
|
+
attr_accessor active_directory_settings: Types::ActiveDirectorySettings
|
18
|
+
attr_accessor active_directory_type: ("SELF_MANAGED" | "AWS_MANAGED")
|
17
19
|
attr_accessor directory_id: ::String
|
18
20
|
SENSITIVE: []
|
19
21
|
end
|
20
22
|
|
23
|
+
class ActiveDirectorySettings
|
24
|
+
attr_accessor domain_credentials_provider: Types::CredentialsProvider
|
25
|
+
attr_accessor domain_ipv_4_list: ::Array[::String]
|
26
|
+
attr_accessor domain_name: ::String
|
27
|
+
attr_accessor domain_network_settings: Types::DomainNetworkSettings
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
21
31
|
class AssociateUserRequest
|
22
32
|
attr_accessor domain: ::String
|
23
33
|
attr_accessor identity_provider: Types::IdentityProvider
|
24
34
|
attr_accessor instance_id: ::String
|
35
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
25
36
|
attr_accessor username: ::String
|
26
|
-
SENSITIVE: []
|
37
|
+
SENSITIVE: [:tags]
|
27
38
|
end
|
28
39
|
|
29
40
|
class AssociateUserResponse
|
@@ -36,8 +47,44 @@ module Aws::LicenseManagerUserSubscriptions
|
|
36
47
|
SENSITIVE: []
|
37
48
|
end
|
38
49
|
|
50
|
+
class CreateLicenseServerEndpointRequest
|
51
|
+
attr_accessor identity_provider_arn: ::String
|
52
|
+
attr_accessor license_server_settings: Types::LicenseServerSettings
|
53
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
54
|
+
SENSITIVE: [:tags]
|
55
|
+
end
|
56
|
+
|
57
|
+
class CreateLicenseServerEndpointResponse
|
58
|
+
attr_accessor identity_provider_arn: ::String
|
59
|
+
attr_accessor license_server_endpoint_arn: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class CredentialsProvider
|
64
|
+
attr_accessor secrets_manager_credentials_provider: Types::SecretsManagerCredentialsProvider
|
65
|
+
attr_accessor unknown: untyped
|
66
|
+
SENSITIVE: []
|
67
|
+
|
68
|
+
class SecretsManagerCredentialsProvider < CredentialsProvider
|
69
|
+
end
|
70
|
+
class Unknown < CredentialsProvider
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
class DeleteLicenseServerEndpointRequest
|
75
|
+
attr_accessor license_server_endpoint_arn: ::String
|
76
|
+
attr_accessor server_type: ("RDS_SAL")
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class DeleteLicenseServerEndpointResponse
|
81
|
+
attr_accessor license_server_endpoint: Types::LicenseServerEndpoint
|
82
|
+
SENSITIVE: []
|
83
|
+
end
|
84
|
+
|
39
85
|
class DeregisterIdentityProviderRequest
|
40
86
|
attr_accessor identity_provider: Types::IdentityProvider
|
87
|
+
attr_accessor identity_provider_arn: ::String
|
41
88
|
attr_accessor product: ::String
|
42
89
|
SENSITIVE: []
|
43
90
|
end
|
@@ -51,6 +98,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
51
98
|
attr_accessor domain: ::String
|
52
99
|
attr_accessor identity_provider: Types::IdentityProvider
|
53
100
|
attr_accessor instance_id: ::String
|
101
|
+
attr_accessor instance_user_arn: ::String
|
54
102
|
attr_accessor username: ::String
|
55
103
|
SENSITIVE: []
|
56
104
|
end
|
@@ -60,6 +108,11 @@ module Aws::LicenseManagerUserSubscriptions
|
|
60
108
|
SENSITIVE: []
|
61
109
|
end
|
62
110
|
|
111
|
+
class DomainNetworkSettings
|
112
|
+
attr_accessor subnets: ::Array[::String]
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
63
116
|
class Filter
|
64
117
|
attr_accessor attribute: ::String
|
65
118
|
attr_accessor operation: ::String
|
@@ -81,6 +134,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
81
134
|
class IdentityProviderSummary
|
82
135
|
attr_accessor failure_message: ::String
|
83
136
|
attr_accessor identity_provider: Types::IdentityProvider
|
137
|
+
attr_accessor identity_provider_arn: ::String
|
84
138
|
attr_accessor product: ::String
|
85
139
|
attr_accessor settings: Types::Settings
|
86
140
|
attr_accessor status: ::String
|
@@ -102,6 +156,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
102
156
|
attr_accessor domain: ::String
|
103
157
|
attr_accessor identity_provider: Types::IdentityProvider
|
104
158
|
attr_accessor instance_id: ::String
|
159
|
+
attr_accessor instance_user_arn: ::String
|
105
160
|
attr_accessor status: ::String
|
106
161
|
attr_accessor status_message: ::String
|
107
162
|
attr_accessor username: ::String
|
@@ -113,7 +168,34 @@ module Aws::LicenseManagerUserSubscriptions
|
|
113
168
|
SENSITIVE: []
|
114
169
|
end
|
115
170
|
|
171
|
+
class LicenseServer
|
172
|
+
attr_accessor health_status: ("HEALTHY" | "UNHEALTHY" | "NOT_APPLICABLE")
|
173
|
+
attr_accessor ipv_4_address: ::String
|
174
|
+
attr_accessor provisioning_status: ("PROVISIONING" | "PROVISIONING_FAILED" | "PROVISIONED" | "DELETING" | "DELETION_FAILED" | "DELETED")
|
175
|
+
SENSITIVE: []
|
176
|
+
end
|
177
|
+
|
178
|
+
class LicenseServerEndpoint
|
179
|
+
attr_accessor creation_time: ::Time
|
180
|
+
attr_accessor identity_provider_arn: ::String
|
181
|
+
attr_accessor license_server_endpoint_arn: ::String
|
182
|
+
attr_accessor license_server_endpoint_id: ::String
|
183
|
+
attr_accessor license_server_endpoint_provisioning_status: ("PROVISIONING" | "PROVISIONING_FAILED" | "PROVISIONED" | "DELETING" | "DELETION_FAILED" | "DELETED")
|
184
|
+
attr_accessor license_servers: ::Array[Types::LicenseServer]
|
185
|
+
attr_accessor server_endpoint: Types::ServerEndpoint
|
186
|
+
attr_accessor server_type: ("RDS_SAL")
|
187
|
+
attr_accessor status_message: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class LicenseServerSettings
|
192
|
+
attr_accessor server_settings: Types::ServerSettings
|
193
|
+
attr_accessor server_type: ("RDS_SAL")
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
116
197
|
class ListIdentityProvidersRequest
|
198
|
+
attr_accessor filters: ::Array[Types::Filter]
|
117
199
|
attr_accessor max_results: ::Integer
|
118
200
|
attr_accessor next_token: ::String
|
119
201
|
SENSITIVE: []
|
@@ -138,6 +220,19 @@ module Aws::LicenseManagerUserSubscriptions
|
|
138
220
|
SENSITIVE: []
|
139
221
|
end
|
140
222
|
|
223
|
+
class ListLicenseServerEndpointsRequest
|
224
|
+
attr_accessor filters: ::Array[Types::Filter]
|
225
|
+
attr_accessor max_results: ::Integer
|
226
|
+
attr_accessor next_token: ::String
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class ListLicenseServerEndpointsResponse
|
231
|
+
attr_accessor license_server_endpoints: ::Array[Types::LicenseServerEndpoint]
|
232
|
+
attr_accessor next_token: ::String
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
141
236
|
class ListProductSubscriptionsRequest
|
142
237
|
attr_accessor filters: ::Array[Types::Filter]
|
143
238
|
attr_accessor identity_provider: Types::IdentityProvider
|
@@ -153,6 +248,16 @@ module Aws::LicenseManagerUserSubscriptions
|
|
153
248
|
SENSITIVE: []
|
154
249
|
end
|
155
250
|
|
251
|
+
class ListTagsForResourceRequest
|
252
|
+
attr_accessor resource_arn: ::String
|
253
|
+
SENSITIVE: []
|
254
|
+
end
|
255
|
+
|
256
|
+
class ListTagsForResourceResponse
|
257
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
258
|
+
SENSITIVE: [:tags]
|
259
|
+
end
|
260
|
+
|
156
261
|
class ListUserAssociationsRequest
|
157
262
|
attr_accessor filters: ::Array[Types::Filter]
|
158
263
|
attr_accessor identity_provider: Types::IdentityProvider
|
@@ -172,6 +277,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
172
277
|
attr_accessor domain: ::String
|
173
278
|
attr_accessor identity_provider: Types::IdentityProvider
|
174
279
|
attr_accessor product: ::String
|
280
|
+
attr_accessor product_user_arn: ::String
|
175
281
|
attr_accessor status: ::String
|
176
282
|
attr_accessor status_message: ::String
|
177
283
|
attr_accessor subscription_end_date: ::String
|
@@ -180,11 +286,17 @@ module Aws::LicenseManagerUserSubscriptions
|
|
180
286
|
SENSITIVE: []
|
181
287
|
end
|
182
288
|
|
289
|
+
class RdsSalSettings
|
290
|
+
attr_accessor rds_sal_credentials_provider: Types::CredentialsProvider
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
183
294
|
class RegisterIdentityProviderRequest
|
184
295
|
attr_accessor identity_provider: Types::IdentityProvider
|
185
296
|
attr_accessor product: ::String
|
186
297
|
attr_accessor settings: Types::Settings
|
187
|
-
|
298
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
299
|
+
SENSITIVE: [:tags]
|
188
300
|
end
|
189
301
|
|
190
302
|
class RegisterIdentityProviderResponse
|
@@ -197,6 +309,27 @@ module Aws::LicenseManagerUserSubscriptions
|
|
197
309
|
SENSITIVE: []
|
198
310
|
end
|
199
311
|
|
312
|
+
class SecretsManagerCredentialsProvider
|
313
|
+
attr_accessor secret_id: ::String
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
317
|
+
class ServerEndpoint
|
318
|
+
attr_accessor endpoint: ::String
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class ServerSettings
|
323
|
+
attr_accessor rds_sal_settings: Types::RdsSalSettings
|
324
|
+
attr_accessor unknown: untyped
|
325
|
+
SENSITIVE: []
|
326
|
+
|
327
|
+
class RdsSalSettings < ServerSettings
|
328
|
+
end
|
329
|
+
class Unknown < ServerSettings
|
330
|
+
end
|
331
|
+
end
|
332
|
+
|
200
333
|
class ServiceQuotaExceededException
|
201
334
|
attr_accessor message: ::String
|
202
335
|
SENSITIVE: []
|
@@ -212,8 +345,9 @@ module Aws::LicenseManagerUserSubscriptions
|
|
212
345
|
attr_accessor domain: ::String
|
213
346
|
attr_accessor identity_provider: Types::IdentityProvider
|
214
347
|
attr_accessor product: ::String
|
348
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
215
349
|
attr_accessor username: ::String
|
216
|
-
SENSITIVE: []
|
350
|
+
SENSITIVE: [:tags]
|
217
351
|
end
|
218
352
|
|
219
353
|
class StartProductSubscriptionResponse
|
@@ -225,6 +359,7 @@ module Aws::LicenseManagerUserSubscriptions
|
|
225
359
|
attr_accessor domain: ::String
|
226
360
|
attr_accessor identity_provider: Types::IdentityProvider
|
227
361
|
attr_accessor product: ::String
|
362
|
+
attr_accessor product_user_arn: ::String
|
228
363
|
attr_accessor username: ::String
|
229
364
|
SENSITIVE: []
|
230
365
|
end
|
@@ -234,13 +369,32 @@ module Aws::LicenseManagerUserSubscriptions
|
|
234
369
|
SENSITIVE: []
|
235
370
|
end
|
236
371
|
|
372
|
+
class TagResourceRequest
|
373
|
+
attr_accessor resource_arn: ::String
|
374
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
375
|
+
SENSITIVE: [:tags]
|
376
|
+
end
|
377
|
+
|
378
|
+
class TagResourceResponse < Aws::EmptyStructure
|
379
|
+
end
|
380
|
+
|
237
381
|
class ThrottlingException
|
238
382
|
attr_accessor message: ::String
|
239
383
|
SENSITIVE: []
|
240
384
|
end
|
241
385
|
|
386
|
+
class UntagResourceRequest
|
387
|
+
attr_accessor resource_arn: ::String
|
388
|
+
attr_accessor tag_keys: ::Array[::String]
|
389
|
+
SENSITIVE: [:tag_keys]
|
390
|
+
end
|
391
|
+
|
392
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
393
|
+
end
|
394
|
+
|
242
395
|
class UpdateIdentityProviderSettingsRequest
|
243
396
|
attr_accessor identity_provider: Types::IdentityProvider
|
397
|
+
attr_accessor identity_provider_arn: ::String
|
244
398
|
attr_accessor product: ::String
|
245
399
|
attr_accessor update_settings: Types::UpdateSettings
|
246
400
|
SENSITIVE: []
|