aws-sdk-licensemanager 1.11.0 → 1.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-licensemanager.rb +9 -4
- data/lib/aws-sdk-licensemanager/client.rb +72 -14
- data/lib/aws-sdk-licensemanager/client_api.rb +2 -0
- data/lib/aws-sdk-licensemanager/errors.rb +34 -10
- data/lib/aws-sdk-licensemanager/resource.rb +3 -0
- data/lib/aws-sdk-licensemanager/types.rb +53 -0
- 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: e3f7e394a449de6602aea39973ddc5cee8bf95d904cc99861b07fe61ed9ac6e9
|
4
|
+
data.tar.gz: 1578e19093b1bf705b0fdf9dff7af2a9035e91a1c12219c0d59c9c0796085bb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35d6fcb914a854830a2147a480fe268f475017648a31e4c515895d679b32a41ca0356978ec7729ecaa3a439a48c59b3de3c2ca74287d109bc13184163f0dc6b0
|
7
|
+
data.tar.gz: dc5b0d17d30521b585a0ab249e4ca1d991fd427dfd5b17fbee517b031efbb98b74a96e2fe990f1258cd316dfb4cfcf40889be4c67a1d97c3dae2eb0f95884fc3
|
@@ -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,17 +26,20 @@ require_relative 'aws-sdk-licensemanager/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# license_manager = Aws::LicenseManager::Client.new
|
30
|
+
# resp = license_manager.create_license_configuration(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS License Manager
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS License Manager are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::LicenseManager::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS License Manager API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-licensemanager/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::LicenseManager
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.16.0'
|
46
51
|
|
47
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,12 +26,25 @@ 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
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:licensemanager)
|
31
34
|
|
32
35
|
module Aws::LicenseManager
|
36
|
+
# An API client for LicenseManager. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::LicenseManager::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::LicenseManager
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::LicenseManager
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::LicenseManager
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::LicenseManager
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::LicenseManager
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::LicenseManager
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# 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.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::LicenseManager
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::LicenseManager
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
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
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -219,16 +278,15 @@ module Aws::LicenseManager
|
|
219
278
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
279
|
#
|
221
280
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
281
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
282
|
# `Timeout::Error`.
|
224
283
|
#
|
225
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
285
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yeidled by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
229
287
|
#
|
230
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
289
|
+
# seconds a connection is allowed to sit idle before it is
|
232
290
|
# considered stale. Stale connections are closed and removed
|
233
291
|
# from the pool before making a request.
|
234
292
|
#
|
@@ -237,7 +295,7 @@ module Aws::LicenseManager
|
|
237
295
|
# request body. This option has no effect unless the request has
|
238
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
297
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
298
|
+
# request on the session.
|
241
299
|
#
|
242
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1088,7 +1146,7 @@ module Aws::LicenseManager
|
|
1088
1146
|
params: params,
|
1089
1147
|
config: config)
|
1090
1148
|
context[:gem_name] = 'aws-sdk-licensemanager'
|
1091
|
-
context[:gem_version] = '1.
|
1149
|
+
context[:gem_version] = '1.16.0'
|
1092
1150
|
Seahorse::Client::Request.new(handlers, context)
|
1093
1151
|
end
|
1094
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,6 +8,38 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::LicenseManager
|
11
|
+
|
12
|
+
# When LicenseManager returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::LicenseManager::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all LicenseManager errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::LicenseManager::Errors::ServiceError
|
20
|
+
# # rescues all LicenseManager API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {AccessDeniedException}
|
31
|
+
# * {AuthorizationException}
|
32
|
+
# * {FailedDependencyException}
|
33
|
+
# * {FilterLimitExceededException}
|
34
|
+
# * {InvalidParameterValueException}
|
35
|
+
# * {InvalidResourceStateException}
|
36
|
+
# * {LicenseUsageException}
|
37
|
+
# * {RateLimitExceededException}
|
38
|
+
# * {ResourceLimitExceededException}
|
39
|
+
# * {ServerInternalException}
|
40
|
+
#
|
41
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
42
|
+
# if they are not defined above.
|
9
43
|
module Errors
|
10
44
|
|
11
45
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +57,6 @@ module Aws::LicenseManager
|
|
23
57
|
def message
|
24
58
|
@message || @data[:message]
|
25
59
|
end
|
26
|
-
|
27
60
|
end
|
28
61
|
|
29
62
|
class AuthorizationException < ServiceError
|
@@ -39,7 +72,6 @@ module Aws::LicenseManager
|
|
39
72
|
def message
|
40
73
|
@message || @data[:message]
|
41
74
|
end
|
42
|
-
|
43
75
|
end
|
44
76
|
|
45
77
|
class FailedDependencyException < ServiceError
|
@@ -55,7 +87,6 @@ module Aws::LicenseManager
|
|
55
87
|
def message
|
56
88
|
@message || @data[:message]
|
57
89
|
end
|
58
|
-
|
59
90
|
end
|
60
91
|
|
61
92
|
class FilterLimitExceededException < ServiceError
|
@@ -71,7 +102,6 @@ module Aws::LicenseManager
|
|
71
102
|
def message
|
72
103
|
@message || @data[:message]
|
73
104
|
end
|
74
|
-
|
75
105
|
end
|
76
106
|
|
77
107
|
class InvalidParameterValueException < ServiceError
|
@@ -87,7 +117,6 @@ module Aws::LicenseManager
|
|
87
117
|
def message
|
88
118
|
@message || @data[:message]
|
89
119
|
end
|
90
|
-
|
91
120
|
end
|
92
121
|
|
93
122
|
class InvalidResourceStateException < ServiceError
|
@@ -103,7 +132,6 @@ module Aws::LicenseManager
|
|
103
132
|
def message
|
104
133
|
@message || @data[:message]
|
105
134
|
end
|
106
|
-
|
107
135
|
end
|
108
136
|
|
109
137
|
class LicenseUsageException < ServiceError
|
@@ -119,7 +147,6 @@ module Aws::LicenseManager
|
|
119
147
|
def message
|
120
148
|
@message || @data[:message]
|
121
149
|
end
|
122
|
-
|
123
150
|
end
|
124
151
|
|
125
152
|
class RateLimitExceededException < ServiceError
|
@@ -135,7 +162,6 @@ module Aws::LicenseManager
|
|
135
162
|
def message
|
136
163
|
@message || @data[:message]
|
137
164
|
end
|
138
|
-
|
139
165
|
end
|
140
166
|
|
141
167
|
class ResourceLimitExceededException < ServiceError
|
@@ -151,7 +177,6 @@ module Aws::LicenseManager
|
|
151
177
|
def message
|
152
178
|
@message || @data[:message]
|
153
179
|
end
|
154
|
-
|
155
180
|
end
|
156
181
|
|
157
182
|
class ServerInternalException < ServiceError
|
@@ -167,7 +192,6 @@ module Aws::LicenseManager
|
|
167
192
|
def message
|
168
193
|
@message || @data[:message]
|
169
194
|
end
|
170
|
-
|
171
195
|
end
|
172
196
|
|
173
197
|
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:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::LicenseManager
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
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
|
|
@@ -153,6 +159,7 @@ module Aws::LicenseManager
|
|
153
159
|
:license_rules,
|
154
160
|
:tags,
|
155
161
|
:product_information_list)
|
162
|
+
SENSITIVE = []
|
156
163
|
include Aws::Structure
|
157
164
|
end
|
158
165
|
|
@@ -164,6 +171,7 @@ module Aws::LicenseManager
|
|
164
171
|
#
|
165
172
|
class CreateLicenseConfigurationResponse < Struct.new(
|
166
173
|
:license_configuration_arn)
|
174
|
+
SENSITIVE = []
|
167
175
|
include Aws::Structure
|
168
176
|
end
|
169
177
|
|
@@ -182,6 +190,7 @@ module Aws::LicenseManager
|
|
182
190
|
#
|
183
191
|
class DeleteLicenseConfigurationRequest < Struct.new(
|
184
192
|
:license_configuration_arn)
|
193
|
+
SENSITIVE = []
|
185
194
|
include Aws::Structure
|
186
195
|
end
|
187
196
|
|
@@ -198,6 +207,7 @@ module Aws::LicenseManager
|
|
198
207
|
#
|
199
208
|
class FailedDependencyException < Struct.new(
|
200
209
|
:message)
|
210
|
+
SENSITIVE = []
|
201
211
|
include Aws::Structure
|
202
212
|
end
|
203
213
|
|
@@ -226,6 +236,7 @@ module Aws::LicenseManager
|
|
226
236
|
class Filter < Struct.new(
|
227
237
|
:name,
|
228
238
|
:values)
|
239
|
+
SENSITIVE = []
|
229
240
|
include Aws::Structure
|
230
241
|
end
|
231
242
|
|
@@ -238,6 +249,7 @@ module Aws::LicenseManager
|
|
238
249
|
#
|
239
250
|
class FilterLimitExceededException < Struct.new(
|
240
251
|
:message)
|
252
|
+
SENSITIVE = []
|
241
253
|
include Aws::Structure
|
242
254
|
end
|
243
255
|
|
@@ -256,6 +268,7 @@ module Aws::LicenseManager
|
|
256
268
|
#
|
257
269
|
class GetLicenseConfigurationRequest < Struct.new(
|
258
270
|
:license_configuration_arn)
|
271
|
+
SENSITIVE = []
|
259
272
|
include Aws::Structure
|
260
273
|
end
|
261
274
|
|
@@ -342,6 +355,7 @@ module Aws::LicenseManager
|
|
342
355
|
:tags,
|
343
356
|
:product_information_list,
|
344
357
|
:automated_discovery_information)
|
358
|
+
SENSITIVE = []
|
345
359
|
include Aws::Structure
|
346
360
|
end
|
347
361
|
|
@@ -383,6 +397,7 @@ module Aws::LicenseManager
|
|
383
397
|
:organization_configuration,
|
384
398
|
:enable_cross_accounts_discovery,
|
385
399
|
:license_manager_resource_share_arn)
|
400
|
+
SENSITIVE = []
|
386
401
|
include Aws::Structure
|
387
402
|
end
|
388
403
|
|
@@ -395,6 +410,7 @@ module Aws::LicenseManager
|
|
395
410
|
#
|
396
411
|
class InvalidParameterValueException < Struct.new(
|
397
412
|
:message)
|
413
|
+
SENSITIVE = []
|
398
414
|
include Aws::Structure
|
399
415
|
end
|
400
416
|
|
@@ -411,6 +427,7 @@ module Aws::LicenseManager
|
|
411
427
|
#
|
412
428
|
class InvalidResourceStateException < Struct.new(
|
413
429
|
:message)
|
430
|
+
SENSITIVE = []
|
414
431
|
include Aws::Structure
|
415
432
|
end
|
416
433
|
|
@@ -443,6 +460,7 @@ module Aws::LicenseManager
|
|
443
460
|
:name,
|
444
461
|
:condition,
|
445
462
|
:value)
|
463
|
+
SENSITIVE = []
|
446
464
|
include Aws::Structure
|
447
465
|
end
|
448
466
|
|
@@ -532,6 +550,7 @@ module Aws::LicenseManager
|
|
532
550
|
:managed_resource_summary_list,
|
533
551
|
:product_information_list,
|
534
552
|
:automated_discovery_information)
|
553
|
+
SENSITIVE = []
|
535
554
|
include Aws::Structure
|
536
555
|
end
|
537
556
|
|
@@ -561,6 +580,7 @@ module Aws::LicenseManager
|
|
561
580
|
:resource_type,
|
562
581
|
:resource_owner_id,
|
563
582
|
:association_time)
|
583
|
+
SENSITIVE = []
|
564
584
|
include Aws::Structure
|
565
585
|
end
|
566
586
|
|
@@ -601,6 +621,7 @@ module Aws::LicenseManager
|
|
601
621
|
:resource_owner_id,
|
602
622
|
:association_time,
|
603
623
|
:consumed_licenses)
|
624
|
+
SENSITIVE = []
|
604
625
|
include Aws::Structure
|
605
626
|
end
|
606
627
|
|
@@ -649,6 +670,7 @@ module Aws::LicenseManager
|
|
649
670
|
:resource_owner_id,
|
650
671
|
:operation_requested_by,
|
651
672
|
:metadata_list)
|
673
|
+
SENSITIVE = []
|
652
674
|
include Aws::Structure
|
653
675
|
end
|
654
676
|
|
@@ -669,6 +691,7 @@ module Aws::LicenseManager
|
|
669
691
|
#
|
670
692
|
class LicenseSpecification < Struct.new(
|
671
693
|
:license_configuration_arn)
|
694
|
+
SENSITIVE = []
|
672
695
|
include Aws::Structure
|
673
696
|
end
|
674
697
|
|
@@ -682,6 +705,7 @@ module Aws::LicenseManager
|
|
682
705
|
#
|
683
706
|
class LicenseUsageException < Struct.new(
|
684
707
|
:message)
|
708
|
+
SENSITIVE = []
|
685
709
|
include Aws::Structure
|
686
710
|
end
|
687
711
|
|
@@ -712,6 +736,7 @@ module Aws::LicenseManager
|
|
712
736
|
:license_configuration_arn,
|
713
737
|
:max_results,
|
714
738
|
:next_token)
|
739
|
+
SENSITIVE = []
|
715
740
|
include Aws::Structure
|
716
741
|
end
|
717
742
|
|
@@ -728,6 +753,7 @@ module Aws::LicenseManager
|
|
728
753
|
class ListAssociationsForLicenseConfigurationResponse < Struct.new(
|
729
754
|
:license_configuration_associations,
|
730
755
|
:next_token)
|
756
|
+
SENSITIVE = []
|
731
757
|
include Aws::Structure
|
732
758
|
end
|
733
759
|
|
@@ -758,6 +784,7 @@ module Aws::LicenseManager
|
|
758
784
|
:license_configuration_arn,
|
759
785
|
:max_results,
|
760
786
|
:next_token)
|
787
|
+
SENSITIVE = []
|
761
788
|
include Aws::Structure
|
762
789
|
end
|
763
790
|
|
@@ -774,6 +801,7 @@ module Aws::LicenseManager
|
|
774
801
|
class ListFailuresForLicenseConfigurationOperationsResponse < Struct.new(
|
775
802
|
:license_operation_failure_list,
|
776
803
|
:next_token)
|
804
|
+
SENSITIVE = []
|
777
805
|
include Aws::Structure
|
778
806
|
end
|
779
807
|
|
@@ -827,6 +855,7 @@ module Aws::LicenseManager
|
|
827
855
|
:max_results,
|
828
856
|
:next_token,
|
829
857
|
:filters)
|
858
|
+
SENSITIVE = []
|
830
859
|
include Aws::Structure
|
831
860
|
end
|
832
861
|
|
@@ -843,6 +872,7 @@ module Aws::LicenseManager
|
|
843
872
|
class ListLicenseConfigurationsResponse < Struct.new(
|
844
873
|
:license_configurations,
|
845
874
|
:next_token)
|
875
|
+
SENSITIVE = []
|
846
876
|
include Aws::Structure
|
847
877
|
end
|
848
878
|
|
@@ -874,6 +904,7 @@ module Aws::LicenseManager
|
|
874
904
|
:resource_arn,
|
875
905
|
:max_results,
|
876
906
|
:next_token)
|
907
|
+
SENSITIVE = []
|
877
908
|
include Aws::Structure
|
878
909
|
end
|
879
910
|
|
@@ -890,6 +921,7 @@ module Aws::LicenseManager
|
|
890
921
|
class ListLicenseSpecificationsForResourceResponse < Struct.new(
|
891
922
|
:license_specifications,
|
892
923
|
:next_token)
|
924
|
+
SENSITIVE = []
|
893
925
|
include Aws::Structure
|
894
926
|
end
|
895
927
|
|
@@ -944,6 +976,7 @@ module Aws::LicenseManager
|
|
944
976
|
:max_results,
|
945
977
|
:next_token,
|
946
978
|
:filters)
|
979
|
+
SENSITIVE = []
|
947
980
|
include Aws::Structure
|
948
981
|
end
|
949
982
|
|
@@ -960,6 +993,7 @@ module Aws::LicenseManager
|
|
960
993
|
class ListResourceInventoryResponse < Struct.new(
|
961
994
|
:resource_inventory_list,
|
962
995
|
:next_token)
|
996
|
+
SENSITIVE = []
|
963
997
|
include Aws::Structure
|
964
998
|
end
|
965
999
|
|
@@ -978,6 +1012,7 @@ module Aws::LicenseManager
|
|
978
1012
|
#
|
979
1013
|
class ListTagsForResourceRequest < Struct.new(
|
980
1014
|
:resource_arn)
|
1015
|
+
SENSITIVE = []
|
981
1016
|
include Aws::Structure
|
982
1017
|
end
|
983
1018
|
|
@@ -989,6 +1024,7 @@ module Aws::LicenseManager
|
|
989
1024
|
#
|
990
1025
|
class ListTagsForResourceResponse < Struct.new(
|
991
1026
|
:tags)
|
1027
|
+
SENSITIVE = []
|
992
1028
|
include Aws::Structure
|
993
1029
|
end
|
994
1030
|
|
@@ -1041,6 +1077,7 @@ module Aws::LicenseManager
|
|
1041
1077
|
:max_results,
|
1042
1078
|
:next_token,
|
1043
1079
|
:filters)
|
1080
|
+
SENSITIVE = []
|
1044
1081
|
include Aws::Structure
|
1045
1082
|
end
|
1046
1083
|
|
@@ -1057,6 +1094,7 @@ module Aws::LicenseManager
|
|
1057
1094
|
class ListUsageForLicenseConfigurationResponse < Struct.new(
|
1058
1095
|
:license_configuration_usage_list,
|
1059
1096
|
:next_token)
|
1097
|
+
SENSITIVE = []
|
1060
1098
|
include Aws::Structure
|
1061
1099
|
end
|
1062
1100
|
|
@@ -1075,6 +1113,7 @@ module Aws::LicenseManager
|
|
1075
1113
|
class ManagedResourceSummary < Struct.new(
|
1076
1114
|
:resource_type,
|
1077
1115
|
:association_count)
|
1116
|
+
SENSITIVE = []
|
1078
1117
|
include Aws::Structure
|
1079
1118
|
end
|
1080
1119
|
|
@@ -1093,6 +1132,7 @@ module Aws::LicenseManager
|
|
1093
1132
|
class Metadata < Struct.new(
|
1094
1133
|
:name,
|
1095
1134
|
:value)
|
1135
|
+
SENSITIVE = []
|
1096
1136
|
include Aws::Structure
|
1097
1137
|
end
|
1098
1138
|
|
@@ -1113,6 +1153,7 @@ module Aws::LicenseManager
|
|
1113
1153
|
#
|
1114
1154
|
class OrganizationConfiguration < Struct.new(
|
1115
1155
|
:enable_integration)
|
1156
|
+
SENSITIVE = []
|
1116
1157
|
include Aws::Structure
|
1117
1158
|
end
|
1118
1159
|
|
@@ -1165,6 +1206,7 @@ module Aws::LicenseManager
|
|
1165
1206
|
class ProductInformation < Struct.new(
|
1166
1207
|
:resource_type,
|
1167
1208
|
:product_information_filter_list)
|
1209
|
+
SENSITIVE = []
|
1168
1210
|
include Aws::Structure
|
1169
1211
|
end
|
1170
1212
|
|
@@ -1197,6 +1239,7 @@ module Aws::LicenseManager
|
|
1197
1239
|
:product_information_filter_name,
|
1198
1240
|
:product_information_filter_value,
|
1199
1241
|
:product_information_filter_comparator)
|
1242
|
+
SENSITIVE = []
|
1200
1243
|
include Aws::Structure
|
1201
1244
|
end
|
1202
1245
|
|
@@ -1209,6 +1252,7 @@ module Aws::LicenseManager
|
|
1209
1252
|
#
|
1210
1253
|
class RateLimitExceededException < Struct.new(
|
1211
1254
|
:message)
|
1255
|
+
SENSITIVE = []
|
1212
1256
|
include Aws::Structure
|
1213
1257
|
end
|
1214
1258
|
|
@@ -1247,6 +1291,7 @@ module Aws::LicenseManager
|
|
1247
1291
|
:platform,
|
1248
1292
|
:platform_version,
|
1249
1293
|
:resource_owning_account_id)
|
1294
|
+
SENSITIVE = []
|
1250
1295
|
include Aws::Structure
|
1251
1296
|
end
|
1252
1297
|
|
@@ -1259,6 +1304,7 @@ module Aws::LicenseManager
|
|
1259
1304
|
#
|
1260
1305
|
class ResourceLimitExceededException < Struct.new(
|
1261
1306
|
:message)
|
1307
|
+
SENSITIVE = []
|
1262
1308
|
include Aws::Structure
|
1263
1309
|
end
|
1264
1310
|
|
@@ -1271,6 +1317,7 @@ module Aws::LicenseManager
|
|
1271
1317
|
#
|
1272
1318
|
class ServerInternalException < Struct.new(
|
1273
1319
|
:message)
|
1320
|
+
SENSITIVE = []
|
1274
1321
|
include Aws::Structure
|
1275
1322
|
end
|
1276
1323
|
|
@@ -1297,6 +1344,7 @@ module Aws::LicenseManager
|
|
1297
1344
|
class Tag < Struct.new(
|
1298
1345
|
:key,
|
1299
1346
|
:value)
|
1347
|
+
SENSITIVE = []
|
1300
1348
|
include Aws::Structure
|
1301
1349
|
end
|
1302
1350
|
|
@@ -1326,6 +1374,7 @@ module Aws::LicenseManager
|
|
1326
1374
|
class TagResourceRequest < Struct.new(
|
1327
1375
|
:resource_arn,
|
1328
1376
|
:tags)
|
1377
|
+
SENSITIVE = []
|
1329
1378
|
include Aws::Structure
|
1330
1379
|
end
|
1331
1380
|
|
@@ -1354,6 +1403,7 @@ module Aws::LicenseManager
|
|
1354
1403
|
class UntagResourceRequest < Struct.new(
|
1355
1404
|
:resource_arn,
|
1356
1405
|
:tag_keys)
|
1406
|
+
SENSITIVE = []
|
1357
1407
|
include Aws::Structure
|
1358
1408
|
end
|
1359
1409
|
|
@@ -1429,6 +1479,7 @@ module Aws::LicenseManager
|
|
1429
1479
|
:name,
|
1430
1480
|
:description,
|
1431
1481
|
:product_information_list)
|
1482
|
+
SENSITIVE = []
|
1432
1483
|
include Aws::Structure
|
1433
1484
|
end
|
1434
1485
|
|
@@ -1471,6 +1522,7 @@ module Aws::LicenseManager
|
|
1471
1522
|
:resource_arn,
|
1472
1523
|
:add_license_specifications,
|
1473
1524
|
:remove_license_specifications)
|
1525
|
+
SENSITIVE = []
|
1474
1526
|
include Aws::Structure
|
1475
1527
|
end
|
1476
1528
|
|
@@ -1516,6 +1568,7 @@ module Aws::LicenseManager
|
|
1516
1568
|
:sns_topic_arn,
|
1517
1569
|
:organization_configuration,
|
1518
1570
|
:enable_cross_accounts_discovery)
|
1571
|
+
SENSITIVE = []
|
1519
1572
|
include Aws::Structure
|
1520
1573
|
end
|
1521
1574
|
|
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.16.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:
|
11
|
+
date: 2020-06-23 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
|