aws-sdk-kafka 1.54.0 → 1.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kafka/client.rb +427 -2
- data/lib/aws-sdk-kafka/client_api.rb +300 -0
- data/lib/aws-sdk-kafka/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-kafka/endpoint_provider.rb +29 -26
- data/lib/aws-sdk-kafka/endpoints.rb +126 -0
- data/lib/aws-sdk-kafka/plugins/endpoints.rb +18 -0
- data/lib/aws-sdk-kafka/types.rb +614 -4
- data/lib/aws-sdk-kafka.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-kafka/types.rb
CHANGED
@@ -153,6 +153,10 @@ module Aws::Kafka
|
|
153
153
|
# Information about the broker access configuration.
|
154
154
|
# @return [Types::ConnectivityInfo]
|
155
155
|
#
|
156
|
+
# @!attribute [rw] zone_ids
|
157
|
+
# The zoneIds for the cluster.
|
158
|
+
# @return [Array<String>]
|
159
|
+
#
|
156
160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/BrokerNodeGroupInfo AWS API Documentation
|
157
161
|
#
|
158
162
|
class BrokerNodeGroupInfo < Struct.new(
|
@@ -161,7 +165,8 @@ module Aws::Kafka
|
|
161
165
|
:instance_type,
|
162
166
|
:security_groups,
|
163
167
|
:storage_info,
|
164
|
-
:connectivity_info
|
168
|
+
:connectivity_info,
|
169
|
+
:zone_ids)
|
165
170
|
SENSITIVE = []
|
166
171
|
include Aws::Structure
|
167
172
|
end
|
@@ -255,6 +260,21 @@ module Aws::Kafka
|
|
255
260
|
include Aws::Structure
|
256
261
|
end
|
257
262
|
|
263
|
+
# @!attribute [rw] sasl
|
264
|
+
# @return [Types::VpcConnectivitySasl]
|
265
|
+
#
|
266
|
+
# @!attribute [rw] tls
|
267
|
+
# @return [Types::VpcConnectivityTls]
|
268
|
+
#
|
269
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivityClientAuthentication AWS API Documentation
|
270
|
+
#
|
271
|
+
class VpcConnectivityClientAuthentication < Struct.new(
|
272
|
+
:sasl,
|
273
|
+
:tls)
|
274
|
+
SENSITIVE = []
|
275
|
+
include Aws::Structure
|
276
|
+
end
|
277
|
+
|
258
278
|
# Details of the CloudWatch Logs destination for broker logs.
|
259
279
|
#
|
260
280
|
# @!attribute [rw] enabled
|
@@ -442,6 +462,11 @@ module Aws::Kafka
|
|
442
462
|
# Information about cluster attributes after a cluster is updated.
|
443
463
|
# @return [Types::MutableClusterInfo]
|
444
464
|
#
|
465
|
+
# @!attribute [rw] vpc_connection_info
|
466
|
+
# Description of the VPC connection for CreateVpcConnection and
|
467
|
+
# DeleteVpcConnection operations.
|
468
|
+
# @return [Types::VpcConnectionInfo]
|
469
|
+
#
|
445
470
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClusterOperationInfo AWS API Documentation
|
446
471
|
#
|
447
472
|
class ClusterOperationInfo < Struct.new(
|
@@ -455,7 +480,8 @@ module Aws::Kafka
|
|
455
480
|
:operation_state,
|
456
481
|
:operation_type,
|
457
482
|
:source_cluster_info,
|
458
|
-
:target_cluster_info
|
483
|
+
:target_cluster_info,
|
484
|
+
:vpc_connection_info)
|
459
485
|
SENSITIVE = []
|
460
486
|
include Aws::Structure
|
461
487
|
end
|
@@ -493,6 +519,79 @@ module Aws::Kafka
|
|
493
519
|
include Aws::Structure
|
494
520
|
end
|
495
521
|
|
522
|
+
# The client VPC connection object.
|
523
|
+
#
|
524
|
+
# @!attribute [rw] authentication
|
525
|
+
# The VPC connection authentication type.
|
526
|
+
# @return [String]
|
527
|
+
#
|
528
|
+
# @!attribute [rw] creation_time
|
529
|
+
# The creation time of the VPC connection.
|
530
|
+
# @return [Time]
|
531
|
+
#
|
532
|
+
# @!attribute [rw] state
|
533
|
+
# The state of a configuration.
|
534
|
+
# @return [String]
|
535
|
+
#
|
536
|
+
# @!attribute [rw] vpc_connection_arn
|
537
|
+
# The Amazon Resource Name (ARN) of the VPC connection.
|
538
|
+
# @return [String]
|
539
|
+
#
|
540
|
+
# @!attribute [rw] owner
|
541
|
+
# The owner of the VPC connection.
|
542
|
+
# @return [String]
|
543
|
+
#
|
544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ClientVpcConnection AWS API Documentation
|
545
|
+
#
|
546
|
+
class ClientVpcConnection < Struct.new(
|
547
|
+
:authentication,
|
548
|
+
:creation_time,
|
549
|
+
:state,
|
550
|
+
:vpc_connection_arn,
|
551
|
+
:owner)
|
552
|
+
SENSITIVE = []
|
553
|
+
include Aws::Structure
|
554
|
+
end
|
555
|
+
|
556
|
+
# The VPC connection object.
|
557
|
+
#
|
558
|
+
# @!attribute [rw] vpc_connection_arn
|
559
|
+
# The Amazon Resource Name (ARN) of the VPC connection.
|
560
|
+
# @return [String]
|
561
|
+
#
|
562
|
+
# @!attribute [rw] target_cluster_arn
|
563
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
564
|
+
# @return [String]
|
565
|
+
#
|
566
|
+
# @!attribute [rw] creation_time
|
567
|
+
# The creation time of the VPC connection.
|
568
|
+
# @return [Time]
|
569
|
+
#
|
570
|
+
# @!attribute [rw] authentication
|
571
|
+
# The authentication type for the VPC connection.
|
572
|
+
# @return [String]
|
573
|
+
#
|
574
|
+
# @!attribute [rw] vpc_id
|
575
|
+
# The VPC ID of the VPC connection.
|
576
|
+
# @return [String]
|
577
|
+
#
|
578
|
+
# @!attribute [rw] state
|
579
|
+
# The state of a configuration.
|
580
|
+
# @return [String]
|
581
|
+
#
|
582
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnection AWS API Documentation
|
583
|
+
#
|
584
|
+
class VpcConnection < Struct.new(
|
585
|
+
:vpc_connection_arn,
|
586
|
+
:target_cluster_arn,
|
587
|
+
:creation_time,
|
588
|
+
:authentication,
|
589
|
+
:vpc_id,
|
590
|
+
:state)
|
591
|
+
SENSITIVE = []
|
592
|
+
include Aws::Structure
|
593
|
+
end
|
594
|
+
|
496
595
|
# Contains source Apache Kafka versions and compatible target Apache
|
497
596
|
# Kafka versions.
|
498
597
|
#
|
@@ -518,6 +617,7 @@ module Aws::Kafka
|
|
518
617
|
# @return [String]
|
519
618
|
#
|
520
619
|
# @!attribute [rw] creation_time
|
620
|
+
# The time when the configuration was created.
|
521
621
|
# @return [Time]
|
522
622
|
#
|
523
623
|
# @!attribute [rw] description
|
@@ -624,10 +724,15 @@ module Aws::Kafka
|
|
624
724
|
# Public access control for brokers.
|
625
725
|
# @return [Types::PublicAccess]
|
626
726
|
#
|
727
|
+
# @!attribute [rw] vpc_connectivity
|
728
|
+
# VpcConnectivity control for brokers.
|
729
|
+
# @return [Types::VpcConnectivity]
|
730
|
+
#
|
627
731
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ConnectivityInfo AWS API Documentation
|
628
732
|
#
|
629
733
|
class ConnectivityInfo < Struct.new(
|
630
|
-
:public_access
|
734
|
+
:public_access,
|
735
|
+
:vpc_connectivity)
|
631
736
|
SENSITIVE = []
|
632
737
|
include Aws::Structure
|
633
738
|
end
|
@@ -796,6 +901,93 @@ module Aws::Kafka
|
|
796
901
|
include Aws::Structure
|
797
902
|
end
|
798
903
|
|
904
|
+
# Request body for CreateVpcConnection.
|
905
|
+
#
|
906
|
+
# @!attribute [rw] target_cluster_arn
|
907
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
908
|
+
# @return [String]
|
909
|
+
#
|
910
|
+
# @!attribute [rw] authentication
|
911
|
+
# @return [String]
|
912
|
+
#
|
913
|
+
# @!attribute [rw] vpc_id
|
914
|
+
# The VPC ID of the VPC connection.
|
915
|
+
# @return [String]
|
916
|
+
#
|
917
|
+
# @!attribute [rw] client_subnets
|
918
|
+
# The list of subnets in the client VPC.
|
919
|
+
# @return [Array<String>]
|
920
|
+
#
|
921
|
+
# @!attribute [rw] security_groups
|
922
|
+
# The list of security groups to attach to the VPC connection.
|
923
|
+
# @return [Array<String>]
|
924
|
+
#
|
925
|
+
# @!attribute [rw] tags
|
926
|
+
# Create tags when creating the VPC connection.
|
927
|
+
# @return [Hash<String,String>]
|
928
|
+
#
|
929
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateVpcConnectionRequest AWS API Documentation
|
930
|
+
#
|
931
|
+
class CreateVpcConnectionRequest < Struct.new(
|
932
|
+
:target_cluster_arn,
|
933
|
+
:authentication,
|
934
|
+
:vpc_id,
|
935
|
+
:client_subnets,
|
936
|
+
:security_groups,
|
937
|
+
:tags)
|
938
|
+
SENSITIVE = []
|
939
|
+
include Aws::Structure
|
940
|
+
end
|
941
|
+
|
942
|
+
# Response body for CreateVpcConnection
|
943
|
+
#
|
944
|
+
# @!attribute [rw] vpc_connection_arn
|
945
|
+
# The Amazon Resource Name (ARN) of the VPC connection.
|
946
|
+
# @return [String]
|
947
|
+
#
|
948
|
+
# @!attribute [rw] state
|
949
|
+
# The state of the VPC connection. The only possible state is
|
950
|
+
# CREATING.
|
951
|
+
# @return [String]
|
952
|
+
#
|
953
|
+
# @!attribute [rw] authentication
|
954
|
+
# @return [String]
|
955
|
+
#
|
956
|
+
# @!attribute [rw] vpc_id
|
957
|
+
# The VPC ID of the VPC connection.
|
958
|
+
# @return [String]
|
959
|
+
#
|
960
|
+
# @!attribute [rw] client_subnets
|
961
|
+
# The list of subnets in the client VPC.
|
962
|
+
# @return [Array<String>]
|
963
|
+
#
|
964
|
+
# @!attribute [rw] security_groups
|
965
|
+
# The list of security groups attached to the VPC connection.
|
966
|
+
# @return [Array<String>]
|
967
|
+
#
|
968
|
+
# @!attribute [rw] creation_time
|
969
|
+
# The time when the VPC connection was created.
|
970
|
+
# @return [Time]
|
971
|
+
#
|
972
|
+
# @!attribute [rw] tags
|
973
|
+
# Tags attached to the VPC connection.
|
974
|
+
# @return [Hash<String,String>]
|
975
|
+
#
|
976
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/CreateVpcConnectionResponse AWS API Documentation
|
977
|
+
#
|
978
|
+
class CreateVpcConnectionResponse < Struct.new(
|
979
|
+
:vpc_connection_arn,
|
980
|
+
:state,
|
981
|
+
:authentication,
|
982
|
+
:vpc_id,
|
983
|
+
:client_subnets,
|
984
|
+
:security_groups,
|
985
|
+
:creation_time,
|
986
|
+
:tags)
|
987
|
+
SENSITIVE = []
|
988
|
+
include Aws::Structure
|
989
|
+
end
|
990
|
+
|
799
991
|
# @!attribute [rw] cluster_arn
|
800
992
|
# @return [String]
|
801
993
|
#
|
@@ -866,6 +1058,39 @@ module Aws::Kafka
|
|
866
1058
|
include Aws::Structure
|
867
1059
|
end
|
868
1060
|
|
1061
|
+
# Request body for DeleteVpcConnection.
|
1062
|
+
#
|
1063
|
+
# @!attribute [rw] arn
|
1064
|
+
# @return [String]
|
1065
|
+
#
|
1066
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteVpcConnectionRequest AWS API Documentation
|
1067
|
+
#
|
1068
|
+
class DeleteVpcConnectionRequest < Struct.new(
|
1069
|
+
:arn)
|
1070
|
+
SENSITIVE = []
|
1071
|
+
include Aws::Structure
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
# Response body for DeleteVpcConnection.
|
1075
|
+
#
|
1076
|
+
# @!attribute [rw] vpc_connection_arn
|
1077
|
+
# The Amazon Resource Name (ARN) of the VPC connection.
|
1078
|
+
# @return [String]
|
1079
|
+
#
|
1080
|
+
# @!attribute [rw] state
|
1081
|
+
# The state of the VPC connection. The only possible state is
|
1082
|
+
# DELETING.
|
1083
|
+
# @return [String]
|
1084
|
+
#
|
1085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteVpcConnectionResponse AWS API Documentation
|
1086
|
+
#
|
1087
|
+
class DeleteVpcConnectionResponse < Struct.new(
|
1088
|
+
:vpc_connection_arn,
|
1089
|
+
:state)
|
1090
|
+
SENSITIVE = []
|
1091
|
+
include Aws::Structure
|
1092
|
+
end
|
1093
|
+
|
869
1094
|
# @!attribute [rw] cluster_operation_arn
|
870
1095
|
# @return [String]
|
871
1096
|
#
|
@@ -1022,6 +1247,73 @@ module Aws::Kafka
|
|
1022
1247
|
include Aws::Structure
|
1023
1248
|
end
|
1024
1249
|
|
1250
|
+
# @!attribute [rw] arn
|
1251
|
+
# @return [String]
|
1252
|
+
#
|
1253
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeVpcConnectionRequest AWS API Documentation
|
1254
|
+
#
|
1255
|
+
class DescribeVpcConnectionRequest < Struct.new(
|
1256
|
+
:arn)
|
1257
|
+
SENSITIVE = []
|
1258
|
+
include Aws::Structure
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
# Response body for DescribeVpcConnection.
|
1262
|
+
#
|
1263
|
+
# @!attribute [rw] vpc_connection_arn
|
1264
|
+
# The Amazon Resource Name (ARN) of the VPC connection.
|
1265
|
+
# @return [String]
|
1266
|
+
#
|
1267
|
+
# @!attribute [rw] target_cluster_arn
|
1268
|
+
# The Amazon Resource Name (ARN) of the cluster.
|
1269
|
+
# @return [String]
|
1270
|
+
#
|
1271
|
+
# @!attribute [rw] state
|
1272
|
+
# The state of the VPC connection. The possible states are AVAILABLE,
|
1273
|
+
# INACTIVE, DEACTIVATING, DELETING, CREATING, REJECTING, REJECTED and
|
1274
|
+
# FAILED.
|
1275
|
+
# @return [String]
|
1276
|
+
#
|
1277
|
+
# @!attribute [rw] authentication
|
1278
|
+
# The authentication type of the VPC connection.
|
1279
|
+
# @return [String]
|
1280
|
+
#
|
1281
|
+
# @!attribute [rw] vpc_id
|
1282
|
+
# The VPC ID of the VPC connection.
|
1283
|
+
# @return [String]
|
1284
|
+
#
|
1285
|
+
# @!attribute [rw] subnets
|
1286
|
+
# The list of subnets in the client VPC.
|
1287
|
+
# @return [Array<String>]
|
1288
|
+
#
|
1289
|
+
# @!attribute [rw] security_groups
|
1290
|
+
# The list of security groups attached to the VPC connection.
|
1291
|
+
# @return [Array<String>]
|
1292
|
+
#
|
1293
|
+
# @!attribute [rw] creation_time
|
1294
|
+
# The creation time of the VPC connection.
|
1295
|
+
# @return [Time]
|
1296
|
+
#
|
1297
|
+
# @!attribute [rw] tags
|
1298
|
+
# Tags attached to the VPC connection.
|
1299
|
+
# @return [Hash<String,String>]
|
1300
|
+
#
|
1301
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DescribeVpcConnectionResponse AWS API Documentation
|
1302
|
+
#
|
1303
|
+
class DescribeVpcConnectionResponse < Struct.new(
|
1304
|
+
:vpc_connection_arn,
|
1305
|
+
:target_cluster_arn,
|
1306
|
+
:state,
|
1307
|
+
:authentication,
|
1308
|
+
:vpc_id,
|
1309
|
+
:subnets,
|
1310
|
+
:security_groups,
|
1311
|
+
:creation_time,
|
1312
|
+
:tags)
|
1313
|
+
SENSITIVE = []
|
1314
|
+
include Aws::Structure
|
1315
|
+
end
|
1316
|
+
|
1025
1317
|
# Request body for BatchDisassociateScramSecret.
|
1026
1318
|
#
|
1027
1319
|
# @!attribute [rw] cluster_arn
|
@@ -1285,6 +1577,21 @@ module Aws::Kafka
|
|
1285
1577
|
# <programlisting>\{ "BootstrapBrokerStringSaslIam": "b-3.exampleClusterName.abcde.c2.kafka.us-east-1.amazonaws.com:9098,b-1.exampleClusterName.abcde.c2.kafka.us-east-1.amazonaws.com:9098,b-2.exampleClusterName.abcde.c2.kafka.us-east-1.amazonaws.com:9098" \}</programlisting>
|
1286
1578
|
# @return [String]
|
1287
1579
|
#
|
1580
|
+
# @!attribute [rw] bootstrap_broker_string_vpc_connectivity_tls
|
1581
|
+
# A string containing one or more dns name (or IP) and Tls port pairs
|
1582
|
+
# for VPC connectivity.
|
1583
|
+
# @return [String]
|
1584
|
+
#
|
1585
|
+
# @!attribute [rw] bootstrap_broker_string_vpc_connectivity_sasl_scram
|
1586
|
+
# A string containing one or more dns name (or IP) and SASL SCRAM port
|
1587
|
+
# pairs for VPC connectivity.
|
1588
|
+
# @return [String]
|
1589
|
+
#
|
1590
|
+
# @!attribute [rw] bootstrap_broker_string_vpc_connectivity_sasl_iam
|
1591
|
+
# A string containing one or more dns name (or IP) and SASL IAM port
|
1592
|
+
# pairs for VPC connectivity.
|
1593
|
+
# @return [String]
|
1594
|
+
#
|
1288
1595
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetBootstrapBrokersResponse AWS API Documentation
|
1289
1596
|
#
|
1290
1597
|
class GetBootstrapBrokersResponse < Struct.new(
|
@@ -1294,7 +1601,10 @@ module Aws::Kafka
|
|
1294
1601
|
:bootstrap_broker_string_public_tls,
|
1295
1602
|
:bootstrap_broker_string_tls,
|
1296
1603
|
:bootstrap_broker_string_sasl_scram,
|
1297
|
-
:bootstrap_broker_string_sasl_iam
|
1604
|
+
:bootstrap_broker_string_sasl_iam,
|
1605
|
+
:bootstrap_broker_string_vpc_connectivity_tls,
|
1606
|
+
:bootstrap_broker_string_vpc_connectivity_sasl_scram,
|
1607
|
+
:bootstrap_broker_string_vpc_connectivity_sasl_iam)
|
1298
1608
|
SENSITIVE = []
|
1299
1609
|
include Aws::Structure
|
1300
1610
|
end
|
@@ -1546,6 +1856,92 @@ module Aws::Kafka
|
|
1546
1856
|
include Aws::Structure
|
1547
1857
|
end
|
1548
1858
|
|
1859
|
+
# Request body for DeleteClusterPolicy.
|
1860
|
+
#
|
1861
|
+
# @!attribute [rw] cluster_arn
|
1862
|
+
# @return [String]
|
1863
|
+
#
|
1864
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteClusterPolicyRequest AWS API Documentation
|
1865
|
+
#
|
1866
|
+
class DeleteClusterPolicyRequest < Struct.new(
|
1867
|
+
:cluster_arn)
|
1868
|
+
SENSITIVE = []
|
1869
|
+
include Aws::Structure
|
1870
|
+
end
|
1871
|
+
|
1872
|
+
# Response body for DeleteClusterPolicy.
|
1873
|
+
#
|
1874
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/DeleteClusterPolicyResponse AWS API Documentation
|
1875
|
+
#
|
1876
|
+
class DeleteClusterPolicyResponse < Aws::EmptyStructure; end
|
1877
|
+
|
1878
|
+
# Request body for GetClusterPolicy.
|
1879
|
+
#
|
1880
|
+
# @!attribute [rw] cluster_arn
|
1881
|
+
# @return [String]
|
1882
|
+
#
|
1883
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetClusterPolicyRequest AWS API Documentation
|
1884
|
+
#
|
1885
|
+
class GetClusterPolicyRequest < Struct.new(
|
1886
|
+
:cluster_arn)
|
1887
|
+
SENSITIVE = []
|
1888
|
+
include Aws::Structure
|
1889
|
+
end
|
1890
|
+
|
1891
|
+
# Returns information about the specified cluster policy.
|
1892
|
+
#
|
1893
|
+
# @!attribute [rw] current_version
|
1894
|
+
# Cluster policy version.
|
1895
|
+
# @return [String]
|
1896
|
+
#
|
1897
|
+
# @!attribute [rw] policy
|
1898
|
+
# Cluster policy attached to the MSK cluster.
|
1899
|
+
# @return [String]
|
1900
|
+
#
|
1901
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/GetClusterPolicyResponse AWS API Documentation
|
1902
|
+
#
|
1903
|
+
class GetClusterPolicyResponse < Struct.new(
|
1904
|
+
:current_version,
|
1905
|
+
:policy)
|
1906
|
+
SENSITIVE = []
|
1907
|
+
include Aws::Structure
|
1908
|
+
end
|
1909
|
+
|
1910
|
+
# Request body for PutClusterPolicy.
|
1911
|
+
#
|
1912
|
+
# @!attribute [rw] cluster_arn
|
1913
|
+
# @return [String]
|
1914
|
+
#
|
1915
|
+
# @!attribute [rw] current_version
|
1916
|
+
# @return [String]
|
1917
|
+
#
|
1918
|
+
# @!attribute [rw] policy
|
1919
|
+
# @return [String]
|
1920
|
+
#
|
1921
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/PutClusterPolicyRequest AWS API Documentation
|
1922
|
+
#
|
1923
|
+
class PutClusterPolicyRequest < Struct.new(
|
1924
|
+
:cluster_arn,
|
1925
|
+
:current_version,
|
1926
|
+
:policy)
|
1927
|
+
SENSITIVE = []
|
1928
|
+
include Aws::Structure
|
1929
|
+
end
|
1930
|
+
|
1931
|
+
# Response body for PutClusterPolicy.
|
1932
|
+
#
|
1933
|
+
# @!attribute [rw] current_version
|
1934
|
+
# Cluster policy version.
|
1935
|
+
# @return [String]
|
1936
|
+
#
|
1937
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/PutClusterPolicyResponse AWS API Documentation
|
1938
|
+
#
|
1939
|
+
class PutClusterPolicyResponse < Struct.new(
|
1940
|
+
:current_version)
|
1941
|
+
SENSITIVE = []
|
1942
|
+
include Aws::Structure
|
1943
|
+
end
|
1944
|
+
|
1549
1945
|
# Returns information about a cluster of either the provisioned or the
|
1550
1946
|
# serverless type.
|
1551
1947
|
#
|
@@ -2112,6 +2508,111 @@ module Aws::Kafka
|
|
2112
2508
|
include Aws::Structure
|
2113
2509
|
end
|
2114
2510
|
|
2511
|
+
# Request body for ListClientVpcConnections.
|
2512
|
+
#
|
2513
|
+
# @!attribute [rw] cluster_arn
|
2514
|
+
# @return [String]
|
2515
|
+
#
|
2516
|
+
# @!attribute [rw] max_results
|
2517
|
+
# @return [Integer]
|
2518
|
+
#
|
2519
|
+
# @!attribute [rw] next_token
|
2520
|
+
# @return [String]
|
2521
|
+
#
|
2522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClientVpcConnectionsRequest AWS API Documentation
|
2523
|
+
#
|
2524
|
+
class ListClientVpcConnectionsRequest < Struct.new(
|
2525
|
+
:cluster_arn,
|
2526
|
+
:max_results,
|
2527
|
+
:next_token)
|
2528
|
+
SENSITIVE = []
|
2529
|
+
include Aws::Structure
|
2530
|
+
end
|
2531
|
+
|
2532
|
+
# The response contains an array of client VPC connections and a next
|
2533
|
+
# token if the response is truncated.
|
2534
|
+
#
|
2535
|
+
# @!attribute [rw] next_token
|
2536
|
+
# If the response of ListClientVpcConnections is truncated, it returns
|
2537
|
+
# a NextToken in the response. This Nexttoken should be sent in the
|
2538
|
+
# subsequent request to ListClientVpcConnections.
|
2539
|
+
# @return [String]
|
2540
|
+
#
|
2541
|
+
# @!attribute [rw] client_vpc_connections
|
2542
|
+
# List containing a ClientVpcConnection object.
|
2543
|
+
# @return [Array<Types::ClientVpcConnection>]
|
2544
|
+
#
|
2545
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListClientVpcConnectionsResponse AWS API Documentation
|
2546
|
+
#
|
2547
|
+
class ListClientVpcConnectionsResponse < Struct.new(
|
2548
|
+
:next_token,
|
2549
|
+
:client_vpc_connections)
|
2550
|
+
SENSITIVE = []
|
2551
|
+
include Aws::Structure
|
2552
|
+
end
|
2553
|
+
|
2554
|
+
# Request body for ListVpcConnections.
|
2555
|
+
#
|
2556
|
+
# @!attribute [rw] max_results
|
2557
|
+
# @return [Integer]
|
2558
|
+
#
|
2559
|
+
# @!attribute [rw] next_token
|
2560
|
+
# @return [String]
|
2561
|
+
#
|
2562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListVpcConnectionsRequest AWS API Documentation
|
2563
|
+
#
|
2564
|
+
class ListVpcConnectionsRequest < Struct.new(
|
2565
|
+
:max_results,
|
2566
|
+
:next_token)
|
2567
|
+
SENSITIVE = []
|
2568
|
+
include Aws::Structure
|
2569
|
+
end
|
2570
|
+
|
2571
|
+
# The response contains an array of MSK VPC connections and a next token
|
2572
|
+
# if the response is truncated.
|
2573
|
+
#
|
2574
|
+
# @!attribute [rw] next_token
|
2575
|
+
# If the response of ListVpcConnections is truncated, it returns a
|
2576
|
+
# NextToken in the response. This NextToken should be sent in the
|
2577
|
+
# subsequent request to ListVpcConnections.
|
2578
|
+
# @return [String]
|
2579
|
+
#
|
2580
|
+
# @!attribute [rw] vpc_connections
|
2581
|
+
# List containing a VpcConnection object.
|
2582
|
+
# @return [Array<Types::VpcConnection>]
|
2583
|
+
#
|
2584
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/ListVpcConnectionsResponse AWS API Documentation
|
2585
|
+
#
|
2586
|
+
class ListVpcConnectionsResponse < Struct.new(
|
2587
|
+
:next_token,
|
2588
|
+
:vpc_connections)
|
2589
|
+
SENSITIVE = []
|
2590
|
+
include Aws::Structure
|
2591
|
+
end
|
2592
|
+
|
2593
|
+
# Request body for RejectClientVpcConnection.
|
2594
|
+
#
|
2595
|
+
# @!attribute [rw] cluster_arn
|
2596
|
+
# @return [String]
|
2597
|
+
#
|
2598
|
+
# @!attribute [rw] vpc_connection_arn
|
2599
|
+
# @return [String]
|
2600
|
+
#
|
2601
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/RejectClientVpcConnectionRequest AWS API Documentation
|
2602
|
+
#
|
2603
|
+
class RejectClientVpcConnectionRequest < Struct.new(
|
2604
|
+
:cluster_arn,
|
2605
|
+
:vpc_connection_arn)
|
2606
|
+
SENSITIVE = []
|
2607
|
+
include Aws::Structure
|
2608
|
+
end
|
2609
|
+
|
2610
|
+
# Response body for RejectClientVpcConnection.
|
2611
|
+
#
|
2612
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/RejectClientVpcConnectionResponse AWS API Documentation
|
2613
|
+
#
|
2614
|
+
class RejectClientVpcConnectionResponse < Aws::EmptyStructure; end
|
2615
|
+
|
2115
2616
|
# Information about cluster attributes that can be updated via update
|
2116
2617
|
# APIs.
|
2117
2618
|
#
|
@@ -2138,6 +2639,7 @@ module Aws::Kafka
|
|
2138
2639
|
# @return [String]
|
2139
2640
|
#
|
2140
2641
|
# @!attribute [rw] kafka_version
|
2642
|
+
# The Apache Kafka version.
|
2141
2643
|
# @return [String]
|
2142
2644
|
#
|
2143
2645
|
# @!attribute [rw] logging_info
|
@@ -2255,6 +2757,21 @@ module Aws::Kafka
|
|
2255
2757
|
include Aws::Structure
|
2256
2758
|
end
|
2257
2759
|
|
2760
|
+
# @!attribute [rw] scram
|
2761
|
+
# @return [Types::VpcConnectivityScram]
|
2762
|
+
#
|
2763
|
+
# @!attribute [rw] iam
|
2764
|
+
# @return [Types::VpcConnectivityIam]
|
2765
|
+
#
|
2766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivitySasl AWS API Documentation
|
2767
|
+
#
|
2768
|
+
class VpcConnectivitySasl < Struct.new(
|
2769
|
+
:scram,
|
2770
|
+
:iam)
|
2771
|
+
SENSITIVE = []
|
2772
|
+
include Aws::Structure
|
2773
|
+
end
|
2774
|
+
|
2258
2775
|
# @!attribute [rw] enabled
|
2259
2776
|
# SASL/SCRAM authentication is enabled or not.
|
2260
2777
|
# @return [Boolean]
|
@@ -2267,6 +2784,18 @@ module Aws::Kafka
|
|
2267
2784
|
include Aws::Structure
|
2268
2785
|
end
|
2269
2786
|
|
2787
|
+
# @!attribute [rw] enabled
|
2788
|
+
# SASL/SCRAM authentication for VPC connectivity is on or off.
|
2789
|
+
# @return [Boolean]
|
2790
|
+
#
|
2791
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivityScram AWS API Documentation
|
2792
|
+
#
|
2793
|
+
class VpcConnectivityScram < Struct.new(
|
2794
|
+
:enabled)
|
2795
|
+
SENSITIVE = []
|
2796
|
+
include Aws::Structure
|
2797
|
+
end
|
2798
|
+
|
2270
2799
|
# @!attribute [rw] enabled
|
2271
2800
|
# @return [Boolean]
|
2272
2801
|
#
|
@@ -2278,6 +2807,17 @@ module Aws::Kafka
|
|
2278
2807
|
include Aws::Structure
|
2279
2808
|
end
|
2280
2809
|
|
2810
|
+
# @!attribute [rw] enabled
|
2811
|
+
# @return [Boolean]
|
2812
|
+
#
|
2813
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivityIam AWS API Documentation
|
2814
|
+
#
|
2815
|
+
class VpcConnectivityIam < Struct.new(
|
2816
|
+
:enabled)
|
2817
|
+
SENSITIVE = []
|
2818
|
+
include Aws::Structure
|
2819
|
+
end
|
2820
|
+
|
2281
2821
|
# Returns information about an error.
|
2282
2822
|
#
|
2283
2823
|
# @!attribute [rw] invalid_parameter
|
@@ -2368,6 +2908,18 @@ module Aws::Kafka
|
|
2368
2908
|
include Aws::Structure
|
2369
2909
|
end
|
2370
2910
|
|
2911
|
+
# @!attribute [rw] enabled
|
2912
|
+
# TLS authentication for VPC connectivity is on or off.
|
2913
|
+
# @return [Boolean]
|
2914
|
+
#
|
2915
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivityTls AWS API Documentation
|
2916
|
+
#
|
2917
|
+
class VpcConnectivityTls < Struct.new(
|
2918
|
+
:enabled)
|
2919
|
+
SENSITIVE = []
|
2920
|
+
include Aws::Structure
|
2921
|
+
end
|
2922
|
+
|
2371
2923
|
# Returns information about an error.
|
2372
2924
|
#
|
2373
2925
|
# @!attribute [rw] invalid_parameter
|
@@ -2917,6 +3469,24 @@ module Aws::Kafka
|
|
2917
3469
|
include Aws::Structure
|
2918
3470
|
end
|
2919
3471
|
|
3472
|
+
# Description of the requester that calls the API operation.
|
3473
|
+
#
|
3474
|
+
# @!attribute [rw] type
|
3475
|
+
# The identity type of the requester that calls the API operation.
|
3476
|
+
# @return [String]
|
3477
|
+
#
|
3478
|
+
# @!attribute [rw] principal_id
|
3479
|
+
# @return [String]
|
3480
|
+
#
|
3481
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/UserIdentity AWS API Documentation
|
3482
|
+
#
|
3483
|
+
class UserIdentity < Struct.new(
|
3484
|
+
:type,
|
3485
|
+
:principal_id)
|
3486
|
+
SENSITIVE = []
|
3487
|
+
include Aws::Structure
|
3488
|
+
end
|
3489
|
+
|
2920
3490
|
# Zookeeper node information.
|
2921
3491
|
#
|
2922
3492
|
# @!attribute [rw] attached_eni_id
|
@@ -3053,6 +3623,46 @@ module Aws::Kafka
|
|
3053
3623
|
include Aws::Structure
|
3054
3624
|
end
|
3055
3625
|
|
3626
|
+
# Broker VPC connectivity access control.
|
3627
|
+
#
|
3628
|
+
# @!attribute [rw] client_authentication
|
3629
|
+
# @return [Types::VpcConnectivityClientAuthentication]
|
3630
|
+
#
|
3631
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectivity AWS API Documentation
|
3632
|
+
#
|
3633
|
+
class VpcConnectivity < Struct.new(
|
3634
|
+
:client_authentication)
|
3635
|
+
SENSITIVE = []
|
3636
|
+
include Aws::Structure
|
3637
|
+
end
|
3638
|
+
|
3639
|
+
# Description of the VPC connection for CreateVpcConnection and
|
3640
|
+
# DeleteVpcConnection operations.
|
3641
|
+
#
|
3642
|
+
# @!attribute [rw] vpc_connection_arn
|
3643
|
+
# @return [String]
|
3644
|
+
#
|
3645
|
+
# @!attribute [rw] owner
|
3646
|
+
# @return [String]
|
3647
|
+
#
|
3648
|
+
# @!attribute [rw] user_identity
|
3649
|
+
# Description of the requester that calls the API operation.
|
3650
|
+
# @return [Types::UserIdentity]
|
3651
|
+
#
|
3652
|
+
# @!attribute [rw] creation_time
|
3653
|
+
# @return [Time]
|
3654
|
+
#
|
3655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kafka-2018-11-14/VpcConnectionInfo AWS API Documentation
|
3656
|
+
#
|
3657
|
+
class VpcConnectionInfo < Struct.new(
|
3658
|
+
:vpc_connection_arn,
|
3659
|
+
:owner,
|
3660
|
+
:user_identity,
|
3661
|
+
:creation_time)
|
3662
|
+
SENSITIVE = []
|
3663
|
+
include Aws::Structure
|
3664
|
+
end
|
3665
|
+
|
3056
3666
|
# Request body for RebootBrokerNode action.
|
3057
3667
|
#
|
3058
3668
|
# @!attribute [rw] broker_ids
|