aws-sdk-resourceexplorer2 1.14.0 → 1.16.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 525228daf5ff83cdf99c257e023970823dadb16678b9a4cb7ea53c7de940d0e3
4
- data.tar.gz: 38539f1aa219194e59713be571b84507624162f4bd00a2657b17400dd4643853
3
+ metadata.gz: 3ba413ad30f88ed9f55e4cb00f9a00599bd06b33dd0121cf99adcf10443b3e88
4
+ data.tar.gz: 167baf338ff2801261a2dbbe16a385b266421a46ae242abfd60c64698f0d3a1c
5
5
  SHA512:
6
- metadata.gz: cf4b1bdbbc637db0a934591d86c7b680b95d80594570b137c4332e73ff8362cd474e1d5ba46c1764d8c57124a08a461c8591753763a27f86063e146d039152f1
7
- data.tar.gz: 7dabf5fba7df7ebb60ae72be1ab9d45ed68f1687862216050f86eeb969aa322688cea611196decb7c7d5e4dd8122b89fdfaa2b5893e0280a592ef52dd031a0f3
6
+ metadata.gz: edb3cd49ce1370b23c0248bccec58d4c67ea5a4a7799682b3b815ab12dfc5ee1874171a8ca32fd3ea895ccb159a7f1f16740127e749bd9260c6f3b00c3172cf8
7
+ data.tar.gz: ed80e08ff681b952c537571afbc51feacd7745eef028a7f21b5eb9a6a92cbfa1a35e0b2ad5b80ded3fe7d7d8c060da9f0de575193d41e18fcb658c7452d8f128
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.16.0 (2024-02-13)
5
+ ------------------
6
+
7
+ * Feature - Resource Explorer now uses newly supported IPv4 'amazonaws.com' endpoints by default.
8
+
9
+ 1.15.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.14.0 (2023-11-28)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.14.0
1
+ 1.16.0
@@ -1611,7 +1611,7 @@ module Aws::ResourceExplorer2
1611
1611
  params: params,
1612
1612
  config: config)
1613
1613
  context[:gem_name] = 'aws-sdk-resourceexplorer2'
1614
- context[:gem_version] = '1.14.0'
1614
+ context[:gem_version] = '1.16.0'
1615
1615
  Seahorse::Client::Request.new(handlers, context)
1616
1616
  end
1617
1617
 
@@ -15,6 +15,11 @@ module Aws::ResourceExplorer2
15
15
  #
16
16
  # @return [String]
17
17
  #
18
+ # @!attribute use_dual_stack
19
+ # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
+ #
21
+ # @return [Boolean]
22
+ #
18
23
  # @!attribute use_fips
19
24
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
20
25
  #
@@ -27,6 +32,7 @@ module Aws::ResourceExplorer2
27
32
  #
28
33
  EndpointParameters = Struct.new(
29
34
  :region,
35
+ :use_dual_stack,
30
36
  :use_fips,
31
37
  :endpoint,
32
38
  ) do
@@ -36,6 +42,7 @@ module Aws::ResourceExplorer2
36
42
  class << self
37
43
  PARAM_MAP = {
38
44
  'Region' => :region,
45
+ 'UseDualStack' => :use_dual_stack,
39
46
  'UseFIPS' => :use_fips,
40
47
  'Endpoint' => :endpoint,
41
48
  }.freeze
@@ -43,6 +50,11 @@ module Aws::ResourceExplorer2
43
50
 
44
51
  def initialize(options = {})
45
52
  self[:region] = options[:region]
53
+ self[:use_dual_stack] = options[:use_dual_stack]
54
+ self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
+ if self[:use_dual_stack].nil?
56
+ raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
57
+ end
46
58
  self[:use_fips] = options[:use_fips]
47
59
  self[:use_fips] = false if self[:use_fips].nil?
48
60
  if self[:use_fips].nil?
@@ -11,24 +11,25 @@ module Aws::ResourceExplorer2
11
11
  class EndpointProvider
12
12
  def resolve_endpoint(parameters)
13
13
  region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
14
15
  use_fips = parameters.use_fips
15
16
  endpoint = parameters.endpoint
16
17
  if Aws::Endpoints::Matchers.set?(endpoint)
17
18
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
18
19
  raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
19
20
  end
21
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
20
24
  return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
21
25
  end
22
26
  if Aws::Endpoints::Matchers.set?(region)
23
27
  if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
