aws-sdk-licensemanager 1.12.0 → 1.17.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 +5 -5
- data/lib/aws-sdk-licensemanager.rb +3 -1
- data/lib/aws-sdk-licensemanager/client.rb +47 -40
- data/lib/aws-sdk-licensemanager/client_api.rb +2 -0
- data/lib/aws-sdk-licensemanager/errors.rb +2 -0
- data/lib/aws-sdk-licensemanager/resource.rb +3 -7
- data/lib/aws-sdk-licensemanager/types.rb +85 -12
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: a2258afe9962fd99af88441d9607c9c0885c0ae34aad9c318f7501ffb36d1412
|
4
|
+
data.tar.gz: 7ff893bc3c992b74c1862108ccb254d87f83a47241854ee619e5122949a2c8e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe34b12722b6fd94732fdc6749db1feddaaf6270a9744f6dcca425d4b213d6b257df8884dd15b50c2f90c3775381f6d7e4fdce844863d9cf675929f2879b21b1
|
7
|
+
data.tar.gz: 48d8f523bf6b0668ad3e1f734811d20db7c7ed4889a54bb42b3b609576dcd94a739f752248385f5408846e6a48ebab7f6ea991f424ec678d4043a2c58fba45ff
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-licensemanager/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::LicenseManager
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.17.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:licensemanager)
|
|
32
35
|
module Aws::LicenseManager
|
33
36
|
# An API client for LicenseManager. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::LicenseManager::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::LicenseManager
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::LicenseManager
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::LicenseManager
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::LicenseManager
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::LicenseManager
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -275,8 +283,7 @@ module Aws::LicenseManager
|
|
275
283
|
#
|
276
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
285
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
280
287
|
#
|
281
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
289
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +295,7 @@ module Aws::LicenseManager
|
|
288
295
|
# request body. This option has no effect unless the request has
|
289
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
297
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
298
|
+
# request on the session.
|
292
299
|
#
|
293
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -321,9 +328,9 @@ module Aws::LicenseManager
|
|
321
328
|
# agreement that can be consumed and enforced by License Manager.
|
322
329
|
# Components include specifications for the license type (licensing by
|
323
330
|
# instance, socket, CPU, or vCPU), allowed tenancy (shared tenancy,
|
324
|
-
# Dedicated Instance, Dedicated Host, or all of these),
|
325
|
-
# (how long a
|
326
|
-
# licenses purchased and used.
|
331
|
+
# Dedicated Instance, Dedicated Host, or all of these), license affinity
|
332
|
+
# to host (how long a license must be associated with a host), and the
|
333
|
+
# number of licenses purchased and used.
|
327
334
|
#
|
328
335
|
# @option params [required, String] :name
|
329
336
|
# Name of the license configuration.
|
@@ -343,21 +350,27 @@ module Aws::LicenseManager
|
|
343
350
|
#
|
344
351
|
# @option params [Array<String>] :license_rules
|
345
352
|
# License rules. The syntax is #name=value (for example,
|
346
|
-
# #allowedTenancy=EC2-DedicatedHost).
|
353
|
+
# #allowedTenancy=EC2-DedicatedHost). The available rules vary by
|
354
|
+
# dimension, as follows.
|
347
355
|
#
|
348
|
-
# * `Cores` dimension: `allowedTenancy` \| `
|
349
|
-
# `minimumCores`
|
356
|
+
# * `Cores` dimension: `allowedTenancy` \| `licenseAffinityToHost` \|
|
357
|
+
# `maximumCores` \| `minimumCores`
|
350
358
|
#
|
351
359
|
# * `Instances` dimension: `allowedTenancy` \| `maximumCores` \|
|
352
360
|
# `minimumCores` \| `maximumSockets` \| `minimumSockets` \|
|
353
361
|
# `maximumVcpus` \| `minimumVcpus`
|
354
362
|
#
|
355
|
-
# * `Sockets` dimension: `allowedTenancy` \| `
|
356
|
-
# `minimumSockets`
|
363
|
+
# * `Sockets` dimension: `allowedTenancy` \| `licenseAffinityToHost` \|
|
364
|
+
# `maximumSockets` \| `minimumSockets`
|
357
365
|
#
|
358
366
|
# * `vCPUs` dimension: `allowedTenancy` \| `honorVcpuOptimization` \|
|
359
367
|
# `maximumVcpus` \| `minimumVcpus`
|
360
368
|
#
|
369
|
+
# The unit for `licenseAffinityToHost` is days and the range is 1 to
|
370
|
+
# 180. The possible values for `allowedTenancy` are `EC2-Default`,
|
371
|
+
# `EC2-DedicatedHost`, and `EC2-DedicatedInstance`. The possible values
|
372
|
+
# for `honorVcpuOptimization` are `True` and `False`.
|
373
|
+
#
|
361
374
|
# @option params [Array<Types::Tag>] :tags
|
362
375
|
# Tags to add to the license configuration.
|
363
376
|
#
|
@@ -642,8 +655,9 @@ module Aws::LicenseManager
|
|
642
655
|
# Filters to scope the results. The following filters and logical
|
643
656
|
# operators are supported:
|
644
657
|
#
|
645
|
-
# * `licenseCountingType` - The dimension on which licenses are counted
|
646
|
-
#
|
658
|
+
# * `licenseCountingType` - The dimension on which licenses are counted.
|
659
|
+
# Possible values are `vCPU` \| `Instance` \| `Core` \| `Socket`.
|
660
|
+
# Logical operators are `EQUALS` \| `NOT_EQUALS`.
|
647
661
|
#
|
648
662
|
# * `enforceLicenseCount` - A Boolean value that indicates whether hard
|
649
663
|
# license enforcement is used. Logical operators are `EQUALS` \|
|
@@ -976,14 +990,6 @@ module Aws::LicenseManager
|
|
976
990
|
|
977
991
|
# Modifies the attributes of an existing license configuration.
|
978
992
|
#
|
979
|
-
# A license configuration is an abstraction of a customer license
|
980
|
-
# agreement that can be consumed and enforced by License Manager.
|
981
|
-
# Components include specifications for the license type (licensing by
|
982
|
-
# instance, socket, CPU, or vCPU), allowed tenancy (shared tenancy,
|
983
|
-
# Dedicated Instance, Dedicated Host, or all of these), host affinity
|
984
|
-
# (how long a VM must be associated with a host), and the number of
|
985
|
-
# licenses purchased and used.
|
986
|
-
#
|
987
993
|
# @option params [required, String] :license_configuration_arn
|
988
994
|
# Amazon Resource Name (ARN) of the license configuration.
|
989
995
|
#
|
@@ -991,7 +997,8 @@ module Aws::LicenseManager
|
|
991
997
|
# New status of the license configuration.
|
992
998
|
#
|
993
999
|
# @option params [Array<String>] :license_rules
|
994
|
-
# New license
|
1000
|
+
# New license rule. The only rule that you can add after you create a
|
1001
|
+
# license configuration is licenseAffinityToHost.
|
995
1002
|
#
|
996
1003
|
# @option params [Integer] :license_count
|
997
1004
|
# New number of licenses managed by the license configuration.
|
@@ -1139,7 +1146,7 @@ module Aws::LicenseManager
|
|
1139
1146
|
params: params,
|
1140
1147
|
config: config)
|
1141
1148
|
context[:gem_name] = 'aws-sdk-licensemanager'
|
1142
|
-
context[:gem_version] = '1.
|
1149
|
+
context[:gem_version] = '1.17.0'
|
1143
1150
|
Seahorse::Client::Request.new(handlers, context)
|
1144
1151
|
end
|
1145
1152
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::LicenseManager
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::LicenseManager::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::LicenseManager::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::LicenseManager::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -17,6 +19,7 @@ module Aws::LicenseManager
|
|
17
19
|
#
|
18
20
|
class AccessDeniedException < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -30,6 +33,7 @@ module Aws::LicenseManager
|
|
30
33
|
#
|
31
34
|
class AuthorizationException < Struct.new(
|
32
35
|
:message)
|
36
|
+
SENSITIVE = []
|
33
37
|
include Aws::Structure
|
34
38
|
end
|
35
39
|
|
@@ -43,6 +47,7 @@ module Aws::LicenseManager
|
|
43
47
|
#
|
44
48
|
class AutomatedDiscoveryInformation < Struct.new(
|
45
49
|
:last_run_time)
|
50
|
+
SENSITIVE = []
|
46
51
|
include Aws::Structure
|
47
52
|
end
|
48
53
|
|
@@ -61,6 +66,7 @@ module Aws::LicenseManager
|
|
61
66
|
class ConsumedLicenseSummary < Struct.new(
|
62
67
|
:resource_type,
|
63
68
|
:consumed_licenses)
|
69
|
+
SENSITIVE = []
|
64
70
|
include Aws::Structure
|
65
71
|
end
|
66
72
|
|
@@ -117,21 +123,26 @@ module Aws::LicenseManager
|
|
117
123
|
#
|
118
124
|
# @!attribute [rw] license_rules
|
119
125
|
# License rules. The syntax is #name=value (for example,
|
120
|
-
# #allowedTenancy=EC2-DedicatedHost).
|
121
|
-
# dimension.
|
126
|
+
# #allowedTenancy=EC2-DedicatedHost). The available rules vary by
|
127
|
+
# dimension, as follows.
|
122
128
|
#
|
123
|
-
# * `Cores` dimension: `allowedTenancy` \| `
|
124
|
-
# `minimumCores`
|
129
|
+
# * `Cores` dimension: `allowedTenancy` \| `licenseAffinityToHost` \|
|
130
|
+
# `maximumCores` \| `minimumCores`
|
125
131
|
#
|
126
132
|
# * `Instances` dimension: `allowedTenancy` \| `maximumCores` \|
|
127
133
|
# `minimumCores` \| `maximumSockets` \| `minimumSockets` \|
|
128
134
|
# `maximumVcpus` \| `minimumVcpus`
|
129
135
|
#
|
130
|
-
# * `Sockets` dimension: `allowedTenancy` \| `
|
131
|
-
# `minimumSockets`
|
136
|
+
# * `Sockets` dimension: `allowedTenancy` \| `licenseAffinityToHost`
|
137
|
+
# \| `maximumSockets` \| `minimumSockets`
|
132
138
|
#
|
133
139
|
# * `vCPUs` dimension: `allowedTenancy` \| `honorVcpuOptimization` \|
|
134
140
|
# `maximumVcpus` \| `minimumVcpus`
|
141
|
+
#
|
142
|
+
# The unit for `licenseAffinityToHost` is days and the range is 1 to
|
143
|
+
# 180. The possible values for `allowedTenancy` are `EC2-Default`,
|
144
|
+
# `EC2-DedicatedHost`, and `EC2-DedicatedInstance`. The possible
|
145
|
+
# values for `honorVcpuOptimization` are `True` and `False`.
|
135
146
|
# @return [Array<String>]
|
136
147
|
#
|
137
148
|
# @!attribute [rw] tags
|
@@ -153,6 +164,7 @@ module Aws::LicenseManager
|
|
153
164
|
:license_rules,
|
154
165
|
:tags,
|
155
166
|
:product_information_list)
|
167
|
+
SENSITIVE = []
|
156
168
|
include Aws::Structure
|
157
169
|
end
|
158
170
|
|
@@ -164,6 +176,7 @@ module Aws::LicenseManager
|
|
164
176
|
#
|
165
177
|
class CreateLicenseConfigurationResponse < Struct.new(
|
166
178
|
:license_configuration_arn)
|
179
|
+
SENSITIVE = []
|
167
180
|
include Aws::Structure
|
168
181
|
end
|
169
182
|
|
@@ -182,6 +195,7 @@ module Aws::LicenseManager
|
|
182
195
|
#
|
183
196
|
class DeleteLicenseConfigurationRequest < Struct.new(
|
184
197
|
:license_configuration_arn)
|
198
|
+
SENSITIVE = []
|
185
199
|
include Aws::Structure
|
186
200
|
end
|
187
201
|
|
@@ -198,6 +212,7 @@ module Aws::LicenseManager
|
|
198
212
|
#
|
199
213
|
class FailedDependencyException < Struct.new(
|
200
214
|
:message)
|
215
|
+
SENSITIVE = []
|
201
216
|
include Aws::Structure
|
202
217
|
end
|
203
218
|
|
@@ -226,6 +241,7 @@ module Aws::LicenseManager
|
|
226
241
|
class Filter < Struct.new(
|
227
242
|
:name,
|
228
243
|
:values)
|
244
|
+
SENSITIVE = []
|
229
245
|
include Aws::Structure
|
230
246
|
end
|
231
247
|
|
@@ -238,6 +254,7 @@ module Aws::LicenseManager
|
|
238
254
|
#
|
239
255
|
class FilterLimitExceededException < Struct.new(
|
240
256
|
:message)
|
257
|
+
SENSITIVE = []
|
241
258
|
include Aws::Structure
|
242
259
|
end
|
243
260
|
|
@@ -256,6 +273,7 @@ module Aws::LicenseManager
|
|
256
273
|
#
|
257
274
|
class GetLicenseConfigurationRequest < Struct.new(
|
258
275
|
:license_configuration_arn)
|
276
|
+
SENSITIVE = []
|
259
277
|
include Aws::Structure
|
260
278
|
end
|
261
279
|
|
@@ -342,6 +360,7 @@ module Aws::LicenseManager
|
|
342
360
|
:tags,
|
343
361
|
:product_information_list,
|
344
362
|
:automated_discovery_information)
|
363
|
+
SENSITIVE = []
|
345
364
|
include Aws::Structure
|
346
365
|
end
|
347
366
|
|
@@ -383,6 +402,7 @@ module Aws::LicenseManager
|
|
383
402
|
:organization_configuration,
|
384
403
|
:enable_cross_accounts_discovery,
|
385
404
|
:license_manager_resource_share_arn)
|
405
|
+
SENSITIVE = []
|
386
406
|
include Aws::Structure
|
387
407
|
end
|
388
408
|
|
@@ -395,6 +415,7 @@ module Aws::LicenseManager
|
|
395
415
|
#
|
396
416
|
class InvalidParameterValueException < Struct.new(
|
397
417
|
:message)
|
418
|
+
SENSITIVE = []
|
398
419
|
include Aws::Structure
|
399
420
|
end
|
400
421
|
|
@@ -411,6 +432,7 @@ module Aws::LicenseManager
|
|
411
432
|
#
|
412
433
|
class InvalidResourceStateException < Struct.new(
|
413
434
|
:message)
|
435
|
+
SENSITIVE = []
|
414
436
|
include Aws::Structure
|
415
437
|
end
|
416
438
|
|
@@ -443,6 +465,7 @@ module Aws::LicenseManager
|
|
443
465
|
:name,
|
444
466
|
:condition,
|
445
467
|
:value)
|
468
|
+
SENSITIVE = []
|
446
469
|
include Aws::Structure
|
447
470
|
end
|
448
471
|
|
@@ -532,6 +555,7 @@ module Aws::LicenseManager
|
|
532
555
|
:managed_resource_summary_list,
|
533
556
|
:product_information_list,
|
534
557
|
:automated_discovery_information)
|
558
|
+
SENSITIVE = []
|
535
559
|
include Aws::Structure
|
536
560
|
end
|
537
561
|
|
@@ -561,6 +585,7 @@ module Aws::LicenseManager
|
|
561
585
|
:resource_type,
|
562
586
|
:resource_owner_id,
|
563
587
|
:association_time)
|
588
|
+
SENSITIVE = []
|
564
589
|
include Aws::Structure
|
565
590
|
end
|
566
591
|
|
@@ -601,6 +626,7 @@ module Aws::LicenseManager
|
|
601
626
|
:resource_owner_id,
|
602
627
|
:association_time,
|
603
628
|
:consumed_licenses)
|
629
|
+
SENSITIVE = []
|
604
630
|
include Aws::Structure
|
605
631
|
end
|
606
632
|
|
@@ -649,6 +675,7 @@ module Aws::LicenseManager
|
|
649
675
|
:resource_owner_id,
|
650
676
|
:operation_requested_by,
|
651
677
|
:metadata_list)
|
678
|
+
SENSITIVE = []
|
652
679
|
include Aws::Structure
|
653
680
|
end
|
654
681
|
|
@@ -669,6 +696,7 @@ module Aws::LicenseManager
|
|
669
696
|
#
|
670
697
|
class LicenseSpecification < Struct.new(
|
671
698
|
:license_configuration_arn)
|
699
|
+
SENSITIVE = []
|
672
700
|
include Aws::Structure
|
673
701
|
end
|
674
702
|
|
@@ -682,6 +710,7 @@ module Aws::LicenseManager
|
|
682
710
|
#
|
683
711
|
class LicenseUsageException < Struct.new(
|
684
712
|
:message)
|
713
|
+
SENSITIVE = []
|
685
714
|
include Aws::Structure
|
686
715
|
end
|
687
716
|
|
@@ -712,6 +741,7 @@ module Aws::LicenseManager
|
|
712
741
|
:license_configuration_arn,
|
713
742
|
:max_results,
|
714
743
|
:next_token)
|
744
|
+
SENSITIVE = []
|
715
745
|
include Aws::Structure
|
716
746
|
end
|
717
747
|
|
@@ -728,6 +758,7 @@ module Aws::LicenseManager
|
|
728
758
|
class ListAssociationsForLicenseConfigurationResponse < Struct.new(
|
729
759
|
:license_configuration_associations,
|
730
760
|
:next_token)
|
761
|
+
SENSITIVE = []
|
731
762
|
include Aws::Structure
|
732
763
|
end
|
733
764
|
|
@@ -758,6 +789,7 @@ module Aws::LicenseManager
|
|
758
789
|
:license_configuration_arn,
|
759
790
|
:max_results,
|
760
791
|
:next_token)
|
792
|
+
SENSITIVE = []
|
761
793
|
include Aws::Structure
|
762
794
|
end
|
763
795
|
|
@@ -774,6 +806,7 @@ module Aws::LicenseManager
|
|
774
806
|
class ListFailuresForLicenseConfigurationOperationsResponse < Struct.new(
|
775
807
|
:license_operation_failure_list,
|
776
808
|
:next_token)
|
809
|
+
SENSITIVE = []
|
777
810
|
include Aws::Structure
|
778
811
|
end
|
779
812
|
|
@@ -809,7 +842,8 @@ module Aws::LicenseManager
|
|
809
842
|
# operators are supported:
|
810
843
|
#
|
811
844
|
# * `licenseCountingType` - The dimension on which licenses are
|
812
|
-
# counted
|
845
|
+
# counted. Possible values are `vCPU` \| `Instance` \| `Core` \|
|
846
|
+
# `Socket`. Logical operators are `EQUALS` \| `NOT_EQUALS`.
|
813
847
|
#
|
814
848
|
# * `enforceLicenseCount` - A Boolean value that indicates whether
|
815
849
|
# hard license enforcement is used. Logical operators are `EQUALS`
|
@@ -827,6 +861,7 @@ module Aws::LicenseManager
|
|
827
861
|
:max_results,
|
828
862
|
:next_token,
|
829
863
|
:filters)
|
864
|
+
SENSITIVE = []
|
830
865
|
include Aws::Structure
|
831
866
|
end
|
832
867
|
|
@@ -843,6 +878,7 @@ module Aws::LicenseManager
|
|
843
878
|
class ListLicenseConfigurationsResponse < Struct.new(
|
844
879
|
:license_configurations,
|
845
880
|
:next_token)
|
881
|
+
SENSITIVE = []
|
846
882
|
include Aws::Structure
|
847
883
|
end
|
848
884
|
|
@@ -874,6 +910,7 @@ module Aws::LicenseManager
|
|
874
910
|
:resource_arn,
|
875
911
|
:max_results,
|
876
912
|
:next_token)
|
913
|
+
SENSITIVE = []
|
877
914
|
include Aws::Structure
|
878
915
|
end
|
879
916
|
|
@@ -890,6 +927,7 @@ module Aws::LicenseManager
|
|
890
927
|
class ListLicenseSpecificationsForResourceResponse < Struct.new(
|
891
928
|
:license_specifications,
|
892
929
|
:next_token)
|
930
|
+
SENSITIVE = []
|
893
931
|
include Aws::Structure
|
894
932
|
end
|
895
933
|
|
@@ -944,6 +982,7 @@ module Aws::LicenseManager
|
|
944
982
|
:max_results,
|
945
983
|
:next_token,
|
946
984
|
:filters)
|
985
|
+
SENSITIVE = []
|
947
986
|
include Aws::Structure
|
948
987
|
end
|
949
988
|
|
@@ -960,6 +999,7 @@ module Aws::LicenseManager
|
|
960
999
|
class ListResourceInventoryResponse < Struct.new(
|
961
1000
|
:resource_inventory_list,
|
962
1001
|
:next_token)
|
1002
|
+
SENSITIVE = []
|
963
1003
|
include Aws::Structure
|
964
1004
|
end
|
965
1005
|
|
@@ -978,6 +1018,7 @@ module Aws::LicenseManager
|
|
978
1018
|
#
|
979
1019
|
class ListTagsForResourceRequest < Struct.new(
|
980
1020
|
:resource_arn)
|
1021
|
+
SENSITIVE = []
|
981
1022
|
include Aws::Structure
|
982
1023
|
end
|
983
1024
|
|
@@ -989,6 +1030,7 @@ module Aws::LicenseManager
|
|
989
1030
|
#
|
990
1031
|
class ListTagsForResourceResponse < Struct.new(
|
991
1032
|
:tags)
|
1033
|
+
SENSITIVE = []
|
992
1034
|
include Aws::Structure
|
993
1035
|
end
|
994
1036
|
|
@@ -1041,6 +1083,7 @@ module Aws::LicenseManager
|
|
1041
1083
|
:max_results,
|
1042
1084
|
:next_token,
|
1043
1085
|
:filters)
|
1086
|
+
SENSITIVE = []
|
1044
1087
|
include Aws::Structure
|
1045
1088
|
end
|
1046
1089
|
|
@@ -1057,6 +1100,7 @@ module Aws::LicenseManager
|
|
1057
1100
|
class ListUsageForLicenseConfigurationResponse < Struct.new(
|
1058
1101
|
:license_configuration_usage_list,
|
1059
1102
|
:next_token)
|
1103
|
+
SENSITIVE = []
|
1060
1104
|
include Aws::Structure
|
1061
1105
|
end
|
1062
1106
|
|
@@ -1075,6 +1119,7 @@ module Aws::LicenseManager
|
|
1075
1119
|
class ManagedResourceSummary < Struct.new(
|
1076
1120
|
:resource_type,
|
1077
1121
|
:association_count)
|
1122
|
+
SENSITIVE = []
|
1078
1123
|
include Aws::Structure
|
1079
1124
|
end
|
1080
1125
|
|
@@ -1093,6 +1138,7 @@ module Aws::LicenseManager
|
|
1093
1138
|
class Metadata < Struct.new(
|
1094
1139
|
:name,
|
1095
1140
|
:value)
|
1141
|
+
SENSITIVE = []
|
1096
1142
|
include Aws::Structure
|
1097
1143
|
end
|
1098
1144
|
|
@@ -1113,6 +1159,7 @@ module Aws::LicenseManager
|
|
1113
1159
|
#
|
1114
1160
|
class OrganizationConfiguration < Struct.new(
|
1115
1161
|
:enable_integration)
|
1162
|
+
SENSITIVE = []
|
1116
1163
|
include Aws::Structure
|
1117
1164
|
end
|
1118
1165
|
|
@@ -1133,12 +1180,14 @@ module Aws::LicenseManager
|
|
1133
1180
|
# }
|
1134
1181
|
#
|
1135
1182
|
# @!attribute [rw] resource_type
|
1136
|
-
# Resource type. The
|
1183
|
+
# Resource type. The possible values are `SSM_MANAGED` \| `RDS`.
|
1137
1184
|
# @return [String]
|
1138
1185
|
#
|
1139
1186
|
# @!attribute [rw] product_information_filter_list
|
1140
|
-
# Product information filters.
|
1141
|
-
#
|
1187
|
+
# Product information filters.
|
1188
|
+
#
|
1189
|
+
# The following filters and logical operators are supported when the
|
1190
|
+
# resource type is `SSM_MANAGED`\:
|
1142
1191
|
#
|
1143
1192
|
# * `Application Name` - The name of the application. Logical operator
|
1144
1193
|
# is `EQUALS`.
|
@@ -1155,9 +1204,20 @@ module Aws::LicenseManager
|
|
1155
1204
|
# * `Platform Type` - The platform type. Logical operator is `EQUALS`.
|
1156
1205
|
#
|
1157
1206
|
# * `License Included` - The type of license included. Logical
|
1158
|
-
# operators are `EQUALS` and `NOT_EQUALS`. Possible values are
|
1207
|
+
# operators are `EQUALS` and `NOT_EQUALS`. Possible values are:
|
1159
1208
|
# `sql-server-enterprise` \| `sql-server-standard` \|
|
1160
1209
|
# `sql-server-web` \| `windows-server-datacenter`.
|
1210
|
+
#
|
1211
|
+
# The following filters and logical operators are supported when the
|
1212
|
+
# resource type is `RDS`\:
|
1213
|
+
#
|
1214
|
+
# * `Engine Edition` - The edition of the database engine. Logical
|
1215
|
+
# operator is `EQUALS`. Possible values are: `oracle-ee` \|
|
1216
|
+
# `oracle-se` \| `oracle-se1` \| `oracle-se2`.
|
1217
|
+
#
|
1218
|
+
# * `License Pack` - The license pack. Logical operator is `EQUALS`.
|
1219
|
+
# Possible values are: `data guard` \| `diagnostic pack sqlt` \|
|
1220
|
+
# `tuning pack sqlt` \| `ols` \| `olap`.
|
1161
1221
|
# @return [Array<Types::ProductInformationFilter>]
|
1162
1222
|
#
|
1163
1223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/license-manager-2018-08-01/ProductInformation AWS API Documentation
|
@@ -1165,6 +1225,7 @@ module Aws::LicenseManager
|
|
1165
1225
|
class ProductInformation < Struct.new(
|
1166
1226
|
:resource_type,
|
1167
1227
|
:product_information_filter_list)
|
1228
|
+
SENSITIVE = []
|
1168
1229
|
include Aws::Structure
|
1169
1230
|
end
|
1170
1231
|
|
@@ -1197,6 +1258,7 @@ module Aws::LicenseManager
|
|
1197
1258
|
:product_information_filter_name,
|
1198
1259
|
:product_information_filter_value,
|
1199
1260
|
:product_information_filter_comparator)
|
1261
|
+
SENSITIVE = []
|
1200
1262
|
include Aws::Structure
|
1201
1263
|
end
|
1202
1264
|
|
@@ -1209,6 +1271,7 @@ module Aws::LicenseManager
|
|
1209
1271
|
#
|
1210
1272
|
class RateLimitExceededException < Struct.new(
|
1211
1273
|
:message)
|
1274
|
+
SENSITIVE = []
|
1212
1275
|
include Aws::Structure
|
1213
1276
|
end
|
1214
1277
|
|
@@ -1247,6 +1310,7 @@ module Aws::LicenseManager
|
|
1247
1310
|
:platform,
|
1248
1311
|
:platform_version,
|
1249
1312
|
:resource_owning_account_id)
|
1313
|
+
SENSITIVE = []
|
1250
1314
|
include Aws::Structure
|
1251
1315
|
end
|
1252
1316
|
|
@@ -1259,6 +1323,7 @@ module Aws::LicenseManager
|
|
1259
1323
|
#
|
1260
1324
|
class ResourceLimitExceededException < Struct.new(
|
1261
1325
|
:message)
|
1326
|
+
SENSITIVE = []
|
1262
1327
|
include Aws::Structure
|
1263
1328
|
end
|
1264
1329
|
|
@@ -1271,6 +1336,7 @@ module Aws::LicenseManager
|
|
1271
1336
|
#
|
1272
1337
|
class ServerInternalException < Struct.new(
|
1273
1338
|
:message)
|
1339
|
+
SENSITIVE = []
|
1274
1340
|
include Aws::Structure
|
1275
1341
|
end
|
1276
1342
|
|
@@ -1297,6 +1363,7 @@ module Aws::LicenseManager
|
|
1297
1363
|
class Tag < Struct.new(
|
1298
1364
|
:key,
|
1299
1365
|
:value)
|
1366
|
+
SENSITIVE = []
|
1300
1367
|
include Aws::Structure
|
1301
1368
|
end
|
1302
1369
|
|
@@ -1326,6 +1393,7 @@ module Aws::LicenseManager
|
|
1326
1393
|
class TagResourceRequest < Struct.new(
|
1327
1394
|
:resource_arn,
|
1328
1395
|
:tags)
|
1396
|
+
SENSITIVE = []
|
1329
1397
|
include Aws::Structure
|
1330
1398
|
end
|
1331
1399
|
|
@@ -1354,6 +1422,7 @@ module Aws::LicenseManager
|
|
1354
1422
|
class UntagResourceRequest < Struct.new(
|
1355
1423
|
:resource_arn,
|
1356
1424
|
:tag_keys)
|
1425
|
+
SENSITIVE = []
|
1357
1426
|
include Aws::Structure
|
1358
1427
|
end
|
1359
1428
|
|
@@ -1395,7 +1464,8 @@ module Aws::LicenseManager
|
|
1395
1464
|
# @return [String]
|
1396
1465
|
#
|
1397
1466
|
# @!attribute [rw] license_rules
|
1398
|
-
# New license
|
1467
|
+
# New license rule. The only rule that you can add after you create a
|
1468
|
+
# license configuration is licenseAffinityToHost.
|
1399
1469
|
# @return [Array<String>]
|
1400
1470
|
#
|
1401
1471
|
# @!attribute [rw] license_count
|
@@ -1429,6 +1499,7 @@ module Aws::LicenseManager
|
|
1429
1499
|
:name,
|
1430
1500
|
:description,
|
1431
1501
|
:product_information_list)
|
1502
|
+
SENSITIVE = []
|
1432
1503
|
include Aws::Structure
|
1433
1504
|
end
|
1434
1505
|
|
@@ -1471,6 +1542,7 @@ module Aws::LicenseManager
|
|
1471
1542
|
:resource_arn,
|
1472
1543
|
:add_license_specifications,
|
1473
1544
|
:remove_license_specifications)
|
1545
|
+
SENSITIVE = []
|
1474
1546
|
include Aws::Structure
|
1475
1547
|
end
|
1476
1548
|
|
@@ -1516,6 +1588,7 @@ module Aws::LicenseManager
|
|
1516
1588
|
:sns_topic_arn,
|
1517
1589
|
:organization_configuration,
|
1518
1590
|
:enable_cross_accounts_discovery)
|
1591
|
+
SENSITIVE = []
|
1519
1592
|
include Aws::Structure
|
1520
1593
|
end
|
1521
1594
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-licensemanager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.17.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-14 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - AWS License Manager
|