aws-sdk-licensemanager 1.13.0 → 1.18.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/lib/aws-sdk-licensemanager.rb +4 -2
- data/lib/aws-sdk-licensemanager/client.rb +48 -29
- 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 +2 -0
- data/lib/aws-sdk-licensemanager/types.rb +85 -12
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0e468cf20b66d01f301fcaccd2e4f9b13d227f181c180a6ea125f2c056f7e55
|
4
|
+
data.tar.gz: 2701ef3a5b1a3ab435e17c192fc24a97e29e0a789b1a99a3eb6356ea8045aec1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec6d2985ef4f0be4bffcf5e6dccc7bf51c6e01dfdeec54a51abb2b8f16670420d5b39f4915691323c98b55a5e0a6f8929f98e43dd4332fcebbc8d1499ee04cbe
|
7
|
+
data.tar.gz: 728266d55218b14a6606e4215b242e487c2e7285ff3edceacfd27f2dc8fa068191d1aeebd91e4cb9e38cc83c41072d1d5209835b4d543ababb3ae338ad299721
|
@@ -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:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-licensemanager/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::LicenseManager
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.18.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
|
|
@@ -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
|
|
@@ -81,13 +85,28 @@ module Aws::LicenseManager
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::LicenseManager
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::LicenseManager
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::LicenseManager
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -324,9 +343,9 @@ module Aws::LicenseManager
|
|
324
343
|
# agreement that can be consumed and enforced by License Manager.
|
325
344
|
# Components include specifications for the license type (licensing by
|
326
345
|
# instance, socket, CPU, or vCPU), allowed tenancy (shared tenancy,
|
327
|
-
# Dedicated Instance, Dedicated Host, or all of these),
|
328
|
-
# (how long a
|
329
|
-
# licenses purchased and used.
|
346
|
+
# Dedicated Instance, Dedicated Host, or all of these), license affinity
|
347
|
+
# to host (how long a license must be associated with a host), and the
|
348
|
+
# number of licenses purchased and used.
|
330
349
|
#
|
331
350
|
# @option params [required, String] :name
|
332
351
|
# Name of the license configuration.
|
@@ -346,21 +365,27 @@ module Aws::LicenseManager
|
|
346
365
|
#
|
347
366
|
# @option params [Array<String>] :license_rules
|
348
367
|
# License rules. The syntax is #name=value (for example,
|
349
|
-
# #allowedTenancy=EC2-DedicatedHost).
|
368
|
+
# #allowedTenancy=EC2-DedicatedHost). The available rules vary by
|
369
|
+
# dimension, as follows.
|
350
370
|
#
|
351
|
-
# * `Cores` dimension: `allowedTenancy` \| `
|
352
|
-
# `minimumCores`
|
371
|
+
# * `Cores` dimension: `allowedTenancy` \| `licenseAffinityToHost` \|
|
372
|
+
# `maximumCores` \| `minimumCores`
|
353
373
|
#
|
354
374
|
# * `Instances` dimension: `allowedTenancy` \| `maximumCores` \|
|
355
375
|
# `minimumCores` \| `maximumSockets` \| `minimumSockets` \|
|
356
376
|
# `maximumVcpus` \| `minimumVcpus`
|
357
377
|
#
|
358
|
-
# * `Sockets` dimension: `allowedTenancy` \| `
|
359
|
-
# `minimumSockets`
|
378
|
+
# * `Sockets` dimension: `allowedTenancy` \| `licenseAffinityToHost` \|
|
379
|
+
# `maximumSockets` \| `minimumSockets`
|
360
380
|
#
|
361
381
|
# * `vCPUs` dimension: `allowedTenancy` \| `honorVcpuOptimization` \|
|
362
382
|
# `maximumVcpus` \| `minimumVcpus`
|
363
383
|
#
|
384
|
+
# The unit for `licenseAffinityToHost` is days and the range is 1 to
|
385
|
+
# 180. The possible values for `allowedTenancy` are `EC2-Default`,
|
386
|
+
# `EC2-DedicatedHost`, and `EC2-DedicatedInstance`. The possible values
|
387
|
+
# for `honorVcpuOptimization` are `True` and `False`.
|
388
|
+
#
|
364
389
|
# @option params [Array<Types::Tag>] :tags
|
365
390
|
# Tags to add to the license configuration.
|
366
391
|
#
|
@@ -645,8 +670,9 @@ module Aws::LicenseManager
|
|
645
670
|
# Filters to scope the results. The following filters and logical
|
646
671
|
# operators are supported:
|
647
672
|
#
|
648
|
-
# * `licenseCountingType` - The dimension on which licenses are counted
|
649
|
-
#
|
673
|
+
# * `licenseCountingType` - The dimension on which licenses are counted.
|
674
|
+
# Possible values are `vCPU` \| `Instance` \| `Core` \| `Socket`.
|
675
|
+
# Logical operators are `EQUALS` \| `NOT_EQUALS`.
|
650
676
|
#
|
651
677
|
# * `enforceLicenseCount` - A Boolean value that indicates whether hard
|
652
678
|
# license enforcement is used. Logical operators are `EQUALS` \|
|
@@ -979,14 +1005,6 @@ module Aws::LicenseManager
|
|
979
1005
|
|
980
1006
|
# Modifies the attributes of an existing license configuration.
|
981
1007
|
#
|
982
|
-
# A license configuration is an abstraction of a customer license
|
983
|
-
# agreement that can be consumed and enforced by License Manager.
|
984
|
-
# Components include specifications for the license type (licensing by
|
985
|
-
# instance, socket, CPU, or vCPU), allowed tenancy (shared tenancy,
|
986
|
-
# Dedicated Instance, Dedicated Host, or all of these), host affinity
|
987
|
-
# (how long a VM must be associated with a host), and the number of
|
988
|
-
# licenses purchased and used.
|
989
|
-
#
|
990
1008
|
# @option params [required, String] :license_configuration_arn
|
991
1009
|
# Amazon Resource Name (ARN) of the license configuration.
|
992
1010
|
#
|
@@ -994,7 +1012,8 @@ module Aws::LicenseManager
|
|
994
1012
|
# New status of the license configuration.
|
995
1013
|
#
|
996
1014
|
# @option params [Array<String>] :license_rules
|
997
|
-
# New license
|
1015
|
+
# New license rule. The only rule that you can add after you create a
|
1016
|
+
# license configuration is licenseAffinityToHost.
|
998
1017
|
#
|
999
1018
|
# @option params [Integer] :license_count
|
1000
1019
|
# New number of licenses managed by the license configuration.
|
@@ -1142,7 +1161,7 @@ module Aws::LicenseManager
|
|
1142
1161
|
params: params,
|
1143
1162
|
config: config)
|
1144
1163
|
context[:gem_name] = 'aws-sdk-licensemanager'
|
1145
|
-
context[:gem_version] = '1.
|
1164
|
+
context[:gem_version] = '1.18.0'
|
1146
1165
|
Seahorse::Client::Request.new(handlers, context)
|
1147
1166
|
end
|
1148
1167
|
|
@@ -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.18.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-25 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
|