aws-sdk-kafka 1.45.0 → 1.64.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 +98 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-kafka/client.rb +1035 -6
- data/lib/aws-sdk-kafka/client_api.rb +719 -1
- data/lib/aws-sdk-kafka/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-kafka/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-kafka/endpoints.rb +744 -0
- data/lib/aws-sdk-kafka/plugins/endpoints.rb +172 -0
- data/lib/aws-sdk-kafka/types.rb +1708 -992
- data/lib/aws-sdk-kafka.rb +5 -1
- metadata +8 -4
data/lib/aws-sdk-kafka/client.rb
CHANGED
@@ -27,7 +27,11 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
-
require 'aws-sdk-core/plugins/
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
|
+
require 'aws-sdk-core/plugins/request_compression.rb'
|
32
|
+
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
33
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
34
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
31
35
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
32
36
|
|
33
37
|
Aws::Plugins::GlobalConfiguration.add_identifier(:kafka)
|
@@ -73,8 +77,13 @@ module Aws::Kafka
|
|
73
77
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
74
78
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
79
|
add_plugin(Aws::Plugins::HttpChecksum)
|
76
|
-
add_plugin(Aws::Plugins::
|
80
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
81
|
+
add_plugin(Aws::Plugins::RequestCompression)
|
82
|
+
add_plugin(Aws::Plugins::DefaultsMode)
|
83
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
84
|
+
add_plugin(Aws::Plugins::Sign)
|
77
85
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
86
|
+
add_plugin(Aws::Kafka::Plugins::Endpoints)
|
78
87
|
|
79
88
|
# @overload initialize(options)
|
80
89
|
# @param [Hash] options
|
@@ -175,10 +184,18 @@ module Aws::Kafka
|
|
175
184
|
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
176
185
|
# a clock skew correction and retry requests with skewed client clocks.
|
177
186
|
#
|
187
|
+
# @option options [String] :defaults_mode ("legacy")
|
188
|
+
# See {Aws::DefaultsModeConfiguration} for a list of the
|
189
|
+
# accepted modes and the configuration defaults that are included.
|
190
|
+
#
|
178
191
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
179
192
|
# Set to true to disable SDK automatically adding host prefix
|
180
193
|
# to default service endpoint when available.
|
181
194
|
#
|
195
|
+
# @option options [Boolean] :disable_request_compression (false)
|
196
|
+
# When set to 'true' the request body will not be compressed
|
197
|
+
# for supported operations.
|
198
|
+
#
|
182
199
|
# @option options [String] :endpoint
|
183
200
|
# The client endpoint is normally constructed from the `:region`
|
184
201
|
# option. You should only configure an `:endpoint` when connecting
|
@@ -199,6 +216,10 @@ module Aws::Kafka
|
|
199
216
|
# @option options [Boolean] :endpoint_discovery (false)
|
200
217
|
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
201
218
|
#
|
219
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
220
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
221
|
+
# variables and the shared configuration file.
|
222
|
+
#
|
202
223
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
203
224
|
# The log formatter.
|
204
225
|
#
|
@@ -219,6 +240,11 @@ module Aws::Kafka
|
|
219
240
|
# Used when loading credentials from the shared credentials file
|
220
241
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
221
242
|
#
|
243
|
+
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
244
|
+
# The minimum size in bytes that triggers compression for request
|
245
|
+
# bodies. The value must be non-negative integer value between 0
|
246
|
+
# and 10485780 bytes inclusive.
|
247
|
+
#
|
222
248
|
# @option options [Proc] :retry_backoff
|
223
249
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
224
250
|
# This option is only used in the `legacy` retry mode.
|
@@ -264,6 +290,11 @@ module Aws::Kafka
|
|
264
290
|
# in the future.
|
265
291
|
#
|
266
292
|
#
|
293
|
+
# @option options [String] :sdk_ua_app_id
|
294
|
+
# A unique and opaque application ID that is appended to the
|
295
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
296
|
+
# maximum length of 50.
|
297
|
+
#
|
267
298
|
# @option options [String] :secret_access_key
|
268
299
|
#
|
269
300
|
# @option options [String] :session_token
|
@@ -277,6 +308,19 @@ module Aws::Kafka
|
|
277
308
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
278
309
|
# requests are made, and retries are disabled.
|
279
310
|
#
|
311
|
+
# @option options [Aws::TokenProvider] :token_provider
|
312
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
313
|
+
# following classes:
|
314
|
+
#
|
315
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
316
|
+
# tokens.
|
317
|
+
#
|
318
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
319
|
+
# access token generated from `aws login`.
|
320
|
+
#
|
321
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
322
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
323
|
+
#
|
280
324
|
# @option options [Boolean] :use_dualstack_endpoint
|
281
325
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
282
326
|
# will be used if available.
|
@@ -290,6 +334,9 @@ module Aws::Kafka
|
|
290
334
|
# When `true`, request parameters are validated before
|
291
335
|
# sending the request.
|
292
336
|
#
|
337
|
+
# @option options [Aws::Kafka::EndpointProvider] :endpoint_provider
|
338
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Kafka::EndpointParameters`
|
339
|
+
#
|
293
340
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
294
341
|
# requests through. Formatted like 'http://proxy.com:123'.
|
295
342
|
#
|
@@ -297,7 +344,7 @@ module Aws::Kafka
|
|
297
344
|
# seconds to wait when opening a HTTP session before raising a
|
298
345
|
# `Timeout::Error`.
|
299
346
|
#
|
300
|
-
# @option options [
|
347
|
+
# @option options [Float] :http_read_timeout (60) The default
|
301
348
|
# number of seconds to wait for response data. This value can
|
302
349
|
# safely be set per-request on the session.
|
303
350
|
#
|
@@ -313,6 +360,9 @@ module Aws::Kafka
|
|
313
360
|
# disables this behaviour. This value can safely be set per
|
314
361
|
# request on the session.
|
315
362
|
#
|
363
|
+
# @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
|
364
|
+
# in seconds.
|
365
|
+
#
|
316
366
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
317
367
|
# HTTP debug output will be sent to the `:logger`.
|
318
368
|
#
|
@@ -411,6 +461,9 @@ module Aws::Kafka
|
|
411
461
|
# @option params [Hash<String,String>] :tags
|
412
462
|
# Create tags when creating the cluster.
|
413
463
|
#
|
464
|
+
# @option params [String] :storage_mode
|
465
|
+
# This controls storage mode for supported storage tiers.
|
466
|
+
#
|
414
467
|
# @return [Types::CreateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
415
468
|
#
|
416
469
|
# * {Types::CreateClusterResponse#cluster_arn #cluster_arn} => String
|
@@ -427,6 +480,10 @@ module Aws::Kafka
|
|
427
480
|
# security_groups: ["__string"],
|
428
481
|
# storage_info: {
|
429
482
|
# ebs_storage_info: {
|
483
|
+
# provisioned_throughput: {
|
484
|
+
# enabled: false,
|
485
|
+
# volume_throughput: 1,
|
486
|
+
# },
|
430
487
|
# volume_size: 1,
|
431
488
|
# },
|
432
489
|
# },
|
@@ -434,7 +491,23 @@ module Aws::Kafka
|
|
434
491
|
# public_access: {
|
435
492
|
# type: "__string",
|
436
493
|
# },
|
494
|
+
# vpc_connectivity: {
|
495
|
+
# client_authentication: {
|
496
|
+
# sasl: {
|
497
|
+
# scram: {
|
498
|
+
# enabled: false,
|
499
|
+
# },
|
500
|
+
# iam: {
|
501
|
+
# enabled: false,
|
502
|
+
# },
|
503
|
+
# },
|
504
|
+
# tls: {
|
505
|
+
# enabled: false,
|
506
|
+
# },
|
507
|
+
# },
|
508
|
+
# },
|
437
509
|
# },
|
510
|
+
# zone_ids: ["__string"],
|
438
511
|
# },
|
439
512
|
# client_authentication: {
|
440
513
|
# sasl: {
|
@@ -500,6 +573,7 @@ module Aws::Kafka
|
|
500
573
|
# tags: {
|
501
574
|
# "__string" => "__string",
|
502
575
|
# },
|
576
|
+
# storage_mode: "LOCAL", # accepts LOCAL, TIERED
|
503
577
|
# })
|
504
578
|
#
|
505
579
|
# @example Response structure
|
@@ -554,6 +628,10 @@ module Aws::Kafka
|
|
554
628
|
# security_groups: ["__string"],
|
555
629
|
# storage_info: {
|
556
630
|
# ebs_storage_info: {
|
631
|
+
# provisioned_throughput: {
|
632
|
+
# enabled: false,
|
633
|
+
# volume_throughput: 1,
|
634
|
+
# },
|
557
635
|
# volume_size: 1,
|
558
636
|
# },
|
559
637
|
# },
|
@@ -561,7 +639,23 @@ module Aws::Kafka
|
|
561
639
|
# public_access: {
|
562
640
|
# type: "__string",
|
563
641
|
# },
|
642
|
+
# vpc_connectivity: {
|
643
|
+
# client_authentication: {
|
644
|
+
# sasl: {
|
645
|
+
# scram: {
|
646
|
+
# enabled: false,
|
647
|
+
# },
|
648
|
+
# iam: {
|
649
|
+
# enabled: false,
|
650
|
+
# },
|
651
|
+
# },
|
652
|
+
# tls: {
|
653
|
+
# enabled: false,
|
654
|
+
# },
|
655
|
+
# },
|
656
|
+
# },
|
564
657
|
# },
|
658
|
+
# zone_ids: ["__string"],
|
565
659
|
# },
|
566
660
|
# client_authentication: {
|
567
661
|
# sasl: {
|
@@ -623,6 +717,7 @@ module Aws::Kafka
|
|
623
717
|
# },
|
624
718
|
# },
|
625
719
|
# number_of_broker_nodes: 1, # required
|
720
|
+
# storage_mode: "LOCAL", # accepts LOCAL, TIERED
|
626
721
|
# },
|
627
722
|
# serverless: {
|
628
723
|
# vpc_configs: [ # required
|
@@ -708,6 +803,158 @@ module Aws::Kafka
|
|
708
803
|
req.send_request(options)
|
709
804
|
end
|
710
805
|
|
806
|
+
# Creates a new Kafka Replicator.
|
807
|
+
#
|
808
|
+
# @option params [String] :description
|
809
|
+
# A summary description of the replicator.
|
810
|
+
#
|
811
|
+
# @option params [required, Array<Types::KafkaCluster>] :kafka_clusters
|
812
|
+
# Kafka Clusters to use in setting up sources / targets for replication.
|
813
|
+
#
|
814
|
+
# @option params [required, Array<Types::ReplicationInfo>] :replication_info_list
|
815
|
+
# A list of replication configurations, where each configuration targets
|
816
|
+
# a given source cluster to target cluster replication flow.
|
817
|
+
#
|
818
|
+
# @option params [required, String] :replicator_name
|
819
|
+
# The name of the replicator. Alpha-numeric characters with '-' are
|
820
|
+
# allowed.
|
821
|
+
#
|
822
|
+
# @option params [required, String] :service_execution_role_arn
|
823
|
+
# The ARN of the IAM role used by the replicator to access resources in
|
824
|
+
# the customer's account (e.g source and target clusters)
|
825
|
+
#
|
826
|
+
# @option params [Hash<String,String>] :tags
|
827
|
+
# List of tags to attach to created Replicator.
|
828
|
+
#
|
829
|
+
# @return [Types::CreateReplicatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
830
|
+
#
|
831
|
+
# * {Types::CreateReplicatorResponse#replicator_arn #replicator_arn} => String
|
832
|
+
# * {Types::CreateReplicatorResponse#replicator_name #replicator_name} => String
|
833
|
+
# * {Types::CreateReplicatorResponse#replicator_state #replicator_state} => String
|
834
|
+
#
|
835
|
+
# @example Request syntax with placeholder values
|
836
|
+
#
|
837
|
+
# resp = client.create_replicator({
|
838
|
+
# description: "__stringMax1024",
|
839
|
+
# kafka_clusters: [ # required
|
840
|
+
# {
|
841
|
+
# amazon_msk_cluster: { # required
|
842
|
+
# msk_cluster_arn: "__string", # required
|
843
|
+
# },
|
844
|
+
# vpc_config: { # required
|
845
|
+
# security_group_ids: ["__string"],
|
846
|
+
# subnet_ids: ["__string"], # required
|
847
|
+
# },
|
848
|
+
# },
|
849
|
+
# ],
|
850
|
+
# replication_info_list: [ # required
|
851
|
+
# {
|
852
|
+
# consumer_group_replication: { # required
|
853
|
+
# consumer_groups_to_exclude: ["__stringMax256"],
|
854
|
+
# consumer_groups_to_replicate: ["__stringMax256"], # required
|
855
|
+
# detect_and_copy_new_consumer_groups: false,
|
856
|
+
# synchronise_consumer_group_offsets: false,
|
857
|
+
# },
|
858
|
+
# source_kafka_cluster_arn: "__string", # required
|
859
|
+
# target_compression_type: "NONE", # required, accepts NONE, GZIP, SNAPPY, LZ4, ZSTD
|
860
|
+
# target_kafka_cluster_arn: "__string", # required
|
861
|
+
# topic_replication: { # required
|
862
|
+
# copy_access_control_lists_for_topics: false,
|
863
|
+
# copy_topic_configurations: false,
|
864
|
+
# detect_and_copy_new_topics: false,
|
865
|
+
# topics_to_exclude: ["__stringMax249"],
|
866
|
+
# topics_to_replicate: ["__stringMax249"], # required
|
867
|
+
# },
|
868
|
+
# },
|
869
|
+
# ],
|
870
|
+
# replicator_name: "__stringMin1Max128Pattern09AZaZ09AZaZ0", # required
|
871
|
+
# service_execution_role_arn: "__string", # required
|
872
|
+
# tags: {
|
873
|
+
# "__string" => "__string",
|
874
|
+
# },
|
875
|
+
# })
|
876
|
+
#
|
877
|
+
# @example Response structure
|
878
|
+
#
|
879
|
+
# resp.replicator_arn #=> String
|
880
|
+
# resp.replicator_name #=> String
|
881
|
+
# resp.replicator_state #=> String, one of "RUNNING", "CREATING", "UPDATING", "DELETING", "FAILED"
|
882
|
+
#
|
883
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateReplicator AWS API Documentation
|
884
|
+
#
|
885
|
+
# @overload create_replicator(params = {})
|
886
|
+
# @param [Hash] params ({})
|
887
|
+
def create_replicator(params = {}, options = {})
|
888
|
+
req = build_request(:create_replicator, params)
|
889
|
+
req.send_request(options)
|
890
|
+
end
|
891
|
+
|
892
|
+
# Creates a new Amazon MSK VPC connection.
|
893
|
+
#
|
894
|
+
# @option params [required, String] :target_cluster_arn
|
895
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
896
|
+
#
|
897
|
+
# @option params [required, String] :authentication
|
898
|
+
#
|
899
|
+
# @option params [required, String] :vpc_id
|
900
|
+
# The VPC ID of the VPC connection.
|
901
|
+
#
|
902
|
+
# @option params [required, Array<String>] :client_subnets
|
903
|
+
# The list of subnets in the client VPC.
|
904
|
+
#
|
905
|
+
# @option params [required, Array<String>] :security_groups
|
906
|
+
# The list of security groups to attach to the VPC connection.
|
907
|
+
#
|
908
|
+
# @option params [Hash<String,String>] :tags
|
909
|
+
# Create tags when creating the VPC connection.
|
910
|
+
#
|
911
|
+
# @return [Types::CreateVpcConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
912
|
+
#
|
913
|
+
# * {Types::CreateVpcConnectionResponse#vpc_connection_arn #vpc_connection_arn} => String
|
914
|
+
# * {Types::CreateVpcConnectionResponse#state #state} => String
|
915
|
+
# * {Types::CreateVpcConnectionResponse#authentication #authentication} => String
|
916
|
+
# * {Types::CreateVpcConnectionResponse#vpc_id #vpc_id} => String
|
917
|
+
# * {Types::CreateVpcConnectionResponse#client_subnets #client_subnets} => Array<String>
|
918
|
+
# * {Types::CreateVpcConnectionResponse#security_groups #security_groups} => Array<String>
|
919
|
+
# * {Types::CreateVpcConnectionResponse#creation_time #creation_time} => Time
|
920
|
+
# * {Types::CreateVpcConnectionResponse#tags #tags} => Hash<String,String>
|
921
|
+
#
|
922
|
+
# @example Request syntax with placeholder values
|
923
|
+
#
|
924
|
+
# resp = client.create_vpc_connection({
|
925
|
+
# target_cluster_arn: "__string", # required
|
926
|
+
# authentication: "__string", # required
|
927
|
+
# vpc_id: "__string", # required
|
928
|
+
# client_subnets: ["__string"], # required
|
929
|
+
# security_groups: ["__string"], # required
|
930
|
+
# tags: {
|
931
|
+
# "__string" => "__string",
|
932
|
+
# },
|
933
|
+
# })
|
934
|
+
#
|
935
|
+
# @example Response structure
|
936
|
+
#
|
937
|
+
# resp.vpc_connection_arn #=> String
|
938
|
+
# resp.state #=> String, one of "CREATING", "AVAILABLE", "INACTIVE", "DEACTIVATING", "DELETING", "FAILED", "REJECTED", "REJECTING"
|
939
|
+
# resp.authentication #=> String
|
940
|
+
# resp.vpc_id #=> String
|
941
|
+
# resp.client_subnets #=> Array
|
942
|
+
# resp.client_subnets[0] #=> String
|
943
|
+
# resp.security_groups #=> Array
|
944
|
+
# resp.security_groups[0] #=> String
|
945
|
+
# resp.creation_time #=> Time
|
946
|
+
# resp.tags #=> Hash
|
947
|
+
# resp.tags["__string"] #=> String
|
948
|
+
#
|
949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateVpcConnection AWS API Documentation
|
950
|
+
#
|
951
|
+
# @overload create_vpc_connection(params = {})
|
952
|
+
# @param [Hash] params ({})
|
953
|
+
def create_vpc_connection(params = {}, options = {})
|
954
|
+
req = build_request(:create_vpc_connection, params)
|
955
|
+
req.send_request(options)
|
956
|
+
end
|
957
|
+
|
711
958
|
# Deletes the MSK cluster specified by the Amazon Resource Name (ARN) in
|
712
959
|
# the request.
|
713
960
|
#
|
@@ -772,6 +1019,67 @@ module Aws::Kafka
|
|
772
1019
|
req.send_request(options)
|
773
1020
|
end
|
774
1021
|
|
1022
|
+
# Deletes a replicator.
|
1023
|
+
#
|
1024
|
+
# @option params [String] :current_version
|
1025
|
+
#
|
1026
|
+
# @option params [required, String] :replicator_arn
|
1027
|
+
#
|
1028
|
+
# @return [Types::DeleteReplicatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1029
|
+
#
|
1030
|
+
# * {Types::DeleteReplicatorResponse#replicator_arn #replicator_arn} => String
|
1031
|
+
# * {Types::DeleteReplicatorResponse#replicator_state #replicator_state} => String
|
1032
|
+
#
|
1033
|
+
# @example Request syntax with placeholder values
|
1034
|
+
#
|
1035
|
+
# resp = client.delete_replicator({
|
1036
|
+
# current_version: "__string",
|
1037
|
+
# replicator_arn: "__string", # required
|
1038
|
+
# })
|
1039
|
+
#
|
1040
|
+
# @example Response structure
|
1041
|
+
#
|
1042
|
+
# resp.replicator_arn #=> String
|
1043
|
+
# resp.replicator_state #=> String, one of "RUNNING", "CREATING", "UPDATING", "DELETING", "FAILED"
|
1044
|
+
#
|
1045
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteReplicator AWS API Documentation
|
1046
|
+
#
|
1047
|
+
# @overload delete_replicator(params = {})
|
1048
|
+
# @param [Hash] params ({})
|
1049
|
+
def delete_replicator(params = {}, options = {})
|
1050
|
+
req = build_request(:delete_replicator, params)
|
1051
|
+
req.send_request(options)
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
# Deletes the Amazon MSK VPC connection specified in your request.
|
1055
|
+
#
|
1056
|
+
# @option params [required, String] :arn
|
1057
|
+
#
|
1058
|
+
# @return [Types::DeleteVpcConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1059
|
+
#
|
1060
|
+
# * {Types::DeleteVpcConnectionResponse#vpc_connection_arn #vpc_connection_arn} => String
|
1061
|
+
# * {Types::DeleteVpcConnectionResponse#state #state} => String
|
1062
|
+
#
|
1063
|
+
# @example Request syntax with placeholder values
|
1064
|
+
#
|
1065
|
+
# resp = client.delete_vpc_connection({
|
1066
|
+
# arn: "__string", # required
|
1067
|
+
# })
|
1068
|
+
#
|
1069
|
+
# @example Response structure
|
1070
|
+
#
|
1071
|
+
# resp.vpc_connection_arn #=> String
|
1072
|
+
# resp.state #=> String, one of "CREATING", "AVAILABLE", "INACTIVE", "DEACTIVATING", "DELETING", "FAILED", "REJECTED", "REJECTING"
|
1073
|
+
#
|
1074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteVpcConnection AWS API Documentation
|
1075
|
+
#
|
1076
|
+
# @overload delete_vpc_connection(params = {})
|
1077
|
+
# @param [Hash] params ({})
|
1078
|
+
def delete_vpc_connection(params = {}, options = {})
|
1079
|
+
req = build_request(:delete_vpc_connection, params)
|
1080
|
+
req.send_request(options)
|
1081
|
+
end
|
1082
|
+
|
775
1083
|
# Returns a description of the MSK cluster whose Amazon Resource Name
|
776
1084
|
# (ARN) is specified in the request.
|
777
1085
|
#
|
@@ -796,8 +1104,15 @@ module Aws::Kafka
|
|
796
1104
|
# resp.cluster_info.broker_node_group_info.instance_type #=> String
|
797
1105
|
# resp.cluster_info.broker_node_group_info.security_groups #=> Array
|
798
1106
|
# resp.cluster_info.broker_node_group_info.security_groups[0] #=> String
|
1107
|
+
# resp.cluster_info.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.enabled #=> Boolean
|
1108
|
+
# resp.cluster_info.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.volume_throughput #=> Integer
|
799
1109
|
# resp.cluster_info.broker_node_group_info.storage_info.ebs_storage_info.volume_size #=> Integer
|
800
1110
|
# resp.cluster_info.broker_node_group_info.connectivity_info.public_access.type #=> String
|
1111
|
+
# resp.cluster_info.broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
|
1112
|
+
# resp.cluster_info.broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
1113
|
+
# resp.cluster_info.broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
1114
|
+
# resp.cluster_info.broker_node_group_info.zone_ids #=> Array
|
1115
|
+
# resp.cluster_info.broker_node_group_info.zone_ids[0] #=> String
|
801
1116
|
# resp.cluster_info.client_authentication.sasl.scram.enabled #=> Boolean
|
802
1117
|
# resp.cluster_info.client_authentication.sasl.iam.enabled #=> Boolean
|
803
1118
|
# resp.cluster_info.client_authentication.tls.certificate_authority_arn_list #=> Array
|
@@ -832,6 +1147,7 @@ module Aws::Kafka
|
|
832
1147
|
# resp.cluster_info.tags["__string"] #=> String
|
833
1148
|
# resp.cluster_info.zookeeper_connect_string #=> String
|
834
1149
|
# resp.cluster_info.zookeeper_connect_string_tls #=> String
|
1150
|
+
# resp.cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
835
1151
|
#
|
836
1152
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeCluster AWS API Documentation
|
837
1153
|
#
|
@@ -878,8 +1194,15 @@ module Aws::Kafka
|
|
878
1194
|
# resp.cluster_info.provisioned.broker_node_group_info.instance_type #=> String
|
879
1195
|
# resp.cluster_info.provisioned.broker_node_group_info.security_groups #=> Array
|
880
1196
|
# resp.cluster_info.provisioned.broker_node_group_info.security_groups[0] #=> String
|
1197
|
+
# resp.cluster_info.provisioned.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.enabled #=> Boolean
|
1198
|
+
# resp.cluster_info.provisioned.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.volume_throughput #=> Integer
|
881
1199
|
# resp.cluster_info.provisioned.broker_node_group_info.storage_info.ebs_storage_info.volume_size #=> Integer
|
882
1200
|
# resp.cluster_info.provisioned.broker_node_group_info.connectivity_info.public_access.type #=> String
|
1201
|
+
# resp.cluster_info.provisioned.broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
|
1202
|
+
# resp.cluster_info.provisioned.broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
1203
|
+
# resp.cluster_info.provisioned.broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
1204
|
+
# resp.cluster_info.provisioned.broker_node_group_info.zone_ids #=> Array
|
1205
|
+
# resp.cluster_info.provisioned.broker_node_group_info.zone_ids[0] #=> String
|
883
1206
|
# resp.cluster_info.provisioned.current_broker_software_info.configuration_arn #=> String
|
884
1207
|
# resp.cluster_info.provisioned.current_broker_software_info.configuration_revision #=> Integer
|
885
1208
|
# resp.cluster_info.provisioned.current_broker_software_info.kafka_version #=> String
|
@@ -905,6 +1228,7 @@ module Aws::Kafka
|
|
905
1228
|
# resp.cluster_info.provisioned.number_of_broker_nodes #=> Integer
|
906
1229
|
# resp.cluster_info.provisioned.zookeeper_connect_string #=> String
|
907
1230
|
# resp.cluster_info.provisioned.zookeeper_connect_string_tls #=> String
|
1231
|
+
# resp.cluster_info.provisioned.storage_mode #=> String, one of "LOCAL", "TIERED"
|
908
1232
|
# resp.cluster_info.serverless.vpc_configs #=> Array
|
909
1233
|
# resp.cluster_info.serverless.vpc_configs[0].subnet_ids #=> Array
|
910
1234
|
# resp.cluster_info.serverless.vpc_configs[0].subnet_ids[0] #=> String
|
@@ -951,6 +1275,8 @@ module Aws::Kafka
|
|
951
1275
|
# resp.cluster_operation_info.operation_type #=> String
|
952
1276
|
# resp.cluster_operation_info.source_cluster_info.broker_ebs_volume_info #=> Array
|
953
1277
|
# resp.cluster_operation_info.source_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
|
1278
|
+
# resp.cluster_operation_info.source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
|
1279
|
+
# resp.cluster_operation_info.source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
|
954
1280
|
# resp.cluster_operation_info.source_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
|
955
1281
|
# resp.cluster_operation_info.source_cluster_info.configuration_info.arn #=> String
|
956
1282
|
# resp.cluster_operation_info.source_cluster_info.configuration_info.revision #=> Integer
|
@@ -977,8 +1303,14 @@ module Aws::Kafka
|
|
977
1303
|
# resp.cluster_operation_info.source_cluster_info.encryption_info.encryption_in_transit.client_broker #=> String, one of "TLS", "TLS_PLAINTEXT", "PLAINTEXT"
|
978
1304
|
# resp.cluster_operation_info.source_cluster_info.encryption_info.encryption_in_transit.in_cluster #=> Boolean
|
979
1305
|
# resp.cluster_operation_info.source_cluster_info.connectivity_info.public_access.type #=> String
|
1306
|
+
# resp.cluster_operation_info.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
|
1307
|
+
# resp.cluster_operation_info.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
1308
|
+
# resp.cluster_operation_info.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
1309
|
+
# resp.cluster_operation_info.source_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
980
1310
|
# resp.cluster_operation_info.target_cluster_info.broker_ebs_volume_info #=> Array
|
981
1311
|
# resp.cluster_operation_info.target_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
|
1312
|
+
# resp.cluster_operation_info.target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
|
1313
|
+
# resp.cluster_operation_info.target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
|
982
1314
|
# resp.cluster_operation_info.target_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
|
983
1315
|
# resp.cluster_operation_info.target_cluster_info.configuration_info.arn #=> String
|
984
1316
|
# resp.cluster_operation_info.target_cluster_info.configuration_info.revision #=> Integer
|
@@ -1005,6 +1337,15 @@ module Aws::Kafka
|
|
1005
1337
|
# resp.cluster_operation_info.target_cluster_info.encryption_info.encryption_in_transit.client_broker #=> String, one of "TLS", "TLS_PLAINTEXT", "PLAINTEXT"
|
1006
1338
|
# resp.cluster_operation_info.target_cluster_info.encryption_info.encryption_in_transit.in_cluster #=> Boolean
|
1007
1339
|
# resp.cluster_operation_info.target_cluster_info.connectivity_info.public_access.type #=> String
|
1340
|
+
# resp.cluster_operation_info.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
|
1341
|
+
# resp.cluster_operation_info.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
1342
|
+
# resp.cluster_operation_info.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
1343
|
+
# resp.cluster_operation_info.target_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
1344
|
+
# resp.cluster_operation_info.vpc_connection_info.vpc_connection_arn #=> String
|
1345
|
+
# resp.cluster_operation_info.vpc_connection_info.owner #=> String
|
1346
|
+
# resp.cluster_operation_info.vpc_connection_info.user_identity.type #=> String, one of "AWSACCOUNT", "AWSSERVICE"
|
1347
|
+
# resp.cluster_operation_info.vpc_connection_info.user_identity.principal_id #=> String
|
1348
|
+
# resp.cluster_operation_info.vpc_connection_info.creation_time #=> Time
|
1008
1349
|
#
|
1009
1350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterOperation AWS API Documentation
|
1010
1351
|
#
|
@@ -1015,6 +1356,120 @@ module Aws::Kafka
|
|
1015
1356
|
req.send_request(options)
|
1016
1357
|
end
|
1017
1358
|
|
1359
|
+
# Returns a description of the cluster operation specified by the ARN.
|
1360
|
+
#
|
1361
|
+
# @option params [required, String] :cluster_operation_arn
|
1362
|
+
#
|
1363
|
+
# @return [Types::DescribeClusterOperationV2Response] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1364
|
+
#
|
1365
|
+
# * {Types::DescribeClusterOperationV2Response#cluster_operation_info #cluster_operation_info} => Types::ClusterOperationV2
|
1366
|
+
#
|
1367
|
+
# @example Request syntax with placeholder values
|
1368
|
+
#
|
1369
|
+
# resp = client.describe_cluster_operation_v2({
|
1370
|
+
# cluster_operation_arn: "__string", # required
|
1371
|
+
# })
|
1372
|
+
#
|
1373
|
+
# @example Response structure
|
1374
|
+
#
|
1375
|
+
# resp.cluster_operation_info.cluster_arn #=> String
|
1376
|
+
# resp.cluster_operation_info.cluster_type #=> String, one of "PROVISIONED", "SERVERLESS"
|
1377
|
+
# resp.cluster_operation_info.start_time #=> Time
|
1378
|
+
# resp.cluster_operation_info.end_time #=> Time
|
1379
|
+
# resp.cluster_operation_info.operation_arn #=> String
|
1380
|
+
# resp.cluster_operation_info.operation_state #=> String
|
1381
|
+
# resp.cluster_operation_info.operation_type #=> String
|
1382
|
+
# resp.cluster_operation_info.provisioned.operation_steps #=> Array
|
1383
|
+
# resp.cluster_operation_info.provisioned.operation_steps[0].step_info.step_status #=> String
|
1384
|
+
# resp.cluster_operation_info.provisioned.operation_steps[0].step_name #=> String
|
1385
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.broker_ebs_volume_info #=> Array
|
1386
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
|
1387
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
|
1388
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
|
1389
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
|
1390
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.configuration_info.arn #=> String
|
1391
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.configuration_info.revision #=> Integer
|
1392
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.number_of_broker_nodes #=> Integer
|
1393
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
|
1394
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
|
1395
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
|
1396
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.kafka_version #=> String
|
1397
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.cloud_watch_logs.enabled #=> Boolean
|
1398
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.cloud_watch_logs.log_group #=> String
|
1399
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.firehose.delivery_stream #=> String
|
1400
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.firehose.enabled #=> Boolean
|
1401
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.s3.bucket #=> String
|
1402
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.s3.enabled #=> Boolean
|
1403
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.logging_info.broker_logs.s3.prefix #=> String
|
1404
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.instance_type #=> String
|
1405
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.sasl.scram.enabled #=> Boolean
|
1406
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.sasl.iam.enabled #=> Boolean
|
1407
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.tls.certificate_authority_arn_list #=> Array
|
1408
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.tls.certificate_authority_arn_list[0] #=> String
|
1409
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.tls.enabled #=> Boolean
|
1410
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.client_authentication.unauthenticated.enabled #=> Boolean
|
1411
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.encryption_info.encryption_at_rest.data_volume_kms_key_id #=> String
|
1412
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.encryption_info.encryption_in_transit.client_broker #=> String, one of "TLS", "TLS_PLAINTEXT", "PLAINTEXT"
|
1413
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.encryption_info.encryption_in_transit.in_cluster #=> Boolean
|
1414
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.connectivity_info.public_access.type #=> String
|
1415
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
|
1416
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
1417
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
1418
|
+
# resp.cluster_operation_info.provisioned.source_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
1419
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.broker_ebs_volume_info #=> Array
|
1420
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
|
1421
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
|
1422
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
|
1423
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
|
1424
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.configuration_info.arn #=> String
|
1425
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.configuration_info.revision #=> Integer
|
1426
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.number_of_broker_nodes #=> Integer
|
1427
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
|
1428
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
|
1429
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
|
1430
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.kafka_version #=> String
|
1431
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.cloud_watch_logs.enabled #=> Boolean
|
1432
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.cloud_watch_logs.log_group #=> String
|
1433
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.firehose.delivery_stream #=> String
|
1434
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.firehose.enabled #=> Boolean
|
1435
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.s3.bucket #=> String
|
1436
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.s3.enabled #=> Boolean
|
1437
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.logging_info.broker_logs.s3.prefix #=> String
|
1438
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.instance_type #=> String
|
1439
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.sasl.scram.enabled #=> Boolean
|
1440
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.sasl.iam.enabled #=> Boolean
|
1441
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.tls.certificate_authority_arn_list #=> Array
|
1442
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.tls.certificate_authority_arn_list[0] #=> String
|
1443
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.tls.enabled #=> Boolean
|
1444
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.client_authentication.unauthenticated.enabled #=> Boolean
|
1445
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.encryption_info.encryption_at_rest.data_volume_kms_key_id #=> String
|
1446
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.encryption_info.encryption_in_transit.client_broker #=> String, one of "TLS", "TLS_PLAINTEXT", "PLAINTEXT"
|
1447
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.encryption_info.encryption_in_transit.in_cluster #=> Boolean
|
1448
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.connectivity_info.public_access.type #=> String
|
1449
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
|
1450
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
1451
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
1452
|
+
# resp.cluster_operation_info.provisioned.target_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
1453
|
+
# resp.cluster_operation_info.provisioned.vpc_connection_info.vpc_connection_arn #=> String
|
1454
|
+
# resp.cluster_operation_info.provisioned.vpc_connection_info.owner #=> String
|
1455
|
+
# resp.cluster_operation_info.provisioned.vpc_connection_info.user_identity.type #=> String, one of "AWSACCOUNT", "AWSSERVICE"
|
1456
|
+
# resp.cluster_operation_info.provisioned.vpc_connection_info.user_identity.principal_id #=> String
|
1457
|
+
# resp.cluster_operation_info.provisioned.vpc_connection_info.creation_time #=> Time
|
1458
|
+
# resp.cluster_operation_info.serverless.vpc_connection_info.creation_time #=> Time
|
1459
|
+
# resp.cluster_operation_info.serverless.vpc_connection_info.owner #=> String
|
1460
|
+
# resp.cluster_operation_info.serverless.vpc_connection_info.user_identity.type #=> String, one of "AWSACCOUNT", "AWSSERVICE"
|
1461
|
+
# resp.cluster_operation_info.serverless.vpc_connection_info.user_identity.principal_id #=> String
|
1462
|
+
# resp.cluster_operation_info.serverless.vpc_connection_info.vpc_connection_arn #=> String
|
1463
|
+
#
|
1464
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeClusterOperationV2 AWS API Documentation
|
1465
|
+
#
|
1466
|
+
# @overload describe_cluster_operation_v2(params = {})
|
1467
|
+
# @param [Hash] params ({})
|
1468
|
+
def describe_cluster_operation_v2(params = {}, options = {})
|
1469
|
+
req = build_request(:describe_cluster_operation_v2, params)
|
1470
|
+
req.send_request(options)
|
1471
|
+
end
|
1472
|
+
|
1018
1473
|
# Returns a description of this MSK configuration.
|
1019
1474
|
#
|
1020
1475
|
# @option params [required, String] :arn
|
@@ -1095,6 +1550,128 @@ module Aws::Kafka
|
|
1095
1550
|
req.send_request(options)
|
1096
1551
|
end
|
1097
1552
|
|
1553
|
+
# Returns a description of the Kafka Replicator whose Amazon Resource
|
1554
|
+
# Name (ARN) is specified in the request.
|
1555
|
+
#
|
1556
|
+
# @option params [required, String] :replicator_arn
|
1557
|
+
#
|
1558
|
+
# @return [Types::DescribeReplicatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1559
|
+
#
|
1560
|
+
# * {Types::DescribeReplicatorResponse#creation_time #creation_time} => Time
|
1561
|
+
# * {Types::DescribeReplicatorResponse#current_version #current_version} => String
|
1562
|
+
# * {Types::DescribeReplicatorResponse#is_replicator_reference #is_replicator_reference} => Boolean
|
1563
|
+
# * {Types::DescribeReplicatorResponse#kafka_clusters #kafka_clusters} => Array<Types::KafkaClusterDescription>
|
1564
|
+
# * {Types::DescribeReplicatorResponse#replication_info_list #replication_info_list} => Array<Types::ReplicationInfoDescription>
|
1565
|
+
# * {Types::DescribeReplicatorResponse#replicator_arn #replicator_arn} => String
|
1566
|
+
# * {Types::DescribeReplicatorResponse#replicator_description #replicator_description} => String
|
1567
|
+
# * {Types::DescribeReplicatorResponse#replicator_name #replicator_name} => String
|
1568
|
+
# * {Types::DescribeReplicatorResponse#replicator_resource_arn #replicator_resource_arn} => String
|
1569
|
+
# * {Types::DescribeReplicatorResponse#replicator_state #replicator_state} => String
|
1570
|
+
# * {Types::DescribeReplicatorResponse#service_execution_role_arn #service_execution_role_arn} => String
|
1571
|
+
# * {Types::DescribeReplicatorResponse#state_info #state_info} => Types::ReplicationStateInfo
|
1572
|
+
# * {Types::DescribeReplicatorResponse#tags #tags} => Hash<String,String>
|
1573
|
+
#
|
1574
|
+
# @example Request syntax with placeholder values
|
1575
|
+
#
|
1576
|
+
# resp = client.describe_replicator({
|
1577
|
+
# replicator_arn: "__string", # required
|
1578
|
+
# })
|
1579
|
+
#
|
1580
|
+
# @example Response structure
|
1581
|
+
#
|
1582
|
+
# resp.creation_time #=> Time
|
1583
|
+
# resp.current_version #=> String
|
1584
|
+
# resp.is_replicator_reference #=> Boolean
|
1585
|
+
# resp.kafka_clusters #=> Array
|
1586
|
+
# resp.kafka_clusters[0].amazon_msk_cluster.msk_cluster_arn #=> String
|
1587
|
+
# resp.kafka_clusters[0].kafka_cluster_alias #=> String
|
1588
|
+
# resp.kafka_clusters[0].vpc_config.security_group_ids #=> Array
|
1589
|
+
# resp.kafka_clusters[0].vpc_config.security_group_ids[0] #=> String
|
1590
|
+
# resp.kafka_clusters[0].vpc_config.subnet_ids #=> Array
|
1591
|
+
# resp.kafka_clusters[0].vpc_config.subnet_ids[0] #=> String
|
1592
|
+
# resp.replication_info_list #=> Array
|
1593
|
+
# resp.replication_info_list[0].consumer_group_replication.consumer_groups_to_exclude #=> Array
|
1594
|
+
# resp.replication_info_list[0].consumer_group_replication.consumer_groups_to_exclude[0] #=> String
|
1595
|
+
# resp.replication_info_list[0].consumer_group_replication.consumer_groups_to_replicate #=> Array
|
1596
|
+
# resp.replication_info_list[0].consumer_group_replication.consumer_groups_to_replicate[0] #=> String
|
1597
|
+
# resp.replication_info_list[0].consumer_group_replication.detect_and_copy_new_consumer_groups #=> Boolean
|
1598
|
+
# resp.replication_info_list[0].consumer_group_replication.synchronise_consumer_group_offsets #=> Boolean
|
1599
|
+
# resp.replication_info_list[0].source_kafka_cluster_alias #=> String
|
1600
|
+
# resp.replication_info_list[0].target_compression_type #=> String, one of "NONE", "GZIP", "SNAPPY", "LZ4", "ZSTD"
|
1601
|
+
# resp.replication_info_list[0].target_kafka_cluster_alias #=> String
|
1602
|
+
# resp.replication_info_list[0].topic_replication.copy_access_control_lists_for_topics #=> Boolean
|
1603
|
+
# resp.replication_info_list[0].topic_replication.copy_topic_configurations #=> Boolean
|
1604
|
+
# resp.replication_info_list[0].topic_replication.detect_and_copy_new_topics #=> Boolean
|
1605
|
+
# resp.replication_info_list[0].topic_replication.topics_to_exclude #=> Array
|
1606
|
+
# resp.replication_info_list[0].topic_replication.topics_to_exclude[0] #=> String
|
1607
|
+
# resp.replication_info_list[0].topic_replication.topics_to_replicate #=> Array
|
1608
|
+
# resp.replication_info_list[0].topic_replication.topics_to_replicate[0] #=> String
|
1609
|
+
# resp.replicator_arn #=> String
|
1610
|
+
# resp.replicator_description #=> String
|
1611
|
+
# resp.replicator_name #=> String
|
1612
|
+
# resp.replicator_resource_arn #=> String
|
1613
|
+
# resp.replicator_state #=> String, one of "RUNNING", "CREATING", "UPDATING", "DELETING", "FAILED"
|
1614
|
+
# resp.service_execution_role_arn #=> String
|
1615
|
+
# resp.state_info.code #=> String
|
1616
|
+
# resp.state_info.message #=> String
|
1617
|
+
# resp.tags #=> Hash
|
1618
|
+
# resp.tags["__string"] #=> String
|
1619
|
+
#
|
1620
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeReplicator AWS API Documentation
|
1621
|
+
#
|
1622
|
+
# @overload describe_replicator(params = {})
|
1623
|
+
# @param [Hash] params ({})
|
1624
|
+
def describe_replicator(params = {}, options = {})
|
1625
|
+
req = build_request(:describe_replicator, params)
|
1626
|
+
req.send_request(options)
|
1627
|
+
end
|
1628
|
+
|
1629
|
+
# Displays information about the specified Amazon MSK VPC connection.
|
1630
|
+
#
|
1631
|
+
# @option params [required, String] :arn
|
1632
|
+
#
|
1633
|
+
# @return [Types::DescribeVpcConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1634
|
+
#
|
1635
|
+
# * {Types::DescribeVpcConnectionResponse#vpc_connection_arn #vpc_connection_arn} => String
|
1636
|
+
# * {Types::DescribeVpcConnectionResponse#target_cluster_arn #target_cluster_arn} => String
|
1637
|
+
# * {Types::DescribeVpcConnectionResponse#state #state} => String
|
1638
|
+
# * {Types::DescribeVpcConnectionResponse#authentication #authentication} => String
|
1639
|
+
# * {Types::DescribeVpcConnectionResponse#vpc_id #vpc_id} => String
|
1640
|
+
# * {Types::DescribeVpcConnectionResponse#subnets #subnets} => Array<String>
|
1641
|
+
# * {Types::DescribeVpcConnectionResponse#security_groups #security_groups} => Array<String>
|
1642
|
+
# * {Types::DescribeVpcConnectionResponse#creation_time #creation_time} => Time
|
1643
|
+
# * {Types::DescribeVpcConnectionResponse#tags #tags} => Hash<String,String>
|
1644
|
+
#
|
1645
|
+
# @example Request syntax with placeholder values
|
1646
|
+
#
|
1647
|
+
# resp = client.describe_vpc_connection({
|
1648
|
+
# arn: "__string", # required
|
1649
|
+
# })
|
1650
|
+
#
|
1651
|
+
# @example Response structure
|
1652
|
+
#
|
1653
|
+
# resp.vpc_connection_arn #=> String
|
1654
|
+
# resp.target_cluster_arn #=> String
|
1655
|
+
# resp.state #=> String, one of "CREATING", "AVAILABLE", "INACTIVE", "DEACTIVATING", "DELETING", "FAILED", "REJECTED", "REJECTING"
|
1656
|
+
# resp.authentication #=> String
|
1657
|
+
# resp.vpc_id #=> String
|
1658
|
+
# resp.subnets #=> Array
|
1659
|
+
# resp.subnets[0] #=> String
|
1660
|
+
# resp.security_groups #=> Array
|
1661
|
+
# resp.security_groups[0] #=> String
|
1662
|
+
# resp.creation_time #=> Time
|
1663
|
+
# resp.tags #=> Hash
|
1664
|
+
# resp.tags["__string"] #=> String
|
1665
|
+
#
|
1666
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeVpcConnection AWS API Documentation
|
1667
|
+
#
|
1668
|
+
# @overload describe_vpc_connection(params = {})
|
1669
|
+
# @param [Hash] params ({})
|
1670
|
+
def describe_vpc_connection(params = {}, options = {})
|
1671
|
+
req = build_request(:describe_vpc_connection, params)
|
1672
|
+
req.send_request(options)
|
1673
|
+
end
|
1674
|
+
|
1098
1675
|
# Disassociates one or more Scram Secrets from an Amazon MSK cluster.
|
1099
1676
|
#
|
1100
1677
|
# @option params [required, String] :cluster_arn
|
@@ -1144,6 +1721,9 @@ module Aws::Kafka
|
|
1144
1721
|
# * {Types::GetBootstrapBrokersResponse#bootstrap_broker_string_tls #bootstrap_broker_string_tls} => String
|
1145
1722
|
# * {Types::GetBootstrapBrokersResponse#bootstrap_broker_string_sasl_scram #bootstrap_broker_string_sasl_scram} => String
|
1146
1723
|
# * {Types::GetBootstrapBrokersResponse#bootstrap_broker_string_sasl_iam #bootstrap_broker_string_sasl_iam} => String
|
1724
|
+
# * {Types::GetBootstrapBrokersResponse#bootstrap_broker_string_vpc_connectivity_tls #bootstrap_broker_string_vpc_connectivity_tls} => String
|
1725
|
+
# * {Types::GetBootstrapBrokersResponse#bootstrap_broker_string_vpc_connectivity_sasl_scram #bootstrap_broker_string_vpc_connectivity_sasl_scram} => String
|
1726
|
+
# * {Types::GetBootstrapBrokersResponse#bootstrap_broker_string_vpc_connectivity_sasl_iam #bootstrap_broker_string_vpc_connectivity_sasl_iam} => String
|
1147
1727
|
#
|
1148
1728
|
# @example Request syntax with placeholder values
|
1149
1729
|
#
|
@@ -1160,6 +1740,9 @@ module Aws::Kafka
|
|
1160
1740
|
# resp.bootstrap_broker_string_tls #=> String
|
1161
1741
|
# resp.bootstrap_broker_string_sasl_scram #=> String
|
1162
1742
|
# resp.bootstrap_broker_string_sasl_iam #=> String
|
1743
|
+
# resp.bootstrap_broker_string_vpc_connectivity_tls #=> String
|
1744
|
+
# resp.bootstrap_broker_string_vpc_connectivity_sasl_scram #=> String
|
1745
|
+
# resp.bootstrap_broker_string_vpc_connectivity_sasl_iam #=> String
|
1163
1746
|
#
|
1164
1747
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetBootstrapBrokers AWS API Documentation
|
1165
1748
|
#
|
@@ -1242,6 +1825,8 @@ module Aws::Kafka
|
|
1242
1825
|
# resp.cluster_operation_info_list[0].operation_type #=> String
|
1243
1826
|
# resp.cluster_operation_info_list[0].source_cluster_info.broker_ebs_volume_info #=> Array
|
1244
1827
|
# resp.cluster_operation_info_list[0].source_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
|
1828
|
+
# resp.cluster_operation_info_list[0].source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
|
1829
|
+
# resp.cluster_operation_info_list[0].source_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
|
1245
1830
|
# resp.cluster_operation_info_list[0].source_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
|
1246
1831
|
# resp.cluster_operation_info_list[0].source_cluster_info.configuration_info.arn #=> String
|
1247
1832
|
# resp.cluster_operation_info_list[0].source_cluster_info.configuration_info.revision #=> Integer
|
@@ -1268,8 +1853,14 @@ module Aws::Kafka
|
|
1268
1853
|
# resp.cluster_operation_info_list[0].source_cluster_info.encryption_info.encryption_in_transit.client_broker #=> String, one of "TLS", "TLS_PLAINTEXT", "PLAINTEXT"
|
1269
1854
|
# resp.cluster_operation_info_list[0].source_cluster_info.encryption_info.encryption_in_transit.in_cluster #=> Boolean
|
1270
1855
|
# resp.cluster_operation_info_list[0].source_cluster_info.connectivity_info.public_access.type #=> String
|
1856
|
+
# resp.cluster_operation_info_list[0].source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
|
1857
|
+
# resp.cluster_operation_info_list[0].source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
1858
|
+
# resp.cluster_operation_info_list[0].source_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
1859
|
+
# resp.cluster_operation_info_list[0].source_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
1271
1860
|
# resp.cluster_operation_info_list[0].target_cluster_info.broker_ebs_volume_info #=> Array
|
1272
1861
|
# resp.cluster_operation_info_list[0].target_cluster_info.broker_ebs_volume_info[0].kafka_broker_node_id #=> String
|
1862
|
+
# resp.cluster_operation_info_list[0].target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.enabled #=> Boolean
|
1863
|
+
# resp.cluster_operation_info_list[0].target_cluster_info.broker_ebs_volume_info[0].provisioned_throughput.volume_throughput #=> Integer
|
1273
1864
|
# resp.cluster_operation_info_list[0].target_cluster_info.broker_ebs_volume_info[0].volume_size_gb #=> Integer
|
1274
1865
|
# resp.cluster_operation_info_list[0].target_cluster_info.configuration_info.arn #=> String
|
1275
1866
|
# resp.cluster_operation_info_list[0].target_cluster_info.configuration_info.revision #=> Integer
|
@@ -1296,6 +1887,15 @@ module Aws::Kafka
|
|
1296
1887
|
# resp.cluster_operation_info_list[0].target_cluster_info.encryption_info.encryption_in_transit.client_broker #=> String, one of "TLS", "TLS_PLAINTEXT", "PLAINTEXT"
|
1297
1888
|
# resp.cluster_operation_info_list[0].target_cluster_info.encryption_info.encryption_in_transit.in_cluster #=> Boolean
|
1298
1889
|
# resp.cluster_operation_info_list[0].target_cluster_info.connectivity_info.public_access.type #=> String
|
1890
|
+
# resp.cluster_operation_info_list[0].target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
|
1891
|
+
# resp.cluster_operation_info_list[0].target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
1892
|
+
# resp.cluster_operation_info_list[0].target_cluster_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
1893
|
+
# resp.cluster_operation_info_list[0].target_cluster_info.storage_mode #=> String, one of "LOCAL", "TIERED"
|
1894
|
+
# resp.cluster_operation_info_list[0].vpc_connection_info.vpc_connection_arn #=> String
|
1895
|
+
# resp.cluster_operation_info_list[0].vpc_connection_info.owner #=> String
|
1896
|
+
# resp.cluster_operation_info_list[0].vpc_connection_info.user_identity.type #=> String, one of "AWSACCOUNT", "AWSSERVICE"
|
1897
|
+
# resp.cluster_operation_info_list[0].vpc_connection_info.user_identity.principal_id #=> String
|
1898
|
+
# resp.cluster_operation_info_list[0].vpc_connection_info.creation_time #=> Time
|
1299
1899
|
# resp.next_token #=> String
|
1300
1900
|
#
|
1301
1901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusterOperations AWS API Documentation
|
@@ -1307,6 +1907,51 @@ module Aws::Kafka
|
|
1307
1907
|
req.send_request(options)
|
1308
1908
|
end
|
1309
1909
|
|
1910
|
+
# Returns a list of all the operations that have been performed on the
|
1911
|
+
# specified MSK cluster.
|
1912
|
+
#
|
1913
|
+
# @option params [required, String] :cluster_arn
|
1914
|
+
#
|
1915
|
+
# @option params [Integer] :max_results
|
1916
|
+
#
|
1917
|
+
# @option params [String] :next_token
|
1918
|
+
#
|
1919
|
+
# @return [Types::ListClusterOperationsV2Response] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1920
|
+
#
|
1921
|
+
# * {Types::ListClusterOperationsV2Response#cluster_operation_info_list #cluster_operation_info_list} => Array<Types::ClusterOperationV2Summary>
|
1922
|
+
# * {Types::ListClusterOperationsV2Response#next_token #next_token} => String
|
1923
|
+
#
|
1924
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1925
|
+
#
|
1926
|
+
# @example Request syntax with placeholder values
|
1927
|
+
#
|
1928
|
+
# resp = client.list_cluster_operations_v2({
|
1929
|
+
# cluster_arn: "__string", # required
|
1930
|
+
# max_results: 1,
|
1931
|
+
# next_token: "__string",
|
1932
|
+
# })
|
1933
|
+
#
|
1934
|
+
# @example Response structure
|
1935
|
+
#
|
1936
|
+
# resp.cluster_operation_info_list #=> Array
|
1937
|
+
# resp.cluster_operation_info_list[0].cluster_arn #=> String
|
1938
|
+
# resp.cluster_operation_info_list[0].cluster_type #=> String, one of "PROVISIONED", "SERVERLESS"
|
1939
|
+
# resp.cluster_operation_info_list[0].start_time #=> Time
|
1940
|
+
# resp.cluster_operation_info_list[0].end_time #=> Time
|
1941
|
+
# resp.cluster_operation_info_list[0].operation_arn #=> String
|
1942
|
+
# resp.cluster_operation_info_list[0].operation_state #=> String
|
1943
|
+
# resp.cluster_operation_info_list[0].operation_type #=> String
|
1944
|
+
# resp.next_token #=> String
|
1945
|
+
#
|
1946
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusterOperationsV2 AWS API Documentation
|
1947
|
+
#
|
1948
|
+
# @overload list_cluster_operations_v2(params = {})
|
1949
|
+
# @param [Hash] params ({})
|
1950
|
+
def list_cluster_operations_v2(params = {}, options = {})
|
1951
|
+
req = build_request(:list_cluster_operations_v2, params)
|
1952
|
+
req.send_request(options)
|
1953
|
+
end
|
1954
|
+
|
1310
1955
|
# Returns a list of all the MSK clusters in the current Region.
|
1311
1956
|
#
|
1312
1957
|
# @option params [String] :cluster_name_filter
|
@@ -1340,8 +1985,15 @@ module Aws::Kafka
|
|
1340
1985
|
# resp.cluster_info_list[0].broker_node_group_info.instance_type #=> String
|
1341
1986
|
# resp.cluster_info_list[0].broker_node_group_info.security_groups #=> Array
|
1342
1987
|
# resp.cluster_info_list[0].broker_node_group_info.security_groups[0] #=> String
|
1988
|
+
# resp.cluster_info_list[0].broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.enabled #=> Boolean
|
1989
|
+
# resp.cluster_info_list[0].broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.volume_throughput #=> Integer
|
1343
1990
|
# resp.cluster_info_list[0].broker_node_group_info.storage_info.ebs_storage_info.volume_size #=> Integer
|
1344
1991
|
# resp.cluster_info_list[0].broker_node_group_info.connectivity_info.public_access.type #=> String
|
1992
|
+
# resp.cluster_info_list[0].broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
|
1993
|
+
# resp.cluster_info_list[0].broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
1994
|
+
# resp.cluster_info_list[0].broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
1995
|
+
# resp.cluster_info_list[0].broker_node_group_info.zone_ids #=> Array
|
1996
|
+
# resp.cluster_info_list[0].broker_node_group_info.zone_ids[0] #=> String
|
1345
1997
|
# resp.cluster_info_list[0].client_authentication.sasl.scram.enabled #=> Boolean
|
1346
1998
|
# resp.cluster_info_list[0].client_authentication.sasl.iam.enabled #=> Boolean
|
1347
1999
|
# resp.cluster_info_list[0].client_authentication.tls.certificate_authority_arn_list #=> Array
|
@@ -1376,6 +2028,7 @@ module Aws::Kafka
|
|
1376
2028
|
# resp.cluster_info_list[0].tags["__string"] #=> String
|
1377
2029
|
# resp.cluster_info_list[0].zookeeper_connect_string #=> String
|
1378
2030
|
# resp.cluster_info_list[0].zookeeper_connect_string_tls #=> String
|
2031
|
+
# resp.cluster_info_list[0].storage_mode #=> String, one of "LOCAL", "TIERED"
|
1379
2032
|
# resp.next_token #=> String
|
1380
2033
|
#
|
1381
2034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusters AWS API Documentation
|
@@ -1441,8 +2094,15 @@ module Aws::Kafka
|
|
1441
2094
|
# resp.cluster_info_list[0].provisioned.broker_node_group_info.instance_type #=> String
|
1442
2095
|
# resp.cluster_info_list[0].provisioned.broker_node_group_info.security_groups #=> Array
|
1443
2096
|
# resp.cluster_info_list[0].provisioned.broker_node_group_info.security_groups[0] #=> String
|
2097
|
+
# resp.cluster_info_list[0].provisioned.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.enabled #=> Boolean
|
2098
|
+
# resp.cluster_info_list[0].provisioned.broker_node_group_info.storage_info.ebs_storage_info.provisioned_throughput.volume_throughput #=> Integer
|
1444
2099
|
# resp.cluster_info_list[0].provisioned.broker_node_group_info.storage_info.ebs_storage_info.volume_size #=> Integer
|
1445
2100
|
# resp.cluster_info_list[0].provisioned.broker_node_group_info.connectivity_info.public_access.type #=> String
|
2101
|
+
# resp.cluster_info_list[0].provisioned.broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.scram.enabled #=> Boolean
|
2102
|
+
# resp.cluster_info_list[0].provisioned.broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.sasl.iam.enabled #=> Boolean
|
2103
|
+
# resp.cluster_info_list[0].provisioned.broker_node_group_info.connectivity_info.vpc_connectivity.client_authentication.tls.enabled #=> Boolean
|
2104
|
+
# resp.cluster_info_list[0].provisioned.broker_node_group_info.zone_ids #=> Array
|
2105
|
+
# resp.cluster_info_list[0].provisioned.broker_node_group_info.zone_ids[0] #=> String
|
1446
2106
|
# resp.cluster_info_list[0].provisioned.current_broker_software_info.configuration_arn #=> String
|
1447
2107
|
# resp.cluster_info_list[0].provisioned.current_broker_software_info.configuration_revision #=> Integer
|
1448
2108
|
# resp.cluster_info_list[0].provisioned.current_broker_software_info.kafka_version #=> String
|
@@ -1468,6 +2128,7 @@ module Aws::Kafka
|
|
1468
2128
|
# resp.cluster_info_list[0].provisioned.number_of_broker_nodes #=> Integer
|
1469
2129
|
# resp.cluster_info_list[0].provisioned.zookeeper_connect_string #=> String
|
1470
2130
|
# resp.cluster_info_list[0].provisioned.zookeeper_connect_string_tls #=> String
|
2131
|
+
# resp.cluster_info_list[0].provisioned.storage_mode #=> String, one of "LOCAL", "TIERED"
|
1471
2132
|
# resp.cluster_info_list[0].serverless.vpc_configs #=> Array
|
1472
2133
|
# resp.cluster_info_list[0].serverless.vpc_configs[0].subnet_ids #=> Array
|
1473
2134
|
# resp.cluster_info_list[0].serverless.vpc_configs[0].subnet_ids[0] #=> String
|
@@ -1661,6 +2322,56 @@ module Aws::Kafka
|
|
1661
2322
|
req.send_request(options)
|
1662
2323
|
end
|
1663
2324
|
|
2325
|
+
# Lists the replicators.
|
2326
|
+
#
|
2327
|
+
# @option params [Integer] :max_results
|
2328
|
+
#
|
2329
|
+
# @option params [String] :next_token
|
2330
|
+
#
|
2331
|
+
# @option params [String] :replicator_name_filter
|
2332
|
+
#
|
2333
|
+
# @return [Types::ListReplicatorsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2334
|
+
#
|
2335
|
+
# * {Types::ListReplicatorsResponse#next_token #next_token} => String
|
2336
|
+
# * {Types::ListReplicatorsResponse#replicators #replicators} => Array<Types::ReplicatorSummary>
|
2337
|
+
#
|
2338
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2339
|
+
#
|
2340
|
+
# @example Request syntax with placeholder values
|
2341
|
+
#
|
2342
|
+
# resp = client.list_replicators({
|
2343
|
+
# max_results: 1,
|
2344
|
+
# next_token: "__string",
|
2345
|
+
# replicator_name_filter: "__string",
|
2346
|
+
# })
|
2347
|
+
#
|
2348
|
+
# @example Response structure
|
2349
|
+
#
|
2350
|
+
# resp.next_token #=> String
|
2351
|
+
# resp.replicators #=> Array
|
2352
|
+
# resp.replicators[0].creation_time #=> Time
|
2353
|
+
# resp.replicators[0].current_version #=> String
|
2354
|
+
# resp.replicators[0].is_replicator_reference #=> Boolean
|
2355
|
+
# resp.replicators[0].kafka_clusters_summary #=> Array
|
2356
|
+
# resp.replicators[0].kafka_clusters_summary[0].amazon_msk_cluster.msk_cluster_arn #=> String
|
2357
|
+
# resp.replicators[0].kafka_clusters_summary[0].kafka_cluster_alias #=> String
|
2358
|
+
# resp.replicators[0].replication_info_summary_list #=> Array
|
2359
|
+
# resp.replicators[0].replication_info_summary_list[0].source_kafka_cluster_alias #=> String
|
2360
|
+
# resp.replicators[0].replication_info_summary_list[0].target_kafka_cluster_alias #=> String
|
2361
|
+
# resp.replicators[0].replicator_arn #=> String
|
2362
|
+
# resp.replicators[0].replicator_name #=> String
|
2363
|
+
# resp.replicators[0].replicator_resource_arn #=> String
|
2364
|
+
# resp.replicators[0].replicator_state #=> String, one of "RUNNING", "CREATING", "UPDATING", "DELETING", "FAILED"
|
2365
|
+
#
|
2366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListReplicators AWS API Documentation
|
2367
|
+
#
|
2368
|
+
# @overload list_replicators(params = {})
|
2369
|
+
# @param [Hash] params ({})
|
2370
|
+
def list_replicators(params = {}, options = {})
|
2371
|
+
req = build_request(:list_replicators, params)
|
2372
|
+
req.send_request(options)
|
2373
|
+
end
|
2374
|
+
|
1664
2375
|
# Returns a list of the Scram Secrets associated with an Amazon MSK
|
1665
2376
|
# cluster.
|
1666
2377
|
#
|
@@ -1728,6 +2439,195 @@ module Aws::Kafka
|
|
1728
2439
|
req.send_request(options)
|
1729
2440
|
end
|
1730
2441
|
|
2442
|
+
# Displays a list of client VPC connections.
|
2443
|
+
#
|
2444
|
+
# @option params [required, String] :cluster_arn
|
2445
|
+
#
|
2446
|
+
# @option params [Integer] :max_results
|
2447
|
+
#
|
2448
|
+
# @option params [String] :next_token
|
2449
|
+
#
|
2450
|
+
# @return [Types::ListClientVpcConnectionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2451
|
+
#
|
2452
|
+
# * {Types::ListClientVpcConnectionsResponse#next_token #next_token} => String
|
2453
|
+
# * {Types::ListClientVpcConnectionsResponse#client_vpc_connections #client_vpc_connections} => Array<Types::ClientVpcConnection>
|
2454
|
+
#
|
2455
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2456
|
+
#
|
2457
|
+
# @example Request syntax with placeholder values
|
2458
|
+
#
|
2459
|
+
# resp = client.list_client_vpc_connections({
|
2460
|
+
# cluster_arn: "__string", # required
|
2461
|
+
# max_results: 1,
|
2462
|
+
# next_token: "__string",
|
2463
|
+
# })
|
2464
|
+
#
|
2465
|
+
# @example Response structure
|
2466
|
+
#
|
2467
|
+
# resp.next_token #=> String
|
2468
|
+
# resp.client_vpc_connections #=> Array
|
2469
|
+
# resp.client_vpc_connections[0].authentication #=> String
|
2470
|
+
# resp.client_vpc_connections[0].creation_time #=> Time
|
2471
|
+
# resp.client_vpc_connections[0].state #=> String, one of "CREATING", "AVAILABLE", "INACTIVE", "DEACTIVATING", "DELETING", "FAILED", "REJECTED", "REJECTING"
|
2472
|
+
# resp.client_vpc_connections[0].vpc_connection_arn #=> String
|
2473
|
+
# resp.client_vpc_connections[0].owner #=> String
|
2474
|
+
#
|
2475
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClientVpcConnections AWS API Documentation
|
2476
|
+
#
|
2477
|
+
# @overload list_client_vpc_connections(params = {})
|
2478
|
+
# @param [Hash] params ({})
|
2479
|
+
def list_client_vpc_connections(params = {}, options = {})
|
2480
|
+
req = build_request(:list_client_vpc_connections, params)
|
2481
|
+
req.send_request(options)
|
2482
|
+
end
|
2483
|
+
|
2484
|
+
# Displays a list of Amazon MSK VPC connections.
|
2485
|
+
#
|
2486
|
+
# @option params [Integer] :max_results
|
2487
|
+
#
|
2488
|
+
# @option params [String] :next_token
|
2489
|
+
#
|
2490
|
+
# @return [Types::ListVpcConnectionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2491
|
+
#
|
2492
|
+
# * {Types::ListVpcConnectionsResponse#next_token #next_token} => String
|
2493
|
+
# * {Types::ListVpcConnectionsResponse#vpc_connections #vpc_connections} => Array<Types::VpcConnection>
|
2494
|
+
#
|
2495
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2496
|
+
#
|
2497
|
+
# @example Request syntax with placeholder values
|
2498
|
+
#
|
2499
|
+
# resp = client.list_vpc_connections({
|
2500
|
+
# max_results: 1,
|
2501
|
+
# next_token: "__string",
|
2502
|
+
# })
|
2503
|
+
#
|
2504
|
+
# @example Response structure
|
2505
|
+
#
|
2506
|
+
# resp.next_token #=> String
|
2507
|
+
# resp.vpc_connections #=> Array
|
2508
|
+
# resp.vpc_connections[0].vpc_connection_arn #=> String
|
2509
|
+
# resp.vpc_connections[0].target_cluster_arn #=> String
|
2510
|
+
# resp.vpc_connections[0].creation_time #=> Time
|
2511
|
+
# resp.vpc_connections[0].authentication #=> String
|
2512
|
+
# resp.vpc_connections[0].vpc_id #=> String
|
2513
|
+
# resp.vpc_connections[0].state #=> String, one of "CREATING", "AVAILABLE", "INACTIVE", "DEACTIVATING", "DELETING", "FAILED", "REJECTED", "REJECTING"
|
2514
|
+
#
|
2515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListVpcConnections AWS API Documentation
|
2516
|
+
#
|
2517
|
+
# @overload list_vpc_connections(params = {})
|
2518
|
+
# @param [Hash] params ({})
|
2519
|
+
def list_vpc_connections(params = {}, options = {})
|
2520
|
+
req = build_request(:list_vpc_connections, params)
|
2521
|
+
req.send_request(options)
|
2522
|
+
end
|
2523
|
+
|
2524
|
+
# @option params [required, String] :cluster_arn
|
2525
|
+
#
|
2526
|
+
# @option params [required, String] :vpc_connection_arn
|
2527
|
+
#
|
2528
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2529
|
+
#
|
2530
|
+
# @example Request syntax with placeholder values
|
2531
|
+
#
|
2532
|
+
# resp = client.reject_client_vpc_connection({
|
2533
|
+
# cluster_arn: "__string", # required
|
2534
|
+
# vpc_connection_arn: "__string", # required
|
2535
|
+
# })
|
2536
|
+
#
|
2537
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/RejectClientVpcConnection AWS API Documentation
|
2538
|
+
#
|
2539
|
+
# @overload reject_client_vpc_connection(params = {})
|
2540
|
+
# @param [Hash] params ({})
|
2541
|
+
def reject_client_vpc_connection(params = {}, options = {})
|
2542
|
+
req = build_request(:reject_client_vpc_connection, params)
|
2543
|
+
req.send_request(options)
|
2544
|
+
end
|
2545
|
+
|
2546
|
+
# Deletes the MSK cluster policy specified by the Amazon Resource Name
|
2547
|
+
# (ARN) in your request.
|
2548
|
+
#
|
2549
|
+
# @option params [required, String] :cluster_arn
|
2550
|
+
#
|
2551
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2552
|
+
#
|
2553
|
+
# @example Request syntax with placeholder values
|
2554
|
+
#
|
2555
|
+
# resp = client.delete_cluster_policy({
|
2556
|
+
# cluster_arn: "__string", # required
|
2557
|
+
# })
|
2558
|
+
#
|
2559
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteClusterPolicy AWS API Documentation
|
2560
|
+
#
|
2561
|
+
# @overload delete_cluster_policy(params = {})
|
2562
|
+
# @param [Hash] params ({})
|
2563
|
+
def delete_cluster_policy(params = {}, options = {})
|
2564
|
+
req = build_request(:delete_cluster_policy, params)
|
2565
|
+
req.send_request(options)
|
2566
|
+
end
|
2567
|
+
|
2568
|
+
# Retrieves the contents of the specified MSK cluster policy.
|
2569
|
+
#
|
2570
|
+
# @option params [required, String] :cluster_arn
|
2571
|
+
#
|
2572
|
+
# @return [Types::GetClusterPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2573
|
+
#
|
2574
|
+
# * {Types::GetClusterPolicyResponse#current_version #current_version} => String
|
2575
|
+
# * {Types::GetClusterPolicyResponse#policy #policy} => String
|
2576
|
+
#
|
2577
|
+
# @example Request syntax with placeholder values
|
2578
|
+
#
|
2579
|
+
# resp = client.get_cluster_policy({
|
2580
|
+
# cluster_arn: "__string", # required
|
2581
|
+
# })
|
2582
|
+
#
|
2583
|
+
# @example Response structure
|
2584
|
+
#
|
2585
|
+
# resp.current_version #=> String
|
2586
|
+
# resp.policy #=> String
|
2587
|
+
#
|
2588
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetClusterPolicy AWS API Documentation
|
2589
|
+
#
|
2590
|
+
# @overload get_cluster_policy(params = {})
|
2591
|
+
# @param [Hash] params ({})
|
2592
|
+
def get_cluster_policy(params = {}, options = {})
|
2593
|
+
req = build_request(:get_cluster_policy, params)
|
2594
|
+
req.send_request(options)
|
2595
|
+
end
|
2596
|
+
|
2597
|
+
# Creates or updates the specified MSK cluster policy. If updating the
|
2598
|
+
# policy, the currentVersion field is required in the request payload.
|
2599
|
+
#
|
2600
|
+
# @option params [required, String] :cluster_arn
|
2601
|
+
#
|
2602
|
+
# @option params [String] :current_version
|
2603
|
+
#
|
2604
|
+
# @option params [required, String] :policy
|
2605
|
+
#
|
2606
|
+
# @return [Types::PutClusterPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2607
|
+
#
|
2608
|
+
# * {Types::PutClusterPolicyResponse#current_version #current_version} => String
|
2609
|
+
#
|
2610
|
+
# @example Request syntax with placeholder values
|
2611
|
+
#
|
2612
|
+
# resp = client.put_cluster_policy({
|
2613
|
+
# cluster_arn: "__string", # required
|
2614
|
+
# current_version: "__string",
|
2615
|
+
# policy: "__string", # required
|
2616
|
+
# })
|
2617
|
+
#
|
2618
|
+
# @example Response structure
|
2619
|
+
#
|
2620
|
+
# resp.current_version #=> String
|
2621
|
+
#
|
2622
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/PutClusterPolicy AWS API Documentation
|
2623
|
+
#
|
2624
|
+
# @overload put_cluster_policy(params = {})
|
2625
|
+
# @param [Hash] params ({})
|
2626
|
+
def put_cluster_policy(params = {}, options = {})
|
2627
|
+
req = build_request(:put_cluster_policy, params)
|
2628
|
+
req.send_request(options)
|
2629
|
+
end
|
2630
|
+
|
1731
2631
|
# Executes a reboot on a broker.
|
1732
2632
|
#
|
1733
2633
|
# @option params [required, Array<String>] :broker_ids
|
@@ -1922,7 +2822,11 @@ module Aws::Kafka
|
|
1922
2822
|
# target_broker_ebs_volume_info: [ # required
|
1923
2823
|
# {
|
1924
2824
|
# kafka_broker_node_id: "__string", # required
|
1925
|
-
#
|
2825
|
+
# provisioned_throughput: {
|
2826
|
+
# enabled: false,
|
2827
|
+
# volume_throughput: 1,
|
2828
|
+
# },
|
2829
|
+
# volume_size_gb: 1,
|
1926
2830
|
# },
|
1927
2831
|
# ],
|
1928
2832
|
# })
|
@@ -2066,7 +2970,7 @@ module Aws::Kafka
|
|
2066
2970
|
req.send_request(options)
|
2067
2971
|
end
|
2068
2972
|
|
2069
|
-
# Updates the connectivity configuration for the cluster.
|
2973
|
+
# Updates the connectivity configuration for the MSK cluster.
|
2070
2974
|
#
|
2071
2975
|
# @option params [required, String] :cluster_arn
|
2072
2976
|
#
|
@@ -2089,6 +2993,21 @@ module Aws::Kafka
|
|
2089
2993
|
# public_access: {
|
2090
2994
|
# type: "__string",
|
2091
2995
|
# },
|
2996
|
+
# vpc_connectivity: {
|
2997
|
+
# client_authentication: {
|
2998
|
+
# sasl: {
|
2999
|
+
# scram: {
|
3000
|
+
# enabled: false,
|
3001
|
+
# },
|
3002
|
+
# iam: {
|
3003
|
+
# enabled: false,
|
3004
|
+
# },
|
3005
|
+
# },
|
3006
|
+
# tls: {
|
3007
|
+
# enabled: false,
|
3008
|
+
# },
|
3009
|
+
# },
|
3010
|
+
# },
|
2092
3011
|
# },
|
2093
3012
|
# current_version: "__string", # required
|
2094
3013
|
# })
|
@@ -2182,6 +3101,66 @@ module Aws::Kafka
|
|
2182
3101
|
req.send_request(options)
|
2183
3102
|
end
|
2184
3103
|
|
3104
|
+
# Updates replication info of a replicator.
|
3105
|
+
#
|
3106
|
+
# @option params [Types::ConsumerGroupReplicationUpdate] :consumer_group_replication
|
3107
|
+
# Updated consumer group replication information.
|
3108
|
+
#
|
3109
|
+
# @option params [required, String] :current_version
|
3110
|
+
# Current replicator version.
|
3111
|
+
#
|
3112
|
+
# @option params [required, String] :replicator_arn
|
3113
|
+
#
|
3114
|
+
# @option params [required, String] :source_kafka_cluster_arn
|
3115
|
+
# The ARN of the source Kafka cluster.
|
3116
|
+
#
|
3117
|
+
# @option params [required, String] :target_kafka_cluster_arn
|
3118
|
+
# The ARN of the target Kafka cluster.
|
3119
|
+
#
|
3120
|
+
# @option params [Types::TopicReplicationUpdate] :topic_replication
|
3121
|
+
# Updated topic replication information.
|
3122
|
+
#
|
3123
|
+
# @return [Types::UpdateReplicationInfoResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3124
|
+
#
|
3125
|
+
# * {Types::UpdateReplicationInfoResponse#replicator_arn #replicator_arn} => String
|
3126
|
+
# * {Types::UpdateReplicationInfoResponse#replicator_state #replicator_state} => String
|
3127
|
+
#
|
3128
|
+
# @example Request syntax with placeholder values
|
3129
|
+
#
|
3130
|
+
# resp = client.update_replication_info({
|
3131
|
+
# consumer_group_replication: {
|
3132
|
+
# consumer_groups_to_exclude: ["__stringMax256"], # required
|
3133
|
+
# consumer_groups_to_replicate: ["__stringMax256"], # required
|
3134
|
+
# detect_and_copy_new_consumer_groups: false, # required
|
3135
|
+
# synchronise_consumer_group_offsets: false, # required
|
3136
|
+
# },
|
3137
|
+
# current_version: "__string", # required
|
3138
|
+
# replicator_arn: "__string", # required
|
3139
|
+
# source_kafka_cluster_arn: "__string", # required
|
3140
|
+
# target_kafka_cluster_arn: "__string", # required
|
3141
|
+
# topic_replication: {
|
3142
|
+
# copy_access_control_lists_for_topics: false, # required
|
3143
|
+
# copy_topic_configurations: false, # required
|
3144
|
+
# detect_and_copy_new_topics: false, # required
|
3145
|
+
# topics_to_exclude: ["__stringMax249"], # required
|
3146
|
+
# topics_to_replicate: ["__stringMax249"], # required
|
3147
|
+
# },
|
3148
|
+
# })
|
3149
|
+
#
|
3150
|
+
# @example Response structure
|
3151
|
+
#
|
3152
|
+
# resp.replicator_arn #=> String
|
3153
|
+
# resp.replicator_state #=> String, one of "RUNNING", "CREATING", "UPDATING", "DELETING", "FAILED"
|
3154
|
+
#
|
3155
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateReplicationInfo AWS API Documentation
|
3156
|
+
#
|
3157
|
+
# @overload update_replication_info(params = {})
|
3158
|
+
# @param [Hash] params ({})
|
3159
|
+
def update_replication_info(params = {}, options = {})
|
3160
|
+
req = build_request(:update_replication_info, params)
|
3161
|
+
req.send_request(options)
|
3162
|
+
end
|
3163
|
+
|
2185
3164
|
# You can use this operation to update the encrypting and authentication
|
2186
3165
|
# settings for an existing cluster.
|
2187
3166
|
#
|
@@ -2250,6 +3229,56 @@ module Aws::Kafka
|
|
2250
3229
|
req.send_request(options)
|
2251
3230
|
end
|
2252
3231
|
|
3232
|
+
# Updates cluster broker volume size (or) sets cluster storage mode to
|
3233
|
+
# TIERED.
|
3234
|
+
#
|
3235
|
+
# @option params [required, String] :cluster_arn
|
3236
|
+
#
|
3237
|
+
# @option params [required, String] :current_version
|
3238
|
+
# The version of cluster to update from. A successful operation will
|
3239
|
+
# then generate a new version.
|
3240
|
+
#
|
3241
|
+
# @option params [Types::ProvisionedThroughput] :provisioned_throughput
|
3242
|
+
# EBS volume provisioned throughput information.
|
3243
|
+
#
|
3244
|
+
# @option params [String] :storage_mode
|
3245
|
+
# Controls storage mode for supported storage tiers.
|
3246
|
+
#
|
3247
|
+
# @option params [Integer] :volume_size_gb
|
3248
|
+
# size of the EBS volume to update.
|
3249
|
+
#
|
3250
|
+
# @return [Types::UpdateStorageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3251
|
+
#
|
3252
|
+
# * {Types::UpdateStorageResponse#cluster_arn #cluster_arn} => String
|
3253
|
+
# * {Types::UpdateStorageResponse#cluster_operation_arn #cluster_operation_arn} => String
|
3254
|
+
#
|
3255
|
+
# @example Request syntax with placeholder values
|
3256
|
+
#
|
3257
|
+
# resp = client.update_storage({
|
3258
|
+
# cluster_arn: "__string", # required
|
3259
|
+
# current_version: "__string", # required
|
3260
|
+
# provisioned_throughput: {
|
3261
|
+
# enabled: false,
|
3262
|
+
# volume_throughput: 1,
|
3263
|
+
# },
|
3264
|
+
# storage_mode: "LOCAL", # accepts LOCAL, TIERED
|
3265
|
+
# volume_size_gb: 1,
|
3266
|
+
# })
|
3267
|
+
#
|
3268
|
+
# @example Response structure
|
3269
|
+
#
|
3270
|
+
# resp.cluster_arn #=> String
|
3271
|
+
# resp.cluster_operation_arn #=> String
|
3272
|
+
#
|
3273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UpdateStorage AWS API Documentation
|
3274
|
+
#
|
3275
|
+
# @overload update_storage(params = {})
|
3276
|
+
# @param [Hash] params ({})
|
3277
|
+
def update_storage(params = {}, options = {})
|
3278
|
+
req = build_request(:update_storage, params)
|
3279
|
+
req.send_request(options)
|
3280
|
+
end
|
3281
|
+
|
2253
3282
|
# @!endgroup
|
2254
3283
|
|
2255
3284
|
# @param params ({})
|
@@ -2263,7 +3292,7 @@ module Aws::Kafka
|
|
2263
3292
|
params: params,
|
2264
3293
|
config: config)
|
2265
3294
|
context[:gem_name] = 'aws-sdk-kafka'
|
2266
|
-
context[:gem_version] = '1.
|
3295
|
+
context[:gem_version] = '1.64.0'
|
2267
3296
|
Seahorse::Client::Request.new(handlers, context)
|
2268
3297
|
end
|
2269
3298
|
|