aws-sdk-applicationdiscoveryservice 1.60.0 → 1.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-applicationdiscoveryservice/client.rb +1 -1
- data/lib/aws-sdk-applicationdiscoveryservice/plugins/endpoints.rb +4 -2
- data/lib/aws-sdk-applicationdiscoveryservice.rb +1 -1
- data/sig/client.rbs +480 -0
- data/sig/errors.rbs +46 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +628 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 109994df3629f168c97c0dce68274702c8d58af860553ca069f444469d0c695f
|
4
|
+
data.tar.gz: 14f21a9544fc802de52628f763367ddf98ac1b250aabd7fcf85d84ef3c2a3b3c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d9eb6a660534dc76bd6383b19c3bd1f9e28a71fc31cb7191ba8e3ee957a282e9091afa5b6b93273fdfe07817cfa16de33cd67b857fe70ec269f86c5dbf8c5c0
|
7
|
+
data.tar.gz: 729bc464f1b32b4dd47054648b80e782c8b2b6f4b095e6b490c95aec85e9f0bb6f53741dc7ae4cac055b92d4583d3c6e079e08969ee59b5a63e59860660d48d6
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.62.0 (2024-01-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.61.0 (2023-11-28)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.60.0 (2023-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.62.0
|
@@ -1751,7 +1751,7 @@ module Aws::ApplicationDiscoveryService
|
|
1751
1751
|
params: params,
|
1752
1752
|
config: config)
|
1753
1753
|
context[:gem_name] = 'aws-sdk-applicationdiscoveryservice'
|
1754
|
-
context[:gem_version] = '1.
|
1754
|
+
context[:gem_version] = '1.62.0'
|
1755
1755
|
Seahorse::Client::Request.new(handlers, context)
|
1756
1756
|
end
|
1757
1757
|
|
@@ -14,6 +14,7 @@ module Aws::ApplicationDiscoveryService
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::ApplicationDiscoveryService::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
@@ -25,16 +26,17 @@ module Aws::ApplicationDiscoveryService
|
|
25
26
|
# @api private
|
26
27
|
class Handler < Seahorse::Client::Handler
|
27
28
|
def call(context)
|
28
|
-
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
29
|
unless context[:discovered_endpoint]
|
30
30
|
params = parameters_for_operation(context)
|
31
31
|
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
32
|
|
33
33
|
context.http_request.endpoint = endpoint.url
|
34
34
|
apply_endpoint_headers(context, endpoint.headers)
|
35
|
+
|
36
|
+
context[:endpoint_params] = params
|
37
|
+
context[:endpoint_properties] = endpoint.properties
|
35
38
|
end
|
36
39
|
|
37
|
-
context[:endpoint_params] = params
|
38
40
|
context[:auth_scheme] =
|
39
41
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
42
|
|
data/sig/client.rbs
ADDED
@@ -0,0 +1,480 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ApplicationDiscoveryService
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> instance
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
74
|
+
|
75
|
+
|
76
|
+
interface _AssociateConfigurationItemsToApplicationResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateConfigurationItemsToApplicationResponse]
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#associate_configuration_items_to_application-instance_method
|
80
|
+
def associate_configuration_items_to_application: (
|
81
|
+
application_configuration_id: ::String,
|
82
|
+
configuration_ids: Array[::String]
|
83
|
+
) -> _AssociateConfigurationItemsToApplicationResponseSuccess
|
84
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateConfigurationItemsToApplicationResponseSuccess
|
85
|
+
|
86
|
+
interface _BatchDeleteAgentsResponseSuccess
|
87
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteAgentsResponse]
|
88
|
+
def errors: () -> ::Array[Types::BatchDeleteAgentError]
|
89
|
+
end
|
90
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#batch_delete_agents-instance_method
|
91
|
+
def batch_delete_agents: (
|
92
|
+
delete_agents: Array[
|
93
|
+
{
|
94
|
+
agent_id: ::String,
|
95
|
+
force: bool?
|
96
|
+
},
|
97
|
+
]
|
98
|
+
) -> _BatchDeleteAgentsResponseSuccess
|
99
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteAgentsResponseSuccess
|
100
|
+
|
101
|
+
interface _BatchDeleteImportDataResponseSuccess
|
102
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::BatchDeleteImportDataResponse]
|
103
|
+
def errors: () -> ::Array[Types::BatchDeleteImportDataError]
|
104
|
+
end
|
105
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#batch_delete_import_data-instance_method
|
106
|
+
def batch_delete_import_data: (
|
107
|
+
import_task_ids: Array[::String],
|
108
|
+
?delete_history: bool
|
109
|
+
) -> _BatchDeleteImportDataResponseSuccess
|
110
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchDeleteImportDataResponseSuccess
|
111
|
+
|
112
|
+
interface _CreateApplicationResponseSuccess
|
113
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateApplicationResponse]
|
114
|
+
def configuration_id: () -> ::String
|
115
|
+
end
|
116
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#create_application-instance_method
|
117
|
+
def create_application: (
|
118
|
+
name: ::String,
|
119
|
+
?description: ::String
|
120
|
+
) -> _CreateApplicationResponseSuccess
|
121
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
|
122
|
+
|
123
|
+
interface _CreateTagsResponseSuccess
|
124
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateTagsResponse]
|
125
|
+
end
|
126
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#create_tags-instance_method
|
127
|
+
def create_tags: (
|
128
|
+
configuration_ids: Array[::String],
|
129
|
+
tags: Array[
|
130
|
+
{
|
131
|
+
key: ::String,
|
132
|
+
value: ::String
|
133
|
+
},
|
134
|
+
]
|
135
|
+
) -> _CreateTagsResponseSuccess
|
136
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTagsResponseSuccess
|
137
|
+
|
138
|
+
interface _DeleteApplicationsResponseSuccess
|
139
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteApplicationsResponse]
|
140
|
+
end
|
141
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#delete_applications-instance_method
|
142
|
+
def delete_applications: (
|
143
|
+
configuration_ids: Array[::String]
|
144
|
+
) -> _DeleteApplicationsResponseSuccess
|
145
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationsResponseSuccess
|
146
|
+
|
147
|
+
interface _DeleteTagsResponseSuccess
|
148
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTagsResponse]
|
149
|
+
end
|
150
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#delete_tags-instance_method
|
151
|
+
def delete_tags: (
|
152
|
+
configuration_ids: Array[::String],
|
153
|
+
?tags: Array[
|
154
|
+
{
|
155
|
+
key: ::String,
|
156
|
+
value: ::String
|
157
|
+
},
|
158
|
+
]
|
159
|
+
) -> _DeleteTagsResponseSuccess
|
160
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTagsResponseSuccess
|
161
|
+
|
162
|
+
interface _DescribeAgentsResponseSuccess
|
163
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAgentsResponse]
|
164
|
+
def agents_info: () -> ::Array[Types::AgentInfo]
|
165
|
+
def next_token: () -> ::String
|
166
|
+
end
|
167
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#describe_agents-instance_method
|
168
|
+
def describe_agents: (
|
169
|
+
?agent_ids: Array[::String],
|
170
|
+
?filters: Array[
|
171
|
+
{
|
172
|
+
name: ::String,
|
173
|
+
values: Array[::String],
|
174
|
+
condition: ::String
|
175
|
+
},
|
176
|
+
],
|
177
|
+
?max_results: ::Integer,
|
178
|
+
?next_token: ::String
|
179
|
+
) -> _DescribeAgentsResponseSuccess
|
180
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAgentsResponseSuccess
|
181
|
+
|
182
|
+
interface _DescribeBatchDeleteConfigurationTaskResponseSuccess
|
183
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeBatchDeleteConfigurationTaskResponse]
|
184
|
+
def task: () -> Types::BatchDeleteConfigurationTask
|
185
|
+
end
|
186
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#describe_batch_delete_configuration_task-instance_method
|
187
|
+
def describe_batch_delete_configuration_task: (
|
188
|
+
task_id: ::String
|
189
|
+
) -> _DescribeBatchDeleteConfigurationTaskResponseSuccess
|
190
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeBatchDeleteConfigurationTaskResponseSuccess
|
191
|
+
|
192
|
+
interface _DescribeConfigurationsResponseSuccess
|
193
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConfigurationsResponse]
|
194
|
+
def configurations: () -> ::Array[::Hash[::String, ::String]]
|
195
|
+
end
|
196
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#describe_configurations-instance_method
|
197
|
+
def describe_configurations: (
|
198
|
+
configuration_ids: Array[::String]
|
199
|
+
) -> _DescribeConfigurationsResponseSuccess
|
200
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConfigurationsResponseSuccess
|
201
|
+
|
202
|
+
interface _DescribeContinuousExportsResponseSuccess
|
203
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeContinuousExportsResponse]
|
204
|
+
def descriptions: () -> ::Array[Types::ContinuousExportDescription]
|
205
|
+
def next_token: () -> ::String
|
206
|
+
end
|
207
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#describe_continuous_exports-instance_method
|
208
|
+
def describe_continuous_exports: (
|
209
|
+
?export_ids: Array[::String],
|
210
|
+
?max_results: ::Integer,
|
211
|
+
?next_token: ::String
|
212
|
+
) -> _DescribeContinuousExportsResponseSuccess
|
213
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContinuousExportsResponseSuccess
|
214
|
+
|
215
|
+
interface _DescribeExportConfigurationsResponseSuccess
|
216
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeExportConfigurationsResponse]
|
217
|
+
def exports_info: () -> ::Array[Types::ExportInfo]
|
218
|
+
def next_token: () -> ::String
|
219
|
+
end
|
220
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#describe_export_configurations-instance_method
|
221
|
+
def describe_export_configurations: (
|
222
|
+
?export_ids: Array[::String],
|
223
|
+
?max_results: ::Integer,
|
224
|
+
?next_token: ::String
|
225
|
+
) -> _DescribeExportConfigurationsResponseSuccess
|
226
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeExportConfigurationsResponseSuccess
|
227
|
+
|
228
|
+
interface _DescribeExportTasksResponseSuccess
|
229
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeExportTasksResponse]
|
230
|
+
def exports_info: () -> ::Array[Types::ExportInfo]
|
231
|
+
def next_token: () -> ::String
|
232
|
+
end
|
233
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#describe_export_tasks-instance_method
|
234
|
+
def describe_export_tasks: (
|
235
|
+
?export_ids: Array[::String],
|
236
|
+
?filters: Array[
|
237
|
+
{
|
238
|
+
name: ::String,
|
239
|
+
values: Array[::String],
|
240
|
+
condition: ::String
|
241
|
+
},
|
242
|
+
],
|
243
|
+
?max_results: ::Integer,
|
244
|
+
?next_token: ::String
|
245
|
+
) -> _DescribeExportTasksResponseSuccess
|
246
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeExportTasksResponseSuccess
|
247
|
+
|
248
|
+
interface _DescribeImportTasksResponseSuccess
|
249
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeImportTasksResponse]
|
250
|
+
def next_token: () -> ::String
|
251
|
+
def tasks: () -> ::Array[Types::ImportTask]
|
252
|
+
end
|
253
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#describe_import_tasks-instance_method
|
254
|
+
def describe_import_tasks: (
|
255
|
+
?filters: Array[
|
256
|
+
{
|
257
|
+
name: ("IMPORT_TASK_ID" | "STATUS" | "NAME")?,
|
258
|
+
values: Array[::String]?
|
259
|
+
},
|
260
|
+
],
|
261
|
+
?max_results: ::Integer,
|
262
|
+
?next_token: ::String
|
263
|
+
) -> _DescribeImportTasksResponseSuccess
|
264
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeImportTasksResponseSuccess
|
265
|
+
|
266
|
+
interface _DescribeTagsResponseSuccess
|
267
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeTagsResponse]
|
268
|
+
def tags: () -> ::Array[Types::ConfigurationTag]
|
269
|
+
def next_token: () -> ::String
|
270
|
+
end
|
271
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#describe_tags-instance_method
|
272
|
+
def describe_tags: (
|
273
|
+
?filters: Array[
|
274
|
+
{
|
275
|
+
name: ::String,
|
276
|
+
values: Array[::String]
|
277
|
+
},
|
278
|
+
],
|
279
|
+
?max_results: ::Integer,
|
280
|
+
?next_token: ::String
|
281
|
+
) -> _DescribeTagsResponseSuccess
|
282
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTagsResponseSuccess
|
283
|
+
|
284
|
+
interface _DisassociateConfigurationItemsFromApplicationResponseSuccess
|
285
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateConfigurationItemsFromApplicationResponse]
|
286
|
+
end
|
287
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#disassociate_configuration_items_from_application-instance_method
|
288
|
+
def disassociate_configuration_items_from_application: (
|
289
|
+
application_configuration_id: ::String,
|
290
|
+
configuration_ids: Array[::String]
|
291
|
+
) -> _DisassociateConfigurationItemsFromApplicationResponseSuccess
|
292
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateConfigurationItemsFromApplicationResponseSuccess
|
293
|
+
|
294
|
+
interface _ExportConfigurationsResponseSuccess
|
295
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ExportConfigurationsResponse]
|
296
|
+
def export_id: () -> ::String
|
297
|
+
end
|
298
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#export_configurations-instance_method
|
299
|
+
def export_configurations: () -> _ExportConfigurationsResponseSuccess
|
300
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportConfigurationsResponseSuccess
|
301
|
+
|
302
|
+
interface _GetDiscoverySummaryResponseSuccess
|
303
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDiscoverySummaryResponse]
|
304
|
+
def servers: () -> ::Integer
|
305
|
+
def applications: () -> ::Integer
|
306
|
+
def servers_mapped_to_applications: () -> ::Integer
|
307
|
+
def servers_mappedto_tags: () -> ::Integer
|
308
|
+
def agent_summary: () -> Types::CustomerAgentInfo
|
309
|
+
def connector_summary: () -> Types::CustomerConnectorInfo
|
310
|
+
def me_collector_summary: () -> Types::CustomerMeCollectorInfo
|
311
|
+
def agentless_collector_summary: () -> Types::CustomerAgentlessCollectorInfo
|
312
|
+
end
|
313
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#get_discovery_summary-instance_method
|
314
|
+
def get_discovery_summary: (
|
315
|
+
) -> _GetDiscoverySummaryResponseSuccess
|
316
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDiscoverySummaryResponseSuccess
|
317
|
+
|
318
|
+
interface _ListConfigurationsResponseSuccess
|
319
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationsResponse]
|
320
|
+
def configurations: () -> ::Array[::Hash[::String, ::String]]
|
321
|
+
def next_token: () -> ::String
|
322
|
+
end
|
323
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#list_configurations-instance_method
|
324
|
+
def list_configurations: (
|
325
|
+
configuration_type: ("SERVER" | "PROCESS" | "CONNECTION" | "APPLICATION"),
|
326
|
+
?filters: Array[
|
327
|
+
{
|
328
|
+
name: ::String,
|
329
|
+
values: Array[::String],
|
330
|
+
condition: ::String
|
331
|
+
},
|
332
|
+
],
|
333
|
+
?max_results: ::Integer,
|
334
|
+
?next_token: ::String,
|
335
|
+
?order_by: Array[
|
336
|
+
{
|
337
|
+
field_name: ::String,
|
338
|
+
sort_order: ("ASC" | "DESC")?
|
339
|
+
},
|
340
|
+
]
|
341
|
+
) -> _ListConfigurationsResponseSuccess
|
342
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationsResponseSuccess
|
343
|
+
|
344
|
+
interface _ListServerNeighborsResponseSuccess
|
345
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListServerNeighborsResponse]
|
346
|
+
def neighbors: () -> ::Array[Types::NeighborConnectionDetail]
|
347
|
+
def next_token: () -> ::String
|
348
|
+
def known_dependency_count: () -> ::Integer
|
349
|
+
end
|
350
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#list_server_neighbors-instance_method
|
351
|
+
def list_server_neighbors: (
|
352
|
+
configuration_id: ::String,
|
353
|
+
?port_information_needed: bool,
|
354
|
+
?neighbor_configuration_ids: Array[::String],
|
355
|
+
?max_results: ::Integer,
|
356
|
+
?next_token: ::String
|
357
|
+
) -> _ListServerNeighborsResponseSuccess
|
358
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListServerNeighborsResponseSuccess
|
359
|
+
|
360
|
+
interface _StartBatchDeleteConfigurationTaskResponseSuccess
|
361
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartBatchDeleteConfigurationTaskResponse]
|
362
|
+
def task_id: () -> ::String
|
363
|
+
end
|
364
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#start_batch_delete_configuration_task-instance_method
|
365
|
+
def start_batch_delete_configuration_task: (
|
366
|
+
configuration_type: ("SERVER"),
|
367
|
+
configuration_ids: Array[::String]
|
368
|
+
) -> _StartBatchDeleteConfigurationTaskResponseSuccess
|
369
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartBatchDeleteConfigurationTaskResponseSuccess
|
370
|
+
|
371
|
+
interface _StartContinuousExportResponseSuccess
|
372
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartContinuousExportResponse]
|
373
|
+
def export_id: () -> ::String
|
374
|
+
def s3_bucket: () -> ::String
|
375
|
+
def start_time: () -> ::Time
|
376
|
+
def data_source: () -> ("AGENT")
|
377
|
+
def schema_storage_config: () -> ::Hash[::String, ::String]
|
378
|
+
end
|
379
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#start_continuous_export-instance_method
|
380
|
+
def start_continuous_export: (
|
381
|
+
) -> _StartContinuousExportResponseSuccess
|
382
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartContinuousExportResponseSuccess
|
383
|
+
|
384
|
+
interface _StartDataCollectionByAgentIdsResponseSuccess
|
385
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartDataCollectionByAgentIdsResponse]
|
386
|
+
def agents_configuration_status: () -> ::Array[Types::AgentConfigurationStatus]
|
387
|
+
end
|
388
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#start_data_collection_by_agent_ids-instance_method
|
389
|
+
def start_data_collection_by_agent_ids: (
|
390
|
+
agent_ids: Array[::String]
|
391
|
+
) -> _StartDataCollectionByAgentIdsResponseSuccess
|
392
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDataCollectionByAgentIdsResponseSuccess
|
393
|
+
|
394
|
+
interface _StartExportTaskResponseSuccess
|
395
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartExportTaskResponse]
|
396
|
+
def export_id: () -> ::String
|
397
|
+
end
|
398
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#start_export_task-instance_method
|
399
|
+
def start_export_task: (
|
400
|
+
?export_data_format: Array[("CSV")],
|
401
|
+
?filters: Array[
|
402
|
+
{
|
403
|
+
name: ::String,
|
404
|
+
values: Array[::String],
|
405
|
+
condition: ::String
|
406
|
+
},
|
407
|
+
],
|
408
|
+
?start_time: ::Time,
|
409
|
+
?end_time: ::Time,
|
410
|
+
?preferences: {
|
411
|
+
ec2_recommendations_preferences: {
|
412
|
+
enabled: bool?,
|
413
|
+
cpu_performance_metric_basis: {
|
414
|
+
name: ::String?,
|
415
|
+
percentage_adjust: ::Float?
|
416
|
+
}?,
|
417
|
+
ram_performance_metric_basis: {
|
418
|
+
name: ::String?,
|
419
|
+
percentage_adjust: ::Float?
|
420
|
+
}?,
|
421
|
+
tenancy: ("DEDICATED" | "SHARED")?,
|
422
|
+
excluded_instance_types: Array[::String]?,
|
423
|
+
preferred_region: ::String?,
|
424
|
+
reserved_instance_options: {
|
425
|
+
purchasing_option: ("ALL_UPFRONT" | "PARTIAL_UPFRONT" | "NO_UPFRONT"),
|
426
|
+
offering_class: ("STANDARD" | "CONVERTIBLE"),
|
427
|
+
term_length: ("ONE_YEAR" | "THREE_YEAR")
|
428
|
+
}?
|
429
|
+
}?
|
430
|
+
}
|
431
|
+
) -> _StartExportTaskResponseSuccess
|
432
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartExportTaskResponseSuccess
|
433
|
+
|
434
|
+
interface _StartImportTaskResponseSuccess
|
435
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartImportTaskResponse]
|
436
|
+
def task: () -> Types::ImportTask
|
437
|
+
end
|
438
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#start_import_task-instance_method
|
439
|
+
def start_import_task: (
|
440
|
+
?client_request_token: ::String,
|
441
|
+
name: ::String,
|
442
|
+
import_url: ::String
|
443
|
+
) -> _StartImportTaskResponseSuccess
|
444
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartImportTaskResponseSuccess
|
445
|
+
|
446
|
+
interface _StopContinuousExportResponseSuccess
|
447
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopContinuousExportResponse]
|
448
|
+
def start_time: () -> ::Time
|
449
|
+
def stop_time: () -> ::Time
|
450
|
+
end
|
451
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#stop_continuous_export-instance_method
|
452
|
+
def stop_continuous_export: (
|
453
|
+
export_id: ::String
|
454
|
+
) -> _StopContinuousExportResponseSuccess
|
455
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopContinuousExportResponseSuccess
|
456
|
+
|
457
|
+
interface _StopDataCollectionByAgentIdsResponseSuccess
|
458
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StopDataCollectionByAgentIdsResponse]
|
459
|
+
def agents_configuration_status: () -> ::Array[Types::AgentConfigurationStatus]
|
460
|
+
end
|
461
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#stop_data_collection_by_agent_ids-instance_method
|
462
|
+
def stop_data_collection_by_agent_ids: (
|
463
|
+
agent_ids: Array[::String]
|
464
|
+
) -> _StopDataCollectionByAgentIdsResponseSuccess
|
465
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDataCollectionByAgentIdsResponseSuccess
|
466
|
+
|
467
|
+
interface _UpdateApplicationResponseSuccess
|
468
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateApplicationResponse]
|
469
|
+
end
|
470
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ApplicationDiscoveryService/Client.html#update_application-instance_method
|
471
|
+
def update_application: (
|
472
|
+
configuration_id: ::String,
|
473
|
+
?name: ::String,
|
474
|
+
?description: ::String
|
475
|
+
) -> _UpdateApplicationResponseSuccess
|
476
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
|
477
|
+
end
|
478
|
+
end
|
479
|
+
end
|
480
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module ApplicationDiscoveryService
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AuthorizationErrorException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class ConflictErrorException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class HomeRegionNotSetException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class InvalidParameterException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class InvalidParameterValueException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class LimitExceededException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class OperationNotPermittedException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class ResourceInUseException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
end
|
41
|
+
class ServerInternalErrorException < ::Aws::Errors::ServiceError
|
42
|
+
def message: () -> ::String
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|