24
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
25
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
26
- if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
27
- return Aws::Endpoints::Endpoint.new(url: "https://resource-explorer-2-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
28
- end
29
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://resource-explorer-2-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
31
  end
31
- return Aws::Endpoints::Endpoint.new(url: "https://resource-explorer-2.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
33
  end
33
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
35
  if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
@@ -36,6 +37,12 @@ module Aws::ResourceExplorer2
36
37
  end
37
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
39
  end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://resource-explorer-2.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
45
+ end
39
46
  return Aws::Endpoints::Endpoint.new(url: "https://resource-explorer-2.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
40
47
  end
41
48
  end
@@ -19,6 +19,7 @@ module Aws::ResourceExplorer2
19
19
  end
20
20
  Aws::ResourceExplorer2::EndpointParameters.new(
21
21
  region: context.config.region,
22
+ use_dual_stack: context.config.use_dualstack_endpoint,
22
23
  use_fips: context.config.use_fips_endpoint,
23
24
  endpoint: endpoint,
24
25
  )
@@ -32,6 +33,7 @@ module Aws::ResourceExplorer2
32
33
  end
33
34
  Aws::ResourceExplorer2::EndpointParameters.new(
34
35
  region: context.config.region,
36
+ use_dual_stack: context.config.use_dualstack_endpoint,
35
37
  use_fips: context.config.use_fips_endpoint,
36
38
  endpoint: endpoint,
37
39
  )
@@ -45,6 +47,7 @@ module Aws::ResourceExplorer2
45
47
  end
46
48
  Aws::ResourceExplorer2::EndpointParameters.new(
47
49
  region: context.config.region,
50
+ use_dual_stack: context.config.use_dualstack_endpoint,
48
51
  use_fips: context.config.use_fips_endpoint,
49
52
  endpoint: endpoint,
50
53
  )
@@ -58,6 +61,7 @@ module Aws::ResourceExplorer2
58
61
  end
59
62
  Aws::ResourceExplorer2::EndpointParameters.new(
60
63
  region: context.config.region,
64
+ use_dual_stack: context.config.use_dualstack_endpoint,
61
65
  use_fips: context.config.use_fips_endpoint,
62
66
  endpoint: endpoint,
63
67
  )
@@ -71,6 +75,7 @@ module Aws::ResourceExplorer2
71
75
  end
72
76
  Aws::ResourceExplorer2::EndpointParameters.new(
73
77
  region: context.config.region,
78
+ use_dual_stack: context.config.use_dualstack_endpoint,
74
79
  use_fips: context.config.use_fips_endpoint,
75
80
  endpoint: endpoint,
76
81
  )
@@ -84,6 +89,7 @@ module Aws::ResourceExplorer2
84
89
  end
85
90
  Aws::ResourceExplorer2::EndpointParameters.new(
86
91
  region: context.config.region,
92
+ use_dual_stack: context.config.use_dualstack_endpoint,
87
93
  use_fips: context.config.use_fips_endpoint,
88
94
  endpoint: endpoint,
89
95
  )
@@ -97,6 +103,7 @@ module Aws::ResourceExplorer2
97
103
  end
98
104
  Aws::ResourceExplorer2::EndpointParameters.new(
99
105
  region: context.config.region,
106
+ use_dual_stack: context.config.use_dualstack_endpoint,
100
107
  use_fips: context.config.use_fips_endpoint,
101
108
  endpoint: endpoint,
102
109
  )
@@ -110,6 +117,7 @@ module Aws::ResourceExplorer2
110
117
  end
111
118
  Aws::ResourceExplorer2::EndpointParameters.new(
112
119
  region: context.config.region,
120
+ use_dual_stack: context.config.use_dualstack_endpoint,
113
121
  use_fips: context.config.use_fips_endpoint,
114
122
  endpoint: endpoint,
115
123
  )
@@ -123,6 +131,7 @@ module Aws::ResourceExplorer2
123
131
  end
124
132
  Aws::ResourceExplorer2::EndpointParameters.new(
125
133
  region: context.config.region,
134
+ use_dual_stack: context.config.use_dualstack_endpoint,
126
135
  use_fips: context.config.use_fips_endpoint,
127
136
  endpoint: endpoint,
128
137
  )
@@ -136,6 +145,7 @@ module Aws::ResourceExplorer2
136
145
  end
137
146
  Aws::ResourceExplorer2::EndpointParameters.new(
138
147
  region: context.config.region,
148
+ use_dual_stack: context.config.use_dualstack_endpoint,
139
149
  use_fips: context.config.use_fips_endpoint,
140
150
  endpoint: endpoint,
141
151
  )
@@ -149,6 +159,7 @@ module Aws::ResourceExplorer2
149
159
  end
150
160
  Aws::ResourceExplorer2::EndpointParameters.new(
151
161
  region: context.config.region,
162
+ use_dual_stack: context.config.use_dualstack_endpoint,
152
163
  use_fips: context.config.use_fips_endpoint,
153
164
  endpoint: endpoint,
154
165
  )
@@ -162,6 +173,7 @@ module Aws::ResourceExplorer2
162
173
  end
163
174
  Aws::ResourceExplorer2::EndpointParameters.new(
164
175
  region: context.config.region,
176
+ use_dual_stack: context.config.use_dualstack_endpoint,
165
177
  use_fips: context.config.use_fips_endpoint,
166
178
  endpoint: endpoint,
167
179
  )
@@ -175,6 +187,7 @@ module Aws::ResourceExplorer2
175
187
  end
176
188
  Aws::ResourceExplorer2::EndpointParameters.new(
177
189
  region: context.config.region,
190
+ use_dual_stack: context.config.use_dualstack_endpoint,
178
191
  use_fips: context.config.use_fips_endpoint,
179
192
  endpoint: endpoint,
180
193
  )
@@ -188,6 +201,7 @@ module Aws::ResourceExplorer2
188
201
  end
189
202
  Aws::ResourceExplorer2::EndpointParameters.new(
190
203
  region: context.config.region,
204
+ use_dual_stack: context.config.use_dualstack_endpoint,
191
205
  use_fips: context.config.use_fips_endpoint,
192
206
  endpoint: endpoint,
193
207
  )
@@ -201,6 +215,7 @@ module Aws::ResourceExplorer2
201
215
  end
202
216
  Aws::ResourceExplorer2::EndpointParameters.new(
203
217
  region: context.config.region,
218
+ use_dual_stack: context.config.use_dualstack_endpoint,
204
219
  use_fips: context.config.use_fips_endpoint,
205
220
  endpoint: endpoint,
206
221
  )
@@ -214,6 +229,7 @@ module Aws::ResourceExplorer2
214
229
  end
215
230
  Aws::ResourceExplorer2::EndpointParameters.new(
216
231
  region: context.config.region,
232
+ use_dual_stack: context.config.use_dualstack_endpoint,
217
233
  use_fips: context.config.use_fips_endpoint,
218
234
  endpoint: endpoint,
219
235
  )
@@ -227,6 +243,7 @@ module Aws::ResourceExplorer2
227
243
  end
228
244
  Aws::ResourceExplorer2::EndpointParameters.new(
229
245
  region: context.config.region,
246
+ use_dual_stack: context.config.use_dualstack_endpoint,
230
247
  use_fips: context.config.use_fips_endpoint,
231
248
  endpoint: endpoint,
232
249
  )
@@ -240,6 +257,7 @@ module Aws::ResourceExplorer2
240
257
  end
241
258
  Aws::ResourceExplorer2::EndpointParameters.new(
242
259
  region: context.config.region,
260
+ use_dual_stack: context.config.use_dualstack_endpoint,
243
261
  use_fips: context.config.use_fips_endpoint,
244
262
  endpoint: endpoint,
245
263
  )
@@ -253,6 +271,7 @@ module Aws::ResourceExplorer2
253
271
  end
254
272
  Aws::ResourceExplorer2::EndpointParameters.new(
255
273
  region: context.config.region,
274
+ use_dual_stack: context.config.use_dualstack_endpoint,
256
275
  use_fips: context.config.use_fips_endpoint,
257
276
  endpoint: endpoint,
258
277
  )
@@ -266,6 +285,7 @@ module Aws::ResourceExplorer2
266
285
  end
267
286
  Aws::ResourceExplorer2::EndpointParameters.new(
268
287
  region: context.config.region,
288
+ use_dual_stack: context.config.use_dualstack_endpoint,
269
289
  use_fips: context.config.use_fips_endpoint,
270
290
  endpoint: endpoint,
271
291
  )
@@ -279,6 +299,7 @@ module Aws::ResourceExplorer2
279
299
  end
280
300
  Aws::ResourceExplorer2::EndpointParameters.new(
281
301
  region: context.config.region,
302
+ use_dual_stack: context.config.use_dualstack_endpoint,
282
303
  use_fips: context.config.use_fips_endpoint,
283
304
  endpoint: endpoint,
284
305
  )
@@ -14,6 +14,7 @@ module Aws::ResourceExplorer2
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::ResourceExplorer2::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 '\
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-resourceexplorer2/customizations'
52
52
  # @!group service
53
53
  module Aws::ResourceExplorer2
54
54
 
55
- GEM_VERSION = '1.14.0'
55
+ GEM_VERSION = '1.16.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,329 @@
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 ResourceExplorer2
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/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
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _AssociateDefaultViewResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateDefaultViewOutput]
77
+ def view_arn: () -> ::String
78
+ end
79
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#associate_default_view-instance_method
80
+ def associate_default_view: (
81
+ view_arn: ::String
82
+ ) -> _AssociateDefaultViewResponseSuccess
83
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateDefaultViewResponseSuccess
84
+
85
+ interface _BatchGetViewResponseSuccess
86
+ include ::Seahorse::Client::_ResponseSuccess[Types::BatchGetViewOutput]
87
+ def errors: () -> ::Array[Types::BatchGetViewError]
88
+ def views: () -> ::Array[Types::View]
89
+ end
90
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#batch_get_view-instance_method
91
+ def batch_get_view: (
92
+ ?view_arns: Array[::String]
93
+ ) -> _BatchGetViewResponseSuccess
94
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetViewResponseSuccess
95
+
96
+ interface _CreateIndexResponseSuccess
97
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateIndexOutput]
98
+ def arn: () -> ::String
99
+ def created_at: () -> ::Time
100
+ def state: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
101
+ end
102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#create_index-instance_method
103
+ def create_index: (
104
+ ?client_token: ::String,
105
+ ?tags: Hash[::String, ::String]
106
+ ) -> _CreateIndexResponseSuccess
107
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIndexResponseSuccess
108
+
109
+ interface _CreateViewResponseSuccess
110
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateViewOutput]
111
+ def view: () -> Types::View
112
+ end
113
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#create_view-instance_method
114
+ def create_view: (
115
+ ?client_token: ::String,
116
+ ?filters: {
117
+ filter_string: ::String
118
+ },
119
+ ?included_properties: Array[
120
+ {
121
+ name: ::String
122
+ },
123
+ ],
124
+ ?scope: ::String,
125
+ ?tags: Hash[::String, ::String],
126
+ view_name: ::String
127
+ ) -> _CreateViewResponseSuccess
128
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateViewResponseSuccess
129
+
130
+ interface _DeleteIndexResponseSuccess
131
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIndexOutput]
132
+ def arn: () -> ::String
133
+ def last_updated_at: () -> ::Time
134
+ def state: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
135
+ end
136
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#delete_index-instance_method
137
+ def delete_index: (
138
+ arn: ::String
139
+ ) -> _DeleteIndexResponseSuccess
140
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIndexResponseSuccess
141
+
142
+ interface _DeleteViewResponseSuccess
143
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteViewOutput]
144
+ def view_arn: () -> ::String
145
+ end
146
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#delete_view-instance_method
147
+ def delete_view: (
148
+ view_arn: ::String
149
+ ) -> _DeleteViewResponseSuccess
150
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteViewResponseSuccess
151
+
152
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#disassociate_default_view-instance_method
153
+ def disassociate_default_view: () -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
154
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
155
+
156
+ interface _GetAccountLevelServiceConfigurationResponseSuccess
157
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountLevelServiceConfigurationOutput]
158
+ def org_configuration: () -> Types::OrgConfiguration
159
+ end
160
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#get_account_level_service_configuration-instance_method
161
+ def get_account_level_service_configuration: () -> _GetAccountLevelServiceConfigurationResponseSuccess
162
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountLevelServiceConfigurationResponseSuccess
163
+
164
+ interface _GetDefaultViewResponseSuccess
165
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetDefaultViewOutput]
166
+ def view_arn: () -> ::String
167
+ end
168
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#get_default_view-instance_method
169
+ def get_default_view: () -> _GetDefaultViewResponseSuccess
170
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDefaultViewResponseSuccess
171
+
172
+ interface _GetIndexResponseSuccess
173
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetIndexOutput]
174
+ def arn: () -> ::String
175
+ def created_at: () -> ::Time
176
+ def last_updated_at: () -> ::Time
177
+ def replicating_from: () -> ::Array[::String]
178
+ def replicating_to: () -> ::Array[::String]
179
+ def state: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
180
+ def tags: () -> ::Hash[::String, ::String]
181
+ def type: () -> ("LOCAL" | "AGGREGATOR")
182
+ end
183
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#get_index-instance_method
184
+ def get_index: () -> _GetIndexResponseSuccess
185
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIndexResponseSuccess
186
+
187
+ interface _GetViewResponseSuccess
188
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetViewOutput]
189
+ def tags: () -> ::Hash[::String, ::String]
190
+ def view: () -> Types::View
191
+ end
192
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#get_view-instance_method
193
+ def get_view: (
194
+ view_arn: ::String
195
+ ) -> _GetViewResponseSuccess
196
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetViewResponseSuccess
197
+
198
+ interface _ListIndexesResponseSuccess
199
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListIndexesOutput]
200
+ def indexes: () -> ::Array[Types::Index]
201
+ def next_token: () -> ::String
202
+ end
203
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#list_indexes-instance_method
204
+ def list_indexes: (
205
+ ?max_results: ::Integer,
206
+ ?next_token: ::String,
207
+ ?regions: Array[::String],
208
+ ?type: ("LOCAL" | "AGGREGATOR")
209
+ ) -> _ListIndexesResponseSuccess
210
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIndexesResponseSuccess
211
+
212
+ interface _ListIndexesForMembersResponseSuccess
213
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListIndexesForMembersOutput]
214
+ def indexes: () -> ::Array[Types::MemberIndex]
215
+ def next_token: () -> ::String
216
+ end
217
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#list_indexes_for_members-instance_method
218
+ def list_indexes_for_members: (
219
+ account_id_list: Array[::String],
220
+ ?max_results: ::Integer,
221
+ ?next_token: ::String
222
+ ) -> _ListIndexesForMembersResponseSuccess
223
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIndexesForMembersResponseSuccess
224
+
225
+ interface _ListSupportedResourceTypesResponseSuccess
226
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSupportedResourceTypesOutput]
227
+ def next_token: () -> ::String
228
+ def resource_types: () -> ::Array[Types::SupportedResourceType]
229
+ end
230
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#list_supported_resource_types-instance_method
231
+ def list_supported_resource_types: (
232
+ ?max_results: ::Integer,
233
+ ?next_token: ::String
234
+ ) -> _ListSupportedResourceTypesResponseSuccess
235
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSupportedResourceTypesResponseSuccess
236
+
237
+ interface _ListTagsForResourceResponseSuccess
238
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
239
+ def tags: () -> ::Hash[::String, ::String]
240
+ end
241
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#list_tags_for_resource-instance_method
242
+ def list_tags_for_resource: (
243
+ resource_arn: ::String
244
+ ) -> _ListTagsForResourceResponseSuccess
245
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
246
+
247
+ interface _ListViewsResponseSuccess
248
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListViewsOutput]
249
+ def next_token: () -> ::String
250
+ def views: () -> ::Array[::String]
251
+ end
252
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#list_views-instance_method
253
+ def list_views: (
254
+ ?max_results: ::Integer,
255
+ ?next_token: ::String
256
+ ) -> _ListViewsResponseSuccess
257
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListViewsResponseSuccess
258
+
259
+ interface _SearchResponseSuccess
260
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchOutput]
261
+ def count: () -> Types::ResourceCount
262
+ def next_token: () -> ::String
263
+ def resources: () -> ::Array[Types::Resource]
264
+ def view_arn: () -> ::String
265
+ end
266
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#search-instance_method
267
+ def search: (
268
+ ?max_results: ::Integer,
269
+ ?next_token: ::String,
270
+ query_string: ::String,
271
+ ?view_arn: ::String
272
+ ) -> _SearchResponseSuccess
273
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchResponseSuccess
274
+
275
+ interface _TagResourceResponseSuccess
276
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
277
+ end
278
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#tag_resource-instance_method
279
+ def tag_resource: (
280
+ ?tags: Hash[::String, ::String],
281
+ resource_arn: ::String
282
+ ) -> _TagResourceResponseSuccess
283
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
284
+
285
+ interface _UntagResourceResponseSuccess
286
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
287
+ end
288
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#untag_resource-instance_method
289
+ def untag_resource: (
290
+ resource_arn: ::String,
291
+ tag_keys: Array[::String]
292
+ ) -> _UntagResourceResponseSuccess
293
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
294
+
295
+ interface _UpdateIndexTypeResponseSuccess
296
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIndexTypeOutput]
297
+ def arn: () -> ::String
298
+ def last_updated_at: () -> ::Time
299
+ def state: () -> ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
300
+ def type: () -> ("LOCAL" | "AGGREGATOR")
301
+ end
302
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#update_index_type-instance_method
303
+ def update_index_type: (
304
+ arn: ::String,
305
+ type: ("LOCAL" | "AGGREGATOR")
306
+ ) -> _UpdateIndexTypeResponseSuccess
307
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIndexTypeResponseSuccess
308
+
309
+ interface _UpdateViewResponseSuccess
310
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateViewOutput]
311
+ def view: () -> Types::View
312
+ end
313
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Client.html#update_view-instance_method
314
+ def update_view: (
315
+ ?filters: {
316
+ filter_string: ::String
317
+ },
318
+ ?included_properties: Array[
319
+ {
320
+ name: ::String
321
+ },
322
+ ],
323
+ view_arn: ::String
324
+ ) -> _UpdateViewResponseSuccess
325
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateViewResponseSuccess
326
+ end
327
+ end
328
+ end
329
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,43 @@
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 ResourceExplorer2
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class ConflictException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ end
20
+ class InternalServerException < ::Aws::Errors::ServiceError
21
+ def message: () -> ::String
22
+ end
23
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
24
+ def message: () -> ::String
25
+ end
26
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
27
+ def message: () -> ::String
28
+ def name: () -> ::String
29
+ def value: () -> ::String
30
+ end
31
+ class ThrottlingException < ::Aws::Errors::ServiceError
32
+ def message: () -> ::String
33
+ end
34
+ class UnauthorizedException < ::Aws::Errors::ServiceError
35
+ def message: () -> ::String
36
+ end
37
+ class ValidationException < ::Aws::Errors::ServiceError
38
+ def field_list: () -> ::String
39
+ def message: () -> ::String
40
+ end
41
+ end
42
+ end
43
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,79 @@
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 ResourceExplorer2
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ResourceExplorer2/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
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
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> void
72
+ | (?Hash[Symbol, untyped]) -> void
73
+
74
+ def client: () -> Client
75
+
76
+
77
+ end
78
+ end
79
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,362 @@
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::ResourceExplorer2
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AssociateDefaultViewInput
17
+ attr_accessor view_arn: ::String
18
+ SENSITIVE: []
19
+ end
20
+
21
+ class AssociateDefaultViewOutput
22
+ attr_accessor view_arn: ::String
23
+ SENSITIVE: []
24
+ end
25
+
26
+ class BatchGetViewError
27
+ attr_accessor error_message: ::String
28
+ attr_accessor view_arn: ::String
29
+ SENSITIVE: []
30
+ end
31
+
32
+ class BatchGetViewInput
33
+ attr_accessor view_arns: ::Array[::String]
34
+ SENSITIVE: []
35
+ end
36
+
37
+ class BatchGetViewOutput
38
+ attr_accessor errors: ::Array[Types::BatchGetViewError]
39
+ attr_accessor views: ::Array[Types::View]
40
+ SENSITIVE: []
41
+ end
42
+
43
+ class ConflictException
44
+ attr_accessor message: ::String
45
+ SENSITIVE: []
46
+ end
47
+
48
+ class CreateIndexInput
49
+ attr_accessor client_token: ::String
50
+ attr_accessor tags: ::Hash[::String, ::String]
51
+ SENSITIVE: [:tags]
52
+ end
53
+
54
+ class CreateIndexOutput
55
+ attr_accessor arn: ::String
56
+ attr_accessor created_at: ::Time
57
+ attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
58
+ SENSITIVE: []
59
+ end
60
+
61
+ class CreateViewInput
62
+ attr_accessor client_token: ::String
63
+ attr_accessor filters: Types::SearchFilter
64
+ attr_accessor included_properties: ::Array[Types::IncludedProperty]
65
+ attr_accessor scope: ::String
66
+ attr_accessor tags: ::Hash[::String, ::String]
67
+ attr_accessor view_name: ::String
68
+ SENSITIVE: [:filters, :tags]
69
+ end
70
+
71
+ class CreateViewOutput
72
+ attr_accessor view: Types::View
73
+ SENSITIVE: []
74
+ end
75
+
76
+ class DeleteIndexInput
77
+ attr_accessor arn: ::String
78
+ SENSITIVE: []
79
+ end
80
+
81
+ class DeleteIndexOutput
82
+ attr_accessor arn: ::String
83
+ attr_accessor last_updated_at: ::Time
84
+ attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
85
+ SENSITIVE: []
86
+ end
87
+
88
+ class DeleteViewInput
89
+ attr_accessor view_arn: ::String
90
+ SENSITIVE: []
91
+ end
92
+
93
+ class DeleteViewOutput
94
+ attr_accessor view_arn: ::String
95
+ SENSITIVE: []
96
+ end
97
+
98
+ class GetAccountLevelServiceConfigurationOutput
99
+ attr_accessor org_configuration: Types::OrgConfiguration
100
+ SENSITIVE: []
101
+ end
102
+
103
+ class GetDefaultViewOutput
104
+ attr_accessor view_arn: ::String
105
+ SENSITIVE: []
106
+ end
107
+
108
+ class GetIndexOutput
109
+ attr_accessor arn: ::String
110
+ attr_accessor created_at: ::Time
111
+ attr_accessor last_updated_at: ::Time
112
+ attr_accessor replicating_from: ::Array[::String]
113
+ attr_accessor replicating_to: ::Array[::String]
114
+ attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
115
+ attr_accessor tags: ::Hash[::String, ::String]
116
+ attr_accessor type: ("LOCAL" | "AGGREGATOR")
117
+ SENSITIVE: [:tags]
118
+ end
119
+
120
+ class GetViewInput
121
+ attr_accessor view_arn: ::String
122
+ SENSITIVE: []
123
+ end
124
+
125
+ class GetViewOutput
126
+ attr_accessor tags: ::Hash[::String, ::String]
127
+ attr_accessor view: Types::View
128
+ SENSITIVE: [:tags]
129
+ end
130
+
131
+ class IncludedProperty
132
+ attr_accessor name: ::String
133
+ SENSITIVE: []
134
+ end
135
+
136
+ class Index
137
+ attr_accessor arn: ::String
138
+ attr_accessor region: ::String
139
+ attr_accessor type: ("LOCAL" | "AGGREGATOR")
140
+ SENSITIVE: []
141
+ end
142
+
143
+ class InternalServerException
144
+ attr_accessor message: ::String
145
+ SENSITIVE: []
146
+ end
147
+
148
+ class ListIndexesForMembersInput
149
+ attr_accessor account_id_list: ::Array[::String]
150
+ attr_accessor max_results: ::Integer
151
+ attr_accessor next_token: ::String
152
+ SENSITIVE: []
153
+ end
154
+
155
+ class ListIndexesForMembersOutput
156
+ attr_accessor indexes: ::Array[Types::MemberIndex]
157
+ attr_accessor next_token: ::String
158
+ SENSITIVE: []
159
+ end
160
+
161
+ class ListIndexesInput
162
+ attr_accessor max_results: ::Integer
163
+ attr_accessor next_token: ::String
164
+ attr_accessor regions: ::Array[::String]
165
+ attr_accessor type: ("LOCAL" | "AGGREGATOR")
166
+ SENSITIVE: []
167
+ end
168
+
169
+ class ListIndexesOutput
170
+ attr_accessor indexes: ::Array[Types::Index]
171
+ attr_accessor next_token: ::String
172
+ SENSITIVE: []
173
+ end
174
+
175
+ class ListSupportedResourceTypesInput
176
+ attr_accessor max_results: ::Integer
177
+ attr_accessor next_token: ::String
178
+ SENSITIVE: []
179
+ end
180
+
181
+ class ListSupportedResourceTypesOutput
182
+ attr_accessor next_token: ::String
183
+ attr_accessor resource_types: ::Array[Types::SupportedResourceType]
184
+ SENSITIVE: []
185
+ end
186
+
187
+ class ListTagsForResourceInput
188
+ attr_accessor resource_arn: ::String
189
+ SENSITIVE: []
190
+ end
191
+
192
+ class ListTagsForResourceOutput
193
+ attr_accessor tags: ::Hash[::String, ::String]
194
+ SENSITIVE: [:tags]
195
+ end
196
+
197
+ class ListViewsInput
198
+ attr_accessor max_results: ::Integer
199
+ attr_accessor next_token: ::String
200
+ SENSITIVE: []
201
+ end
202
+
203
+ class ListViewsOutput
204
+ attr_accessor next_token: ::String
205
+ attr_accessor views: ::Array[::String]
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class MemberIndex
210
+ attr_accessor account_id: ::String
211
+ attr_accessor arn: ::String
212
+ attr_accessor region: ::String
213
+ attr_accessor type: ("LOCAL" | "AGGREGATOR")
214
+ SENSITIVE: []
215
+ end
216
+
217
+ class OrgConfiguration
218
+ attr_accessor aws_service_access_status: ("ENABLED" | "DISABLED")
219
+ attr_accessor service_linked_role: ::String
220
+ SENSITIVE: []
221
+ end
222
+
223
+ class Resource
224
+ attr_accessor arn: ::String
225
+ attr_accessor last_reported_at: ::Time
226
+ attr_accessor owning_account_id: ::String
227
+ attr_accessor properties: ::Array[Types::ResourceProperty]
228
+ attr_accessor region: ::String
229
+ attr_accessor resource_type: ::String
230
+ attr_accessor service: ::String
231
+ SENSITIVE: []
232
+ end
233
+
234
+ class ResourceCount
235
+ attr_accessor complete: bool
236
+ attr_accessor total_resources: ::Integer
237
+ SENSITIVE: []
238
+ end
239
+
240
+ class ResourceNotFoundException
241
+ attr_accessor message: ::String
242
+ SENSITIVE: []
243
+ end
244
+
245
+ class ResourceProperty
246
+ attr_accessor data: untyped
247
+ attr_accessor last_reported_at: ::Time
248
+ attr_accessor name: ::String
249
+ SENSITIVE: []
250
+ end
251
+
252
+ class SearchFilter
253
+ attr_accessor filter_string: ::String
254
+ SENSITIVE: []
255
+ end
256
+
257
+ class SearchInput
258
+ attr_accessor max_results: ::Integer
259
+ attr_accessor next_token: ::String
260
+ attr_accessor query_string: ::String
261
+ attr_accessor view_arn: ::String
262
+ SENSITIVE: [:query_string]
263
+ end
264
+
265
+ class SearchOutput
266
+ attr_accessor count: Types::ResourceCount
267
+ attr_accessor next_token: ::String
268
+ attr_accessor resources: ::Array[Types::Resource]
269
+ attr_accessor view_arn: ::String
270
+ SENSITIVE: []
271
+ end
272
+
273
+ class ServiceQuotaExceededException
274
+ attr_accessor message: ::String
275
+ attr_accessor name: ::String
276
+ attr_accessor value: ::String
277
+ SENSITIVE: []
278
+ end
279
+
280
+ class SupportedResourceType
281
+ attr_accessor resource_type: ::String
282
+ attr_accessor service: ::String
283
+ SENSITIVE: []
284
+ end
285
+
286
+ class TagResourceInput
287
+ attr_accessor tags: ::Hash[::String, ::String]
288
+ attr_accessor resource_arn: ::String
289
+ SENSITIVE: [:tags]
290
+ end
291
+
292
+ class TagResourceOutput < Aws::EmptyStructure
293
+ end
294
+
295
+ class ThrottlingException
296
+ attr_accessor message: ::String
297
+ SENSITIVE: []
298
+ end
299
+
300
+ class UnauthorizedException
301
+ attr_accessor message: ::String
302
+ SENSITIVE: []
303
+ end
304
+
305
+ class UntagResourceInput
306
+ attr_accessor resource_arn: ::String
307
+ attr_accessor tag_keys: ::Array[::String]
308
+ SENSITIVE: [:tag_keys]
309
+ end
310
+
311
+ class UntagResourceOutput < Aws::EmptyStructure
312
+ end
313
+
314
+ class UpdateIndexTypeInput
315
+ attr_accessor arn: ::String
316
+ attr_accessor type: ("LOCAL" | "AGGREGATOR")
317
+ SENSITIVE: []
318
+ end
319
+
320
+ class UpdateIndexTypeOutput
321
+ attr_accessor arn: ::String
322
+ attr_accessor last_updated_at: ::Time
323
+ attr_accessor state: ("CREATING" | "ACTIVE" | "DELETING" | "DELETED" | "UPDATING")
324
+ attr_accessor type: ("LOCAL" | "AGGREGATOR")
325
+ SENSITIVE: []
326
+ end
327
+
328
+ class UpdateViewInput
329
+ attr_accessor filters: Types::SearchFilter
330
+ attr_accessor included_properties: ::Array[Types::IncludedProperty]
331
+ attr_accessor view_arn: ::String
332
+ SENSITIVE: [:filters]
333
+ end
334
+
335
+ class UpdateViewOutput
336
+ attr_accessor view: Types::View
337
+ SENSITIVE: []
338
+ end
339
+
340
+ class ValidationException
341
+ attr_accessor field_list: ::Array[Types::ValidationExceptionField]
342
+ attr_accessor message: ::String
343
+ SENSITIVE: []
344
+ end
345
+
346
+ class ValidationExceptionField
347
+ attr_accessor name: ::String
348
+ attr_accessor validation_issue: ::String
349
+ SENSITIVE: []
350
+ end
351
+
352
+ class View
353
+ attr_accessor filters: Types::SearchFilter
354
+ attr_accessor included_properties: ::Array[Types::IncludedProperty]
355
+ attr_accessor last_updated_at: ::Time
356
+ attr_accessor owner: ::String
357
+ attr_accessor scope: ::String
358
+ attr_accessor view_arn: ::String
359
+ SENSITIVE: [:filters]
360
+ end
361
+ end
362
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
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 ResourceExplorer2
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-resourceexplorer2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.14.0
4
+ version: 1.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-02-13 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.188.0
22
+ version: 3.191.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.188.0
32
+ version: 3.191.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-resourceexplorer2/plugins/endpoints.rb
67
67
  - lib/aws-sdk-resourceexplorer2/resource.rb
68
68
  - lib/aws-sdk-resourceexplorer2/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-resourceexplorer2
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-resourceexplorer2/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - AWS Resource Explorer
94
99
  test_files: []