aws-sdk-servicediscovery 1.88.0 → 1.89.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-servicediscovery/client.rb +214 -53
- data/lib/aws-sdk-servicediscovery/client_api.rb +37 -20
- data/lib/aws-sdk-servicediscovery/errors.rb +5 -0
- data/lib/aws-sdk-servicediscovery/types.rb +367 -40
- data/lib/aws-sdk-servicediscovery.rb +1 -1
- data/sig/client.rbs +10 -5
- data/sig/errors.rbs +1 -0
- data/sig/types.rbs +18 -2
- metadata +1 -1
data/sig/client.rbs
CHANGED
@@ -238,7 +238,8 @@ module Aws
|
|
238
238
|
?max_results: ::Integer,
|
239
239
|
?query_parameters: Hash[::String, ::String],
|
240
240
|
?optional_parameters: Hash[::String, ::String],
|
241
|
-
?health_status: ("HEALTHY" | "UNHEALTHY" | "ALL" | "HEALTHY_OR_ELSE_ALL")
|
241
|
+
?health_status: ("HEALTHY" | "UNHEALTHY" | "ALL" | "HEALTHY_OR_ELSE_ALL"),
|
242
|
+
?owner_account: ::String
|
242
243
|
) -> _DiscoverInstancesResponseSuccess
|
243
244
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DiscoverInstancesResponseSuccess
|
244
245
|
|
@@ -249,12 +250,14 @@ module Aws
|
|
249
250
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceDiscovery/Client.html#discover_instances_revision-instance_method
|
250
251
|
def discover_instances_revision: (
|
251
252
|
namespace_name: ::String,
|
252
|
-
service_name: ::String
|
253
|
+
service_name: ::String,
|
254
|
+
?owner_account: ::String
|
253
255
|
) -> _DiscoverInstancesRevisionResponseSuccess
|
254
256
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DiscoverInstancesRevisionResponseSuccess
|
255
257
|
|
256
258
|
interface _GetInstanceResponseSuccess
|
257
259
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetInstanceResponse]
|
260
|
+
def resource_owner: () -> ::String
|
258
261
|
def instance: () -> Types::Instance
|
259
262
|
end
|
260
263
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceDiscovery/Client.html#get_instance-instance_method
|
@@ -294,7 +297,8 @@ module Aws
|
|
294
297
|
end
|
295
298
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ServiceDiscovery/Client.html#get_operation-instance_method
|
296
299
|
def get_operation: (
|
297
|
-
operation_id: ::String
|
300
|
+
operation_id: ::String,
|
301
|
+
?owner_account: ::String
|
298
302
|
) -> _GetOperationResponseSuccess
|
299
303
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetOperationResponseSuccess
|
300
304
|
|
@@ -320,6 +324,7 @@ module Aws
|
|
320
324
|
|
321
325
|
interface _ListInstancesResponseSuccess
|
322
326
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListInstancesResponse]
|
327
|
+
def resource_owner: () -> ::String
|
323
328
|
def instances: () -> ::Array[Types::InstanceSummary]
|
324
329
|
def next_token: () -> ::String
|
325
330
|
end
|
@@ -342,7 +347,7 @@ module Aws
|
|
342
347
|
?max_results: ::Integer,
|
343
348
|
?filters: Array[
|
344
349
|
{
|
345
|
-
name: ("TYPE" | "NAME" | "HTTP_NAME"),
|
350
|
+
name: ("TYPE" | "NAME" | "HTTP_NAME" | "RESOURCE_OWNER"),
|
346
351
|
values: Array[::String],
|
347
352
|
condition: ("EQ" | "IN" | "BETWEEN" | "BEGINS_WITH")?
|
348
353
|
},
|
@@ -380,7 +385,7 @@ module Aws
|
|
380
385
|
?max_results: ::Integer,
|
381
386
|
?filters: Array[
|
382
387
|
{
|
383
|
-
name: ("NAMESPACE_ID"),
|
388
|
+
name: ("NAMESPACE_ID" | "RESOURCE_OWNER"),
|
384
389
|
values: Array[::String],
|
385
390
|
condition: ("EQ" | "IN" | "BETWEEN" | "BEGINS_WITH")?
|
386
391
|
},
|
data/sig/errors.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
def message: () -> ::String
|
52
52
|
def creator_request_id: () -> ::String
|
53
53
|
def service_id: () -> ::String
|
54
|
+
def service_arn: () -> ::String
|
54
55
|
end
|
55
56
|
class ServiceAttributesLimitExceededException < ::Aws::Errors::ServiceError
|
56
57
|
def message: () -> ::String
|
data/sig/types.rbs
CHANGED
@@ -118,6 +118,7 @@ module Aws::ServiceDiscovery
|
|
118
118
|
attr_accessor query_parameters: ::Hash[::String, ::String]
|
119
119
|
attr_accessor optional_parameters: ::Hash[::String, ::String]
|
120
120
|
attr_accessor health_status: ("HEALTHY" | "UNHEALTHY" | "ALL" | "HEALTHY_OR_ELSE_ALL")
|
121
|
+
attr_accessor owner_account: ::String
|
121
122
|
SENSITIVE: []
|
122
123
|
end
|
123
124
|
|
@@ -130,6 +131,7 @@ module Aws::ServiceDiscovery
|
|
130
131
|
class DiscoverInstancesRevisionRequest
|
131
132
|
attr_accessor namespace_name: ::String
|
132
133
|
attr_accessor service_name: ::String
|
134
|
+
attr_accessor owner_account: ::String
|
133
135
|
SENSITIVE: []
|
134
136
|
end
|
135
137
|
|
@@ -175,6 +177,7 @@ module Aws::ServiceDiscovery
|
|
175
177
|
end
|
176
178
|
|
177
179
|
class GetInstanceResponse
|
180
|
+
attr_accessor resource_owner: ::String
|
178
181
|
attr_accessor instance: Types::Instance
|
179
182
|
SENSITIVE: []
|
180
183
|
end
|
@@ -205,6 +208,7 @@ module Aws::ServiceDiscovery
|
|
205
208
|
|
206
209
|
class GetOperationRequest
|
207
210
|
attr_accessor operation_id: ::String
|
211
|
+
attr_accessor owner_account: ::String
|
208
212
|
SENSITIVE: []
|
209
213
|
end
|
210
214
|
|
@@ -268,6 +272,7 @@ module Aws::ServiceDiscovery
|
|
268
272
|
attr_accessor id: ::String
|
269
273
|
attr_accessor creator_request_id: ::String
|
270
274
|
attr_accessor attributes: ::Hash[::String, ::String]
|
275
|
+
attr_accessor created_by_account: ::String
|
271
276
|
SENSITIVE: []
|
272
277
|
end
|
273
278
|
|
@@ -279,6 +284,7 @@ module Aws::ServiceDiscovery
|
|
279
284
|
class InstanceSummary
|
280
285
|
attr_accessor id: ::String
|
281
286
|
attr_accessor attributes: ::Hash[::String, ::String]
|
287
|
+
attr_accessor created_by_account: ::String
|
282
288
|
SENSITIVE: []
|
283
289
|
end
|
284
290
|
|
@@ -295,6 +301,7 @@ module Aws::ServiceDiscovery
|
|
295
301
|
end
|
296
302
|
|
297
303
|
class ListInstancesResponse
|
304
|
+
attr_accessor resource_owner: ::String
|
298
305
|
attr_accessor instances: ::Array[Types::InstanceSummary]
|
299
306
|
attr_accessor next_token: ::String
|
300
307
|
SENSITIVE: []
|
@@ -352,6 +359,7 @@ module Aws::ServiceDiscovery
|
|
352
359
|
class Namespace
|
353
360
|
attr_accessor id: ::String
|
354
361
|
attr_accessor arn: ::String
|
362
|
+
attr_accessor resource_owner: ::String
|
355
363
|
attr_accessor name: ::String
|
356
364
|
attr_accessor type: ("DNS_PUBLIC" | "DNS_PRIVATE" | "HTTP")
|
357
365
|
attr_accessor description: ::String
|
@@ -370,7 +378,7 @@ module Aws::ServiceDiscovery
|
|
370
378
|
end
|
371
379
|
|
372
380
|
class NamespaceFilter
|
373
|
-
attr_accessor name: ("TYPE" | "NAME" | "HTTP_NAME")
|
381
|
+
attr_accessor name: ("TYPE" | "NAME" | "HTTP_NAME" | "RESOURCE_OWNER")
|
374
382
|
attr_accessor values: ::Array[::String]
|
375
383
|
attr_accessor condition: ("EQ" | "IN" | "BETWEEN" | "BEGINS_WITH")
|
376
384
|
SENSITIVE: []
|
@@ -390,6 +398,7 @@ module Aws::ServiceDiscovery
|
|
390
398
|
class NamespaceSummary
|
391
399
|
attr_accessor id: ::String
|
392
400
|
attr_accessor arn: ::String
|
401
|
+
attr_accessor resource_owner: ::String
|
393
402
|
attr_accessor name: ::String
|
394
403
|
attr_accessor type: ("DNS_PUBLIC" | "DNS_PRIVATE" | "HTTP")
|
395
404
|
attr_accessor description: ::String
|
@@ -401,6 +410,7 @@ module Aws::ServiceDiscovery
|
|
401
410
|
|
402
411
|
class Operation
|
403
412
|
attr_accessor id: ::String
|
413
|
+
attr_accessor owner_account: ::String
|
404
414
|
attr_accessor type: ("CREATE_NAMESPACE" | "DELETE_NAMESPACE" | "UPDATE_NAMESPACE" | "UPDATE_SERVICE" | "REGISTER_INSTANCE" | "DEREGISTER_INSTANCE")
|
405
415
|
attr_accessor status: ("SUBMITTED" | "PENDING" | "SUCCESS" | "FAIL")
|
406
416
|
attr_accessor error_message: ::String
|
@@ -527,6 +537,7 @@ module Aws::ServiceDiscovery
|
|
527
537
|
class Service
|
528
538
|
attr_accessor id: ::String
|
529
539
|
attr_accessor arn: ::String
|
540
|
+
attr_accessor resource_owner: ::String
|
530
541
|
attr_accessor name: ::String
|
531
542
|
attr_accessor namespace_id: ::String
|
532
543
|
attr_accessor description: ::String
|
@@ -537,6 +548,7 @@ module Aws::ServiceDiscovery
|
|
537
548
|
attr_accessor health_check_custom_config: Types::HealthCheckCustomConfig
|
538
549
|
attr_accessor create_date: ::Time
|
539
550
|
attr_accessor creator_request_id: ::String
|
551
|
+
attr_accessor created_by_account: ::String
|
540
552
|
SENSITIVE: []
|
541
553
|
end
|
542
554
|
|
@@ -544,11 +556,13 @@ module Aws::ServiceDiscovery
|
|
544
556
|
attr_accessor message: ::String
|
545
557
|
attr_accessor creator_request_id: ::String
|
546
558
|
attr_accessor service_id: ::String
|
559
|
+
attr_accessor service_arn: ::String
|
547
560
|
SENSITIVE: []
|
548
561
|
end
|
549
562
|
|
550
563
|
class ServiceAttributes
|
551
564
|
attr_accessor service_arn: ::String
|
565
|
+
attr_accessor resource_owner: ::String
|
552
566
|
attr_accessor attributes: ::Hash[::String, ::String]
|
553
567
|
SENSITIVE: []
|
554
568
|
end
|
@@ -566,7 +580,7 @@ module Aws::ServiceDiscovery
|
|
566
580
|
end
|
567
581
|
|
568
582
|
class ServiceFilter
|
569
|
-
attr_accessor name: ("NAMESPACE_ID")
|
583
|
+
attr_accessor name: ("NAMESPACE_ID" | "RESOURCE_OWNER")
|
570
584
|
attr_accessor values: ::Array[::String]
|
571
585
|
attr_accessor condition: ("EQ" | "IN" | "BETWEEN" | "BEGINS_WITH")
|
572
586
|
SENSITIVE: []
|
@@ -580,6 +594,7 @@ module Aws::ServiceDiscovery
|
|
580
594
|
class ServiceSummary
|
581
595
|
attr_accessor id: ::String
|
582
596
|
attr_accessor arn: ::String
|
597
|
+
attr_accessor resource_owner: ::String
|
583
598
|
attr_accessor name: ::String
|
584
599
|
attr_accessor type: ("HTTP" | "DNS_HTTP" | "DNS")
|
585
600
|
attr_accessor description: ::String
|
@@ -588,6 +603,7 @@ module Aws::ServiceDiscovery
|
|
588
603
|
attr_accessor health_check_config: Types::HealthCheckConfig
|
589
604
|
attr_accessor health_check_custom_config: Types::HealthCheckCustomConfig
|
590
605
|
attr_accessor create_date: ::Time
|
606
|
+
attr_accessor created_by_account: ::String
|
591
607
|
SENSITIVE: []
|
592
608
|
end
|
593
609
|
|