aws-sdk-applicationdiscoveryservice 1.24.0 → 1.29.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-applicationdiscoveryservice.rb +9 -4
- data/lib/aws-sdk-applicationdiscoveryservice/client.rb +76 -14
- data/lib/aws-sdk-applicationdiscoveryservice/client_api.rb +2 -0
- data/lib/aws-sdk-applicationdiscoveryservice/customizations.rb +1 -0
- data/lib/aws-sdk-applicationdiscoveryservice/errors.rb +33 -9
- data/lib/aws-sdk-applicationdiscoveryservice/resource.rb +3 -0
- data/lib/aws-sdk-applicationdiscoveryservice/types.rb +69 -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: dc0c25a7d567b2fc9c001d2b9a782051e2ff7e40dbe1e73358d8ab0b97a8221a
|
4
|
+
data.tar.gz: 2c502c4416758d2075eb21655261a57d68f3f899d655ef319a40648c3e703c4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5eab80e2aff75a0d0f17844748cdfd9814a7e7873933da4d1b8208bb08d34a4a3309ed72be3ece908618129d47bee2c8a5835bdf00d07bfbf77716179d3c1885
|
7
|
+
data.tar.gz: a747bbaa06bb9aed27fbad9006b0474f02714c06752c855a48f3537ce0e1715cd472ff4e7e6899daaebe57acc18cc3ed3a614bd8baf142342f613a5805fe091a
|
@@ -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-applicationdiscoveryservice/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# application_discovery_service = Aws::ApplicationDiscoveryService::Client.new
|
30
|
+
# resp = application_discovery_service.associate_configuration_items_to_application(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Application Discovery Service
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Application Discovery Service 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::ApplicationDiscoveryService::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Application Discovery Service API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-applicationdiscoveryservice/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::ApplicationDiscoveryService
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.29.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(:applicationdiscoveryservice)
|
31
34
|
|
32
35
|
module Aws::ApplicationDiscoveryService
|
36
|
+
# An API client for ApplicationDiscoveryService. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::ApplicationDiscoveryService::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::ApplicationDiscoveryService
|
|
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::ApplicationDiscoveryService
|
|
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::ApplicationDiscoveryService
|
|
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::ApplicationDiscoveryService
|
|
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::ApplicationDiscoveryService
|
|
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::ApplicationDiscoveryService
|
|
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::ApplicationDiscoveryService
|
|
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::ApplicationDiscoveryService
|
|
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::ApplicationDiscoveryService
|
|
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::ApplicationDiscoveryService
|
|
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`.
|
@@ -592,6 +650,8 @@ module Aws::ApplicationDiscoveryService
|
|
592
650
|
# * {Types::DescribeContinuousExportsResponse#descriptions #descriptions} => Array<Types::ContinuousExportDescription>
|
593
651
|
# * {Types::DescribeContinuousExportsResponse#next_token #next_token} => String
|
594
652
|
#
|
653
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
654
|
+
#
|
595
655
|
# @example Request syntax with placeholder values
|
596
656
|
#
|
597
657
|
# resp = client.describe_continuous_exports({
|
@@ -759,6 +819,8 @@ module Aws::ApplicationDiscoveryService
|
|
759
819
|
# * {Types::DescribeImportTasksResponse#next_token #next_token} => String
|
760
820
|
# * {Types::DescribeImportTasksResponse#tasks #tasks} => Array<Types::ImportTask>
|
761
821
|
#
|
822
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
823
|
+
#
|
762
824
|
# @example Request syntax with placeholder values
|
763
825
|
#
|
764
826
|
# resp = client.describe_import_tasks({
|
@@ -1420,7 +1482,7 @@ module Aws::ApplicationDiscoveryService
|
|
1420
1482
|
params: params,
|
1421
1483
|
config: config)
|
1422
1484
|
context[:gem_name] = 'aws-sdk-applicationdiscoveryservice'
|
1423
|
-
context[:gem_version] = '1.
|
1485
|
+
context[:gem_version] = '1.29.0'
|
1424
1486
|
Seahorse::Client::Request.new(handlers, context)
|
1425
1487
|
end
|
1426
1488
|
|
@@ -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,37 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::ApplicationDiscoveryService
|
11
|
+
|
12
|
+
# When ApplicationDiscoveryService returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::ApplicationDiscoveryService::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all ApplicationDiscoveryService errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::ApplicationDiscoveryService::Errors::ServiceError
|
20
|
+
# # rescues all ApplicationDiscoveryService 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
|
+
# * {AuthorizationErrorException}
|
31
|
+
# * {ConflictErrorException}
|
32
|
+
# * {HomeRegionNotSetException}
|
33
|
+
# * {InvalidParameterException}
|
34
|
+
# * {InvalidParameterValueException}
|
35
|
+
# * {OperationNotPermittedException}
|
36
|
+
# * {ResourceInUseException}
|
37
|
+
# * {ResourceNotFoundException}
|
38
|
+
# * {ServerInternalErrorException}
|
39
|
+
#
|
40
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
41
|
+
# if they are not defined above.
|
9
42
|
module Errors
|
10
43
|
|
11
44
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +56,6 @@ module Aws::ApplicationDiscoveryService
|
|
23
56
|
def message
|
24
57
|
@message || @data[:message]
|
25
58
|
end
|
26
|
-
|
27
59
|
end
|
28
60
|
|
29
61
|
class ConflictErrorException < ServiceError
|
@@ -39,7 +71,6 @@ module Aws::ApplicationDiscoveryService
|
|
39
71
|
def message
|
40
72
|
@message || @data[:message]
|
41
73
|
end
|
42
|
-
|
43
74
|
end
|
44
75
|
|
45
76
|
class HomeRegionNotSetException < ServiceError
|
@@ -55,7 +86,6 @@ module Aws::ApplicationDiscoveryService
|
|
55
86
|
def message
|
56
87
|
@message || @data[:message]
|
57
88
|
end
|
58
|
-
|
59
89
|
end
|
60
90
|
|
61
91
|
class InvalidParameterException < ServiceError
|
@@ -71,7 +101,6 @@ module Aws::ApplicationDiscoveryService
|
|
71
101
|
def message
|
72
102
|
@message || @data[:message]
|
73
103
|
end
|
74
|
-
|
75
104
|
end
|
76
105
|
|
77
106
|
class InvalidParameterValueException < ServiceError
|
@@ -87,7 +116,6 @@ module Aws::ApplicationDiscoveryService
|
|
87
116
|
def message
|
88
117
|
@message || @data[:message]
|
89
118
|
end
|
90
|
-
|
91
119
|
end
|
92
120
|
|
93
121
|
class OperationNotPermittedException < ServiceError
|
@@ -103,7 +131,6 @@ module Aws::ApplicationDiscoveryService
|
|
103
131
|
def message
|
104
132
|
@message || @data[:message]
|
105
133
|
end
|
106
|
-
|
107
134
|
end
|
108
135
|
|
109
136
|
class ResourceInUseException < ServiceError
|
@@ -119,7 +146,6 @@ module Aws::ApplicationDiscoveryService
|
|
119
146
|
def message
|
120
147
|
@message || @data[:message]
|
121
148
|
end
|
122
|
-
|
123
149
|
end
|
124
150
|
|
125
151
|
class ResourceNotFoundException < ServiceError
|
@@ -135,7 +161,6 @@ module Aws::ApplicationDiscoveryService
|
|
135
161
|
def message
|
136
162
|
@message || @data[:message]
|
137
163
|
end
|
138
|
-
|
139
164
|
end
|
140
165
|
|
141
166
|
class ServerInternalErrorException < ServiceError
|
@@ -151,7 +176,6 @@ module Aws::ApplicationDiscoveryService
|
|
151
176
|
def message
|
152
177
|
@message || @data[:message]
|
153
178
|
end
|
154
|
-
|
155
179
|
end
|
156
180
|
|
157
181
|
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::ApplicationDiscoveryService
|
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:
|
@@ -32,6 +34,7 @@ module Aws::ApplicationDiscoveryService
|
|
32
34
|
:agent_id,
|
33
35
|
:operation_succeeded,
|
34
36
|
:description)
|
37
|
+
SENSITIVE = []
|
35
38
|
include Aws::Structure
|
36
39
|
end
|
37
40
|
|
@@ -93,6 +96,7 @@ module Aws::ApplicationDiscoveryService
|
|
93
96
|
:collection_status,
|
94
97
|
:agent_type,
|
95
98
|
:registered_time)
|
99
|
+
SENSITIVE = []
|
96
100
|
include Aws::Structure
|
97
101
|
end
|
98
102
|
|
@@ -109,6 +113,7 @@ module Aws::ApplicationDiscoveryService
|
|
109
113
|
class AgentNetworkInfo < Struct.new(
|
110
114
|
:ip_address,
|
111
115
|
:mac_address)
|
116
|
+
SENSITIVE = []
|
112
117
|
include Aws::Structure
|
113
118
|
end
|
114
119
|
|
@@ -133,6 +138,7 @@ module Aws::ApplicationDiscoveryService
|
|
133
138
|
class AssociateConfigurationItemsToApplicationRequest < Struct.new(
|
134
139
|
:application_configuration_id,
|
135
140
|
:configuration_ids)
|
141
|
+
SENSITIVE = []
|
136
142
|
include Aws::Structure
|
137
143
|
end
|
138
144
|
|
@@ -146,6 +152,7 @@ module Aws::ApplicationDiscoveryService
|
|
146
152
|
#
|
147
153
|
class AuthorizationErrorException < Struct.new(
|
148
154
|
:message)
|
155
|
+
SENSITIVE = []
|
149
156
|
include Aws::Structure
|
150
157
|
end
|
151
158
|
|
@@ -169,6 +176,7 @@ module Aws::ApplicationDiscoveryService
|
|
169
176
|
:import_task_id,
|
170
177
|
:error_code,
|
171
178
|
:error_description)
|
179
|
+
SENSITIVE = []
|
172
180
|
include Aws::Structure
|
173
181
|
end
|
174
182
|
|
@@ -185,6 +193,7 @@ module Aws::ApplicationDiscoveryService
|
|
185
193
|
#
|
186
194
|
class BatchDeleteImportDataRequest < Struct.new(
|
187
195
|
:import_task_ids)
|
196
|
+
SENSITIVE = []
|
188
197
|
include Aws::Structure
|
189
198
|
end
|
190
199
|
|
@@ -195,6 +204,7 @@ module Aws::ApplicationDiscoveryService
|
|
195
204
|
#
|
196
205
|
class BatchDeleteImportDataResponse < Struct.new(
|
197
206
|
:errors)
|
207
|
+
SENSITIVE = []
|
198
208
|
include Aws::Structure
|
199
209
|
end
|
200
210
|
|
@@ -230,6 +240,7 @@ module Aws::ApplicationDiscoveryService
|
|
230
240
|
:key,
|
231
241
|
:value,
|
232
242
|
:time_of_creation)
|
243
|
+
SENSITIVE = []
|
233
244
|
include Aws::Structure
|
234
245
|
end
|
235
246
|
|
@@ -238,6 +249,7 @@ module Aws::ApplicationDiscoveryService
|
|
238
249
|
#
|
239
250
|
class ConflictErrorException < Struct.new(
|
240
251
|
:message)
|
252
|
+
SENSITIVE = []
|
241
253
|
include Aws::Structure
|
242
254
|
end
|
243
255
|
|
@@ -359,6 +371,7 @@ module Aws::ApplicationDiscoveryService
|
|
359
371
|
:stop_time,
|
360
372
|
:data_source,
|
361
373
|
:schema_storage_config)
|
374
|
+
SENSITIVE = []
|
362
375
|
include Aws::Structure
|
363
376
|
end
|
364
377
|
|
@@ -381,6 +394,7 @@ module Aws::ApplicationDiscoveryService
|
|
381
394
|
class CreateApplicationRequest < Struct.new(
|
382
395
|
:name,
|
383
396
|
:description)
|
397
|
+
SENSITIVE = []
|
384
398
|
include Aws::Structure
|
385
399
|
end
|
386
400
|
|
@@ -390,6 +404,7 @@ module Aws::ApplicationDiscoveryService
|
|
390
404
|
#
|
391
405
|
class CreateApplicationResponse < Struct.new(
|
392
406
|
:configuration_id)
|
407
|
+
SENSITIVE = []
|
393
408
|
include Aws::Structure
|
394
409
|
end
|
395
410
|
|
@@ -421,6 +436,7 @@ module Aws::ApplicationDiscoveryService
|
|
421
436
|
class CreateTagsRequest < Struct.new(
|
422
437
|
:configuration_ids,
|
423
438
|
:tags)
|
439
|
+
SENSITIVE = []
|
424
440
|
include Aws::Structure
|
425
441
|
end
|
426
442
|
|
@@ -464,6 +480,7 @@ module Aws::ApplicationDiscoveryService
|
|
464
480
|
:unhealthy_agents,
|
465
481
|
:total_agents,
|
466
482
|
:unknown_agents)
|
483
|
+
SENSITIVE = []
|
467
484
|
include Aws::Structure
|
468
485
|
end
|
469
486
|
|
@@ -505,6 +522,7 @@ module Aws::ApplicationDiscoveryService
|
|
505
522
|
:unhealthy_connectors,
|
506
523
|
:total_connectors,
|
507
524
|
:unknown_connectors)
|
525
|
+
SENSITIVE = []
|
508
526
|
include Aws::Structure
|
509
527
|
end
|
510
528
|
|
@@ -521,6 +539,7 @@ module Aws::ApplicationDiscoveryService
|
|
521
539
|
#
|
522
540
|
class DeleteApplicationsRequest < Struct.new(
|
523
541
|
:configuration_ids)
|
542
|
+
SENSITIVE = []
|
524
543
|
include Aws::Structure
|
525
544
|
end
|
526
545
|
|
@@ -554,6 +573,7 @@ module Aws::ApplicationDiscoveryService
|
|
554
573
|
class DeleteTagsRequest < Struct.new(
|
555
574
|
:configuration_ids,
|
556
575
|
:tags)
|
576
|
+
SENSITIVE = []
|
557
577
|
include Aws::Structure
|
558
578
|
end
|
559
579
|
|
@@ -606,6 +626,7 @@ module Aws::ApplicationDiscoveryService
|
|
606
626
|
:filters,
|
607
627
|
:max_results,
|
608
628
|
:next_token)
|
629
|
+
SENSITIVE = []
|
609
630
|
include Aws::Structure
|
610
631
|
end
|
611
632
|
|
@@ -629,6 +650,7 @@ module Aws::ApplicationDiscoveryService
|
|
629
650
|
class DescribeAgentsResponse < Struct.new(
|
630
651
|
:agents_info,
|
631
652
|
:next_token)
|
653
|
+
SENSITIVE = []
|
632
654
|
include Aws::Structure
|
633
655
|
end
|
634
656
|
|
@@ -645,6 +667,7 @@ module Aws::ApplicationDiscoveryService
|
|
645
667
|
#
|
646
668
|
class DescribeConfigurationsRequest < Struct.new(
|
647
669
|
:configuration_ids)
|
670
|
+
SENSITIVE = []
|
648
671
|
include Aws::Structure
|
649
672
|
end
|
650
673
|
|
@@ -654,6 +677,7 @@ module Aws::ApplicationDiscoveryService
|
|
654
677
|
#
|
655
678
|
class DescribeConfigurationsResponse < Struct.new(
|
656
679
|
:configurations)
|
680
|
+
SENSITIVE = []
|
657
681
|
include Aws::Structure
|
658
682
|
end
|
659
683
|
|
@@ -683,6 +707,7 @@ module Aws::ApplicationDiscoveryService
|
|
683
707
|
:export_ids,
|
684
708
|
:max_results,
|
685
709
|
:next_token)
|
710
|
+
SENSITIVE = []
|
686
711
|
include Aws::Structure
|
687
712
|
end
|
688
713
|
|
@@ -697,6 +722,7 @@ module Aws::ApplicationDiscoveryService
|
|
697
722
|
class DescribeContinuousExportsResponse < Struct.new(
|
698
723
|
:descriptions,
|
699
724
|
:next_token)
|
725
|
+
SENSITIVE = []
|
700
726
|
include Aws::Structure
|
701
727
|
end
|
702
728
|
|
@@ -726,6 +752,7 @@ module Aws::ApplicationDiscoveryService
|
|
726
752
|
:export_ids,
|
727
753
|
:max_results,
|
728
754
|
:next_token)
|
755
|
+
SENSITIVE = []
|
729
756
|
include Aws::Structure
|
730
757
|
end
|
731
758
|
|
@@ -739,6 +766,7 @@ module Aws::ApplicationDiscoveryService
|
|
739
766
|
class DescribeExportConfigurationsResponse < Struct.new(
|
740
767
|
:exports_info,
|
741
768
|
:next_token)
|
769
|
+
SENSITIVE = []
|
742
770
|
include Aws::Structure
|
743
771
|
end
|
744
772
|
|
@@ -791,6 +819,7 @@ module Aws::ApplicationDiscoveryService
|
|
791
819
|
:filters,
|
792
820
|
:max_results,
|
793
821
|
:next_token)
|
822
|
+
SENSITIVE = []
|
794
823
|
include Aws::Structure
|
795
824
|
end
|
796
825
|
|
@@ -811,6 +840,7 @@ module Aws::ApplicationDiscoveryService
|
|
811
840
|
class DescribeExportTasksResponse < Struct.new(
|
812
841
|
:exports_info,
|
813
842
|
:next_token)
|
843
|
+
SENSITIVE = []
|
814
844
|
include Aws::Structure
|
815
845
|
end
|
816
846
|
|
@@ -847,6 +877,7 @@ module Aws::ApplicationDiscoveryService
|
|
847
877
|
:filters,
|
848
878
|
:max_results,
|
849
879
|
:next_token)
|
880
|
+
SENSITIVE = []
|
850
881
|
include Aws::Structure
|
851
882
|
end
|
852
883
|
|
@@ -862,6 +893,7 @@ module Aws::ApplicationDiscoveryService
|
|
862
893
|
class DescribeImportTasksResponse < Struct.new(
|
863
894
|
:next_token,
|
864
895
|
:tasks)
|
896
|
+
SENSITIVE = []
|
865
897
|
include Aws::Structure
|
866
898
|
end
|
867
899
|
|
@@ -899,6 +931,7 @@ module Aws::ApplicationDiscoveryService
|
|
899
931
|
:filters,
|
900
932
|
:max_results,
|
901
933
|
:next_token)
|
934
|
+
SENSITIVE = []
|
902
935
|
include Aws::Structure
|
903
936
|
end
|
904
937
|
|
@@ -916,6 +949,7 @@ module Aws::ApplicationDiscoveryService
|
|
916
949
|
class DescribeTagsResponse < Struct.new(
|
917
950
|
:tags,
|
918
951
|
:next_token)
|
952
|
+
SENSITIVE = []
|
919
953
|
include Aws::Structure
|
920
954
|
end
|
921
955
|
|
@@ -940,6 +974,7 @@ module Aws::ApplicationDiscoveryService
|
|
940
974
|
class DisassociateConfigurationItemsFromApplicationRequest < Struct.new(
|
941
975
|
:application_configuration_id,
|
942
976
|
:configuration_ids)
|
977
|
+
SENSITIVE = []
|
943
978
|
include Aws::Structure
|
944
979
|
end
|
945
980
|
|
@@ -951,6 +986,7 @@ module Aws::ApplicationDiscoveryService
|
|
951
986
|
#
|
952
987
|
class ExportConfigurationsResponse < Struct.new(
|
953
988
|
:export_id)
|
989
|
+
SENSITIVE = []
|
954
990
|
include Aws::Structure
|
955
991
|
end
|
956
992
|
|
@@ -992,6 +1028,7 @@ module Aws::ApplicationDiscoveryService
|
|
992
1028
|
:name,
|
993
1029
|
:values,
|
994
1030
|
:condition)
|
1031
|
+
SENSITIVE = []
|
995
1032
|
include Aws::Structure
|
996
1033
|
end
|
997
1034
|
|
@@ -1046,6 +1083,7 @@ module Aws::ApplicationDiscoveryService
|
|
1046
1083
|
:is_truncated,
|
1047
1084
|
:requested_start_time,
|
1048
1085
|
:requested_end_time)
|
1086
|
+
SENSITIVE = []
|
1049
1087
|
include Aws::Structure
|
1050
1088
|
end
|
1051
1089
|
|
@@ -1092,6 +1130,7 @@ module Aws::ApplicationDiscoveryService
|
|
1092
1130
|
:name,
|
1093
1131
|
:values,
|
1094
1132
|
:condition)
|
1133
|
+
SENSITIVE = []
|
1095
1134
|
include Aws::Structure
|
1096
1135
|
end
|
1097
1136
|
|
@@ -1131,6 +1170,7 @@ module Aws::ApplicationDiscoveryService
|
|
1131
1170
|
:servers_mappedto_tags,
|
1132
1171
|
:agent_summary,
|
1133
1172
|
:connector_summary)
|
1173
|
+
SENSITIVE = []
|
1134
1174
|
include Aws::Structure
|
1135
1175
|
end
|
1136
1176
|
|
@@ -1141,6 +1181,7 @@ module Aws::ApplicationDiscoveryService
|
|
1141
1181
|
#
|
1142
1182
|
class HomeRegionNotSetException < Struct.new(
|
1143
1183
|
:message)
|
1184
|
+
SENSITIVE = []
|
1144
1185
|
include Aws::Structure
|
1145
1186
|
end
|
1146
1187
|
|
@@ -1246,6 +1287,7 @@ module Aws::ApplicationDiscoveryService
|
|
1246
1287
|
:application_import_success,
|
1247
1288
|
:application_import_failure,
|
1248
1289
|
:errors_and_failed_entries_zip)
|
1290
|
+
SENSITIVE = []
|
1249
1291
|
include Aws::Structure
|
1250
1292
|
end
|
1251
1293
|
|
@@ -1278,6 +1320,7 @@ module Aws::ApplicationDiscoveryService
|
|
1278
1320
|
class ImportTaskFilter < Struct.new(
|
1279
1321
|
:name,
|
1280
1322
|
:values)
|
1323
|
+
SENSITIVE = []
|
1281
1324
|
include Aws::Structure
|
1282
1325
|
end
|
1283
1326
|
|
@@ -1289,6 +1332,7 @@ module Aws::ApplicationDiscoveryService
|
|
1289
1332
|
#
|
1290
1333
|
class InvalidParameterException < Struct.new(
|
1291
1334
|
:message)
|
1335
|
+
SENSITIVE = []
|
1292
1336
|
include Aws::Structure
|
1293
1337
|
end
|
1294
1338
|
|
@@ -1300,6 +1344,7 @@ module Aws::ApplicationDiscoveryService
|
|
1300
1344
|
#
|
1301
1345
|
class InvalidParameterValueException < Struct.new(
|
1302
1346
|
:message)
|
1347
|
+
SENSITIVE = []
|
1303
1348
|
include Aws::Structure
|
1304
1349
|
end
|
1305
1350
|
|
@@ -1373,6 +1418,7 @@ module Aws::ApplicationDiscoveryService
|
|
1373
1418
|
:max_results,
|
1374
1419
|
:next_token,
|
1375
1420
|
:order_by)
|
1421
|
+
SENSITIVE = []
|
1376
1422
|
include Aws::Structure
|
1377
1423
|
end
|
1378
1424
|
|
@@ -1392,6 +1438,7 @@ module Aws::ApplicationDiscoveryService
|
|
1392
1438
|
class ListConfigurationsResponse < Struct.new(
|
1393
1439
|
:configurations,
|
1394
1440
|
:next_token)
|
1441
|
+
SENSITIVE = []
|
1395
1442
|
include Aws::Structure
|
1396
1443
|
end
|
1397
1444
|
|
@@ -1438,6 +1485,7 @@ module Aws::ApplicationDiscoveryService
|
|
1438
1485
|
:neighbor_configuration_ids,
|
1439
1486
|
:max_results,
|
1440
1487
|
:next_token)
|
1488
|
+
SENSITIVE = []
|
1441
1489
|
include Aws::Structure
|
1442
1490
|
end
|
1443
1491
|
|
@@ -1464,6 +1512,7 @@ module Aws::ApplicationDiscoveryService
|
|
1464
1512
|
:neighbors,
|
1465
1513
|
:next_token,
|
1466
1514
|
:known_dependency_count)
|
1515
|
+
SENSITIVE = []
|
1467
1516
|
include Aws::Structure
|
1468
1517
|
end
|
1469
1518
|
|
@@ -1495,6 +1544,7 @@ module Aws::ApplicationDiscoveryService
|
|
1495
1544
|
:destination_port,
|
1496
1545
|
:transport_protocol,
|
1497
1546
|
:connections_count)
|
1547
|
+
SENSITIVE = []
|
1498
1548
|
include Aws::Structure
|
1499
1549
|
end
|
1500
1550
|
|
@@ -1505,6 +1555,7 @@ module Aws::ApplicationDiscoveryService
|
|
1505
1555
|
#
|
1506
1556
|
class OperationNotPermittedException < Struct.new(
|
1507
1557
|
:message)
|
1558
|
+
SENSITIVE = []
|
1508
1559
|
include Aws::Structure
|
1509
1560
|
end
|
1510
1561
|
|
@@ -1529,6 +1580,7 @@ module Aws::ApplicationDiscoveryService
|
|
1529
1580
|
class OrderByElement < Struct.new(
|
1530
1581
|
:field_name,
|
1531
1582
|
:sort_order)
|
1583
|
+
SENSITIVE = []
|
1532
1584
|
include Aws::Structure
|
1533
1585
|
end
|
1534
1586
|
|
@@ -1543,6 +1595,7 @@ module Aws::ApplicationDiscoveryService
|
|
1543
1595
|
#
|
1544
1596
|
class ResourceInUseException < Struct.new(
|
1545
1597
|
:message)
|
1598
|
+
SENSITIVE = []
|
1546
1599
|
include Aws::Structure
|
1547
1600
|
end
|
1548
1601
|
|
@@ -1554,6 +1607,7 @@ module Aws::ApplicationDiscoveryService
|
|
1554
1607
|
#
|
1555
1608
|
class ResourceNotFoundException < Struct.new(
|
1556
1609
|
:message)
|
1610
|
+
SENSITIVE = []
|
1557
1611
|
include Aws::Structure
|
1558
1612
|
end
|
1559
1613
|
|
@@ -1564,6 +1618,7 @@ module Aws::ApplicationDiscoveryService
|
|
1564
1618
|
#
|
1565
1619
|
class ServerInternalErrorException < Struct.new(
|
1566
1620
|
:message)
|
1621
|
+
SENSITIVE = []
|
1567
1622
|
include Aws::Structure
|
1568
1623
|
end
|
1569
1624
|
|
@@ -1604,6 +1659,7 @@ module Aws::ApplicationDiscoveryService
|
|
1604
1659
|
:start_time,
|
1605
1660
|
:data_source,
|
1606
1661
|
:schema_storage_config)
|
1662
|
+
SENSITIVE = []
|
1607
1663
|
include Aws::Structure
|
1608
1664
|
end
|
1609
1665
|
|
@@ -1627,6 +1683,7 @@ module Aws::ApplicationDiscoveryService
|
|
1627
1683
|
#
|
1628
1684
|
class StartDataCollectionByAgentIdsRequest < Struct.new(
|
1629
1685
|
:agent_ids)
|
1686
|
+
SENSITIVE = []
|
1630
1687
|
include Aws::Structure
|
1631
1688
|
end
|
1632
1689
|
|
@@ -1639,6 +1696,7 @@ module Aws::ApplicationDiscoveryService
|
|
1639
1696
|
#
|
1640
1697
|
class StartDataCollectionByAgentIdsResponse < Struct.new(
|
1641
1698
|
:agents_configuration_status)
|
1699
|
+
SENSITIVE = []
|
1642
1700
|
include Aws::Structure
|
1643
1701
|
end
|
1644
1702
|
|
@@ -1690,6 +1748,7 @@ module Aws::ApplicationDiscoveryService
|
|
1690
1748
|
:filters,
|
1691
1749
|
:start_time,
|
1692
1750
|
:end_time)
|
1751
|
+
SENSITIVE = []
|
1693
1752
|
include Aws::Structure
|
1694
1753
|
end
|
1695
1754
|
|
@@ -1699,6 +1758,7 @@ module Aws::ApplicationDiscoveryService
|
|
1699
1758
|
#
|
1700
1759
|
class StartExportTaskResponse < Struct.new(
|
1701
1760
|
:export_id)
|
1761
|
+
SENSITIVE = []
|
1702
1762
|
include Aws::Structure
|
1703
1763
|
end
|
1704
1764
|
|
@@ -1744,6 +1804,7 @@ module Aws::ApplicationDiscoveryService
|
|
1744
1804
|
:client_request_token,
|
1745
1805
|
:name,
|
1746
1806
|
:import_url)
|
1807
|
+
SENSITIVE = []
|
1747
1808
|
include Aws::Structure
|
1748
1809
|
end
|
1749
1810
|
|
@@ -1755,6 +1816,7 @@ module Aws::ApplicationDiscoveryService
|
|
1755
1816
|
#
|
1756
1817
|
class StartImportTaskResponse < Struct.new(
|
1757
1818
|
:task)
|
1819
|
+
SENSITIVE = []
|
1758
1820
|
include Aws::Structure
|
1759
1821
|
end
|
1760
1822
|
|
@@ -1771,6 +1833,7 @@ module Aws::ApplicationDiscoveryService
|
|
1771
1833
|
#
|
1772
1834
|
class StopContinuousExportRequest < Struct.new(
|
1773
1835
|
:export_id)
|
1836
|
+
SENSITIVE = []
|
1774
1837
|
include Aws::Structure
|
1775
1838
|
end
|
1776
1839
|
|
@@ -1786,6 +1849,7 @@ module Aws::ApplicationDiscoveryService
|
|
1786
1849
|
class StopContinuousExportResponse < Struct.new(
|
1787
1850
|
:start_time,
|
1788
1851
|
:stop_time)
|
1852
|
+
SENSITIVE = []
|
1789
1853
|
include Aws::Structure
|
1790
1854
|
end
|
1791
1855
|
|
@@ -1803,6 +1867,7 @@ module Aws::ApplicationDiscoveryService
|
|
1803
1867
|
#
|
1804
1868
|
class StopDataCollectionByAgentIdsRequest < Struct.new(
|
1805
1869
|
:agent_ids)
|
1870
|
+
SENSITIVE = []
|
1806
1871
|
include Aws::Structure
|
1807
1872
|
end
|
1808
1873
|
|
@@ -1815,6 +1880,7 @@ module Aws::ApplicationDiscoveryService
|
|
1815
1880
|
#
|
1816
1881
|
class StopDataCollectionByAgentIdsResponse < Struct.new(
|
1817
1882
|
:agents_configuration_status)
|
1883
|
+
SENSITIVE = []
|
1818
1884
|
include Aws::Structure
|
1819
1885
|
end
|
1820
1886
|
|
@@ -1839,6 +1905,7 @@ module Aws::ApplicationDiscoveryService
|
|
1839
1905
|
class Tag < Struct.new(
|
1840
1906
|
:key,
|
1841
1907
|
:value)
|
1908
|
+
SENSITIVE = []
|
1842
1909
|
include Aws::Structure
|
1843
1910
|
end
|
1844
1911
|
|
@@ -1864,6 +1931,7 @@ module Aws::ApplicationDiscoveryService
|
|
1864
1931
|
class TagFilter < Struct.new(
|
1865
1932
|
:name,
|
1866
1933
|
:values)
|
1934
|
+
SENSITIVE = []
|
1867
1935
|
include Aws::Structure
|
1868
1936
|
end
|
1869
1937
|
|
@@ -1892,6 +1960,7 @@ module Aws::ApplicationDiscoveryService
|
|
1892
1960
|
:configuration_id,
|
1893
1961
|
:name,
|
1894
1962
|
:description)
|
1963
|
+
SENSITIVE = []
|
1895
1964
|
include Aws::Structure
|
1896
1965
|
end
|
1897
1966
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-applicationdiscoveryservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.29.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-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 Application Discovery Service
|