aws-sdk-kafka 1.27.0 → 1.32.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d0d78b424cb6b2e9a58baa82a7cc170f6e36ba9ff75e3efa1f7ba99d1795637f
4
- data.tar.gz: b4bf6e91abdc92e87e602bee7b51cc0ef77c19dcaff83359b6cb7ba9f7e0439c
3
+ metadata.gz: 6a01b0720dceee4d48543477cf65de48ae9e764b41487e82c9938aa08aa88e44
4
+ data.tar.gz: 2a432ef9bec1dc69f2d264b98d1f646fbdfdb31110bfff41286867819f25625e
5
5
  SHA512:
6
- metadata.gz: b4a1091e3d8c2ad04af99aa6e371ac55efc569c5e55fca9306736d14c52d2292959ff804b76a6d4d21ef5eca00f02c792fa06d19a08a7b229ed9fd82290866af
7
- data.tar.gz: 1f5eb9d7c83dace507f33f9294ff639afef75227d89cfae0115df28a2aae25ffdfb77dec8e51e64b2bf7e831bf3e47845e7bacab91b59d3c1a626e701f66238d
6
+ metadata.gz: 57c77ef01aa9bbff5f76dc9f158a89f46a7435f0af8134783b3c82060529419c9609198e654cc56c631342631ac2f353a0e4c7d4b095e1f87b5b6eb00114e4b3
7
+ data.tar.gz: be81f61f1b72e448483ba93c7cf14727979e38404771b27a6b296d11aab7fa34af6f841699b3e62888140b62de0c15ca97f9bedf6062a2e15067a3bfebd7f93a
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-kafka/customizations'
48
48
  # @!group service
49
49
  module Aws::Kafka
50
50
 
51
- GEM_VERSION = '1.27.0'
51
+ GEM_VERSION = '1.32.0'
52
52
 
53
53
  end
@@ -382,7 +382,8 @@ module Aws::Kafka
382
382
  #
383
383
  # @option params [String] :enhanced_monitoring
384
384
  # Specifies the level of monitoring for the MSK cluster. The possible
385
- # values are DEFAULT, PER\_BROKER, and PER\_TOPIC\_PER\_BROKER.
385
+ # values are DEFAULT, PER\_BROKER, PER\_TOPIC\_PER\_BROKER, and
386
+ # PER\_TOPIC\_PER\_PARTITION.
386
387
  #
387
388
  # @option params [required, String] :kafka_version
388
389
  # The version of Apache Kafka.
@@ -443,7 +444,7 @@ module Aws::Kafka
443
444
  # in_cluster: false,
444
445
  # },
445
446
  # },
446
- # enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER
447
+ # enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
447
448
  # kafka_version: "__stringMin1Max128", # required
448
449
  # logging_info: {
449
450
  # broker_logs: { # required
@@ -482,7 +483,7 @@ module Aws::Kafka
482
483
  #
483
484
  # resp.cluster_arn #=> String
484
485
  # resp.cluster_name #=> String
485
- # resp.state #=> String, one of "ACTIVE", "CREATING", "UPDATING", "DELETING", "FAILED"
486
+ # resp.state #=> String, one of "ACTIVE", "CREATING", "DELETING", "FAILED", "HEALING", "MAINTENANCE", "REBOOTING_BROKER", "UPDATING"
486
487
  #
487
488
  # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateCluster AWS API Documentation
488
489
  #
@@ -566,7 +567,7 @@ module Aws::Kafka
566
567
  # @example Response structure
567
568
  #
568
569
  # resp.cluster_arn #=> String
569
- # resp.state #=> String, one of "ACTIVE", "CREATING", "UPDATING", "DELETING", "FAILED"
570
+ # resp.state #=> String, one of "ACTIVE", "CREATING", "DELETING", "FAILED", "HEALING", "MAINTENANCE", "REBOOTING_BROKER", "UPDATING"
570
571
  #
571
572
  # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteCluster AWS API Documentation
572
573
  #
@@ -653,14 +654,15 @@ module Aws::Kafka
653
654
  # resp.cluster_info.encryption_info.encryption_at_rest.data_volume_kms_key_id #=> String
654
655
  # resp.cluster_info.encryption_info.encryption_in_transit.client_broker #=> String, one of "TLS", "TLS_PLAINTEXT", "PLAINTEXT"
655
656
  # resp.cluster_info.encryption_info.encryption_in_transit.in_cluster #=> Boolean
656
- # resp.cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER"
657
+ # resp.cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
657
658
  # resp.cluster_info.number_of_broker_nodes #=> Integer
658
659
  # resp.cluster_info.open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
659
660
  # resp.cluster_info.open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
660
- # resp.cluster_info.state #=> String, one of "ACTIVE", "CREATING", "UPDATING", "DELETING", "FAILED"
661
+ # resp.cluster_info.state #=> String, one of "ACTIVE", "CREATING", "DELETING", "FAILED", "HEALING", "MAINTENANCE", "REBOOTING_BROKER", "UPDATING"
661
662
  # resp.cluster_info.tags #=> Hash
662
663
  # resp.cluster_info.tags["__string"] #=> String
663
664
  # resp.cluster_info.zookeeper_connect_string #=> String
665
+ # resp.cluster_info.zookeeper_connect_string_tls #=> String
664
666
  #
665
667
  # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeCluster AWS API Documentation
666
668
  #
@@ -707,7 +709,7 @@ module Aws::Kafka
707
709
  # resp.cluster_operation_info.source_cluster_info.number_of_broker_nodes #=> Integer
708
710
  # resp.cluster_operation_info.source_cluster_info.open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
709
711
  # resp.cluster_operation_info.source_cluster_info.open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
710
- # resp.cluster_operation_info.source_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER"
712
+ # resp.cluster_operation_info.source_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
711
713
  # resp.cluster_operation_info.source_cluster_info.kafka_version #=> String
712
714
  # resp.cluster_operation_info.source_cluster_info.logging_info.broker_logs.cloud_watch_logs.enabled #=> Boolean
713
715
  # resp.cluster_operation_info.source_cluster_info.logging_info.broker_logs.cloud_watch_logs.log_group #=> String
@@ -724,7 +726,7 @@ module Aws::Kafka
724
726
  # resp.cluster_operation_info.target_cluster_info.number_of_broker_nodes #=> Integer
725
727
  # resp.cluster_operation_info.target_cluster_info.open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
726
728
  # resp.cluster_operation_info.target_cluster_info.open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
727
- # resp.cluster_operation_info.target_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER"
729
+ # resp.cluster_operation_info.target_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
728
730
  # resp.cluster_operation_info.target_cluster_info.kafka_version #=> String
729
731
  # resp.cluster_operation_info.target_cluster_info.logging_info.broker_logs.cloud_watch_logs.enabled #=> Boolean
730
732
  # resp.cluster_operation_info.target_cluster_info.logging_info.broker_logs.cloud_watch_logs.log_group #=> String
@@ -968,7 +970,7 @@ module Aws::Kafka
968
970
  # resp.cluster_operation_info_list[0].source_cluster_info.number_of_broker_nodes #=> Integer
969
971
  # resp.cluster_operation_info_list[0].source_cluster_info.open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
970
972
  # resp.cluster_operation_info_list[0].source_cluster_info.open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
971
- # resp.cluster_operation_info_list[0].source_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER"
973
+ # resp.cluster_operation_info_list[0].source_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
972
974
  # resp.cluster_operation_info_list[0].source_cluster_info.kafka_version #=> String
973
975
  # resp.cluster_operation_info_list[0].source_cluster_info.logging_info.broker_logs.cloud_watch_logs.enabled #=> Boolean
974
976
  # resp.cluster_operation_info_list[0].source_cluster_info.logging_info.broker_logs.cloud_watch_logs.log_group #=> String
@@ -985,7 +987,7 @@ module Aws::Kafka
985
987
  # resp.cluster_operation_info_list[0].target_cluster_info.number_of_broker_nodes #=> Integer
986
988
  # resp.cluster_operation_info_list[0].target_cluster_info.open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
987
989
  # resp.cluster_operation_info_list[0].target_cluster_info.open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
988
- # resp.cluster_operation_info_list[0].target_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER"
990
+ # resp.cluster_operation_info_list[0].target_cluster_info.enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
989
991
  # resp.cluster_operation_info_list[0].target_cluster_info.kafka_version #=> String
990
992
  # resp.cluster_operation_info_list[0].target_cluster_info.logging_info.broker_logs.cloud_watch_logs.enabled #=> Boolean
991
993
  # resp.cluster_operation_info_list[0].target_cluster_info.logging_info.broker_logs.cloud_watch_logs.log_group #=> String
@@ -1059,14 +1061,15 @@ module Aws::Kafka
1059
1061
  # resp.cluster_info_list[0].encryption_info.encryption_at_rest.data_volume_kms_key_id #=> String
1060
1062
  # resp.cluster_info_list[0].encryption_info.encryption_in_transit.client_broker #=> String, one of "TLS", "TLS_PLAINTEXT", "PLAINTEXT"
1061
1063
  # resp.cluster_info_list[0].encryption_info.encryption_in_transit.in_cluster #=> Boolean
1062
- # resp.cluster_info_list[0].enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER"
1064
+ # resp.cluster_info_list[0].enhanced_monitoring #=> String, one of "DEFAULT", "PER_BROKER", "PER_TOPIC_PER_BROKER", "PER_TOPIC_PER_PARTITION"
1063
1065
  # resp.cluster_info_list[0].number_of_broker_nodes #=> Integer
1064
1066
  # resp.cluster_info_list[0].open_monitoring.prometheus.jmx_exporter.enabled_in_broker #=> Boolean
1065
1067
  # resp.cluster_info_list[0].open_monitoring.prometheus.node_exporter.enabled_in_broker #=> Boolean
1066
- # resp.cluster_info_list[0].state #=> String, one of "ACTIVE", "CREATING", "UPDATING", "DELETING", "FAILED"
1068
+ # resp.cluster_info_list[0].state #=> String, one of "ACTIVE", "CREATING", "DELETING", "FAILED", "HEALING", "MAINTENANCE", "REBOOTING_BROKER", "UPDATING"
1067
1069
  # resp.cluster_info_list[0].tags #=> Hash
1068
1070
  # resp.cluster_info_list[0].tags["__string"] #=> String
1069
1071
  # resp.cluster_info_list[0].zookeeper_connect_string #=> String
1072
+ # resp.cluster_info_list[0].zookeeper_connect_string_tls #=> String
1070
1073
  # resp.next_token #=> String
1071
1074
  #
1072
1075
  # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClusters AWS API Documentation
@@ -1652,7 +1655,7 @@ module Aws::Kafka
1652
1655
  # resp = client.update_monitoring({
1653
1656
  # cluster_arn: "__string", # required
1654
1657
  # current_version: "__string", # required
1655
- # enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER
1658
+ # enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
1656
1659
  # open_monitoring: {
1657
1660
  # prometheus: { # required
1658
1661
  # jmx_exporter: {
@@ -1709,7 +1712,7 @@ module Aws::Kafka
1709
1712
  params: params,
1710
1713
  config: config)
1711
1714
  context[:gem_name] = 'aws-sdk-kafka'
1712
- context[:gem_version] = '1.27.0'
1715
+ context[:gem_version] = '1.32.0'
1713
1716
  Seahorse::Client::Request.new(handlers, context)
1714
1717
  end
1715
1718
 
@@ -225,6 +225,7 @@ module Aws::Kafka
225
225
  ClusterInfo.add_member(:state, Shapes::ShapeRef.new(shape: ClusterState, location_name: "state"))
226
226
  ClusterInfo.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
227
227
  ClusterInfo.add_member(:zookeeper_connect_string, Shapes::ShapeRef.new(shape: __string, location_name: "zookeeperConnectString"))
228
+ ClusterInfo.add_member(:zookeeper_connect_string_tls, Shapes::ShapeRef.new(shape: __string, location_name: "zookeeperConnectStringTls"))
228
229
  ClusterInfo.struct_class = Types::ClusterInfo
229
230
 
230
231
  ClusterOperationInfo.add_member(:client_request_id, Shapes::ShapeRef.new(shape: __string, location_name: "clientRequestId"))
@@ -383,9 +383,10 @@ module Aws::Kafka
383
383
  #
384
384
  # @!attribute [rw] enhanced_monitoring
385
385
  # Specifies which metrics are gathered for the MSK cluster. This
386
- # property has three possible values: DEFAULT, PER\_BROKER, and
387
- # PER\_TOPIC\_PER\_BROKER. For a list of the metrics associated with
388
- # each of these three levels of monitoring, see [Monitoring][1].
386
+ # property has the following possible values: DEFAULT, PER\_BROKER,
387
+ # PER\_TOPIC\_PER\_BROKER, and PER\_TOPIC\_PER\_PARTITION. For a list
388
+ # of the metrics associated with each of these levels of monitoring,
389
+ # see [Monitoring][1].
389
390
  #
390
391
  #
391
392
  #
@@ -401,8 +402,9 @@ module Aws::Kafka
401
402
  # @return [Types::OpenMonitoring]
402
403
  #
403
404
  # @!attribute [rw] state
404
- # The state of the cluster. The possible states are CREATING, ACTIVE,
405
- # and FAILED.
405
+ # The state of the cluster. The possible states are ACTIVE, CREATING,
406
+ # DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING\_BROKER, and
407
+ # UPDATING.
406
408
  # @return [String]
407
409
  #
408
410
  # @!attribute [rw] tags
@@ -414,6 +416,11 @@ module Aws::Kafka
414
416
  # cluster.
415
417
  # @return [String]
416
418
  #
419
+ # @!attribute [rw] zookeeper_connect_string_tls
420
+ # The connection string to use to connect to zookeeper cluster on Tls
421
+ # port.
422
+ # @return [String]
423
+ #
417
424
  # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterInfo AWS API Documentation
418
425
  #
419
426
  class ClusterInfo < Struct.new(
@@ -432,7 +439,8 @@ module Aws::Kafka
432
439
  :open_monitoring,
433
440
  :state,
434
441
  :tags,
435
- :zookeeper_connect_string)
442
+ :zookeeper_connect_string,
443
+ :zookeeper_connect_string_tls)
436
444
  SENSITIVE = []
437
445
  include Aws::Structure
438
446
  end
@@ -707,7 +715,7 @@ module Aws::Kafka
707
715
  # in_cluster: false,
708
716
  # },
709
717
  # },
710
- # enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER
718
+ # enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
711
719
  # kafka_version: "__stringMin1Max128", # required
712
720
  # logging_info: {
713
721
  # broker_logs: { # required
@@ -765,7 +773,8 @@ module Aws::Kafka
765
773
  #
766
774
  # @!attribute [rw] enhanced_monitoring
767
775
  # Specifies the level of monitoring for the MSK cluster. The possible
768
- # values are DEFAULT, PER\_BROKER, and PER\_TOPIC\_PER\_BROKER.
776
+ # values are DEFAULT, PER\_BROKER, PER\_TOPIC\_PER\_BROKER, and
777
+ # PER\_TOPIC\_PER\_PARTITION.
769
778
  # @return [String]
770
779
  #
771
780
  # @!attribute [rw] kafka_version
@@ -817,8 +826,9 @@ module Aws::Kafka
817
826
  # @return [String]
818
827
  #
819
828
  # @!attribute [rw] state
820
- # The state of the cluster. The possible states are CREATING, ACTIVE,
821
- # and FAILED.
829
+ # The state of the cluster. The possible states are ACTIVE, CREATING,
830
+ # DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING\_BROKER, and
831
+ # UPDATING.
822
832
  # @return [String]
823
833
  #
824
834
  # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateClusterResponse AWS API Documentation
@@ -937,8 +947,9 @@ module Aws::Kafka
937
947
  # @return [String]
938
948
  #
939
949
  # @!attribute [rw] state
940
- # The state of the cluster. The possible states are CREATING, ACTIVE,
941
- # and FAILED.
950
+ # The state of the cluster. The possible states are ACTIVE, CREATING,
951
+ # DELETING, FAILED, HEALING, MAINTENANCE, REBOOTING\_BROKER, and
952
+ # UPDATING.
942
953
  # @return [String]
943
954
  #
944
955
  # @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteClusterResponse AWS API Documentation
@@ -2563,7 +2574,7 @@ module Aws::Kafka
2563
2574
  # {
2564
2575
  # cluster_arn: "__string", # required
2565
2576
  # current_version: "__string", # required
2566
- # enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER
2577
+ # enhanced_monitoring: "DEFAULT", # accepts DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, PER_TOPIC_PER_PARTITION
2567
2578
  # open_monitoring: {
2568
2579
  # prometheus: { # required
2569
2580
  # jmx_exporter: {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kafka
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.27.0
4
+ version: 1.32.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-15 00:00:00.000000000 Z
11
+ date: 2020-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.99.0
22
+ version: 3.109.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.99.0
32
+ version: 3.109.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement