aws-sdk-glue 1.10.0 → 1.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 389b43c865fd24741e819f4df767d26b2bd16ed2
4
- data.tar.gz: '096126e1fa4b7398fb2a992f91c378f6cbd553b1'
3
+ metadata.gz: a5a3607e3a9cdf8e38651e51117d8d43c988812d
4
+ data.tar.gz: 9ef62aedcb61b7aab742172203ffbabf03f7dedb
5
5
  SHA512:
6
- metadata.gz: 3fc97da12821a6737a04591c0e748972cb25fa0f2f0e7b0551e63b3602ee2e802ad91b046ecd11c89931d2f95cc49c53e1b54419430ba0bc8be91951dd3e4f13
7
- data.tar.gz: 716e2efc1d80cd9d136dc5c6ee28c05f1b647dad76b3f1f9c8c1a63193e9037b189b89ecf1c108a1ea233586d3ad101a35d218b79ce7172d74af41c9d6619f11
6
+ metadata.gz: 56d25856833ea9e841adcdcb57e34f62e2642defeae742f842c4ff3e8494c91c4ca636de4d040cfe370be07c3623f1abf2ede17202a11e8bd4bedd0129c7a50b
7
+ data.tar.gz: 5efd48a1b29ed7699aaf4be1a8ff3703ad07594e9cfc4a165f7251a112e9c1ebebe040f412c3b8eec8deca47dafbc5c75fad1dc7102db5bfba54a5faf1f6d6d8
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-glue/customizations'
42
42
  # @service
43
43
  module Aws::Glue
44
44
 
45
- GEM_VERSION = '1.10.0'
45
+ GEM_VERSION = '1.11.0'
46
46
 
47
47
  end
@@ -800,7 +800,23 @@ module Aws::Glue
800
800
  # The subnet ID for the new DevEndpoint to use.
801
801
  #
802
802
  # @option params [String] :public_key
803
- # The public key to use for authentication.
803
+ # The public key to be used by this DevEndpoint for authentication. This
804
+ # attribute is provided for backward compatibility, as the recommended
805
+ # attribute to use is public keys.
806
+ #
807
+ # @option params [Array<String>] :public_keys
808
+ # A list of public keys to be used by the DevEndpoints for
809
+ # authentication. The use of this attribute is preferred over a single
810
+ # public key because the public keys allow you to have a different
811
+ # private key per client.
812
+ #
813
+ # <note markdown="1"> If you previously created an endpoint with a public key, you must
814
+ # remove that key to be able to set a list of public keys: call the
815
+ # `UpdateDevEndpoint` API with the public key content in the
816
+ # `deletePublicKeys` attribute, and the list of new keys in the
817
+ # `addPublicKeys` attribute.
818
+ #
819
+ # </note>
804
820
  #
805
821
  # @option params [Integer] :number_of_nodes
806
822
  # The number of AWS Glue Data Processing Units (DPUs) to allocate to
@@ -848,6 +864,7 @@ module Aws::Glue
848
864
  # security_group_ids: ["GenericString"],
849
865
  # subnet_id: "GenericString",
850
866
  # public_key: "GenericString",
867
+ # public_keys: ["GenericString"],
851
868
  # number_of_nodes: 1,
852
869
  # extra_python_libs_s3_path: "GenericString",
853
870
  # extra_jars_s3_path: "GenericString",
@@ -2234,6 +2251,8 @@ module Aws::Glue
2234
2251
  # resp.dev_endpoint.created_timestamp #=> Time
2235
2252
  # resp.dev_endpoint.last_modified_timestamp #=> Time
2236
2253
  # resp.dev_endpoint.public_key #=> String
2254
+ # resp.dev_endpoint.public_keys #=> Array
2255
+ # resp.dev_endpoint.public_keys[0] #=> String
2237
2256
  #
2238
2257
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDevEndpoint AWS API Documentation
2239
2258
  #
@@ -2287,6 +2306,8 @@ module Aws::Glue
2287
2306
  # resp.dev_endpoints[0].created_timestamp #=> Time
2288
2307
  # resp.dev_endpoints[0].last_modified_timestamp #=> Time
2289
2308
  # resp.dev_endpoints[0].public_key #=> String
2309
+ # resp.dev_endpoints[0].public_keys #=> Array
2310
+ # resp.dev_endpoints[0].public_keys[0] #=> String
2290
2311
  # resp.next_token #=> String
2291
2312
  #
2292
2313
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetDevEndpoints AWS API Documentation
@@ -3957,6 +3978,12 @@ module Aws::Glue
3957
3978
  # @option params [String] :public_key
3958
3979
  # The public key for the DevEndpoint to use.
3959
3980
  #
3981
+ # @option params [Array<String>] :add_public_keys
3982
+ # The list of public keys for the DevEndpoint to use.
3983
+ #
3984
+ # @option params [Array<String>] :delete_public_keys
3985
+ # The list of public keys to be deleted from the DevEndpoint.
3986
+ #
3960
3987
  # @option params [Types::DevEndpointCustomLibraries] :custom_libraries
3961
3988
  # Custom Python or Java libraries to be loaded in the DevEndpoint.
3962
3989
  #
@@ -3971,6 +3998,8 @@ module Aws::Glue
3971
3998
  # resp = client.update_dev_endpoint({
3972
3999
  # endpoint_name: "GenericString", # required
3973
4000
  # public_key: "GenericString",
4001
+ # add_public_keys: ["GenericString"],
4002
+ # delete_public_keys: ["GenericString"],
3974
4003
  # custom_libraries: {
3975
4004
  # extra_python_libs_s3_path: "GenericString",
3976
4005
  # extra_jars_s3_path: "GenericString",
@@ -4361,7 +4390,7 @@ module Aws::Glue
4361
4390
  params: params,
4362
4391
  config: config)
4363
4392
  context[:gem_name] = 'aws-sdk-glue'
4364
- context[:gem_version] = '1.10.0'
4393
+ context[:gem_version] = '1.11.0'
4365
4394
  Seahorse::Client::Request.new(handlers, context)
4366
4395
  end
4367
4396
 
@@ -295,6 +295,7 @@ module Aws::Glue
295
295
  Predicate = Shapes::StructureShape.new(name: 'Predicate')
296
296
  PredicateString = Shapes::StringShape.new(name: 'PredicateString')
297
297
  PrincipalType = Shapes::StringShape.new(name: 'PrincipalType')
298
+ PublicKeysList = Shapes::ListShape.new(name: 'PublicKeysList')
298
299
  PythonScript = Shapes::StringShape.new(name: 'PythonScript')
299
300
  ResetJobBookmarkRequest = Shapes::StructureShape.new(name: 'ResetJobBookmarkRequest')
300
301
  ResetJobBookmarkResponse = Shapes::StructureShape.new(name: 'ResetJobBookmarkResponse')
@@ -650,6 +651,7 @@ module Aws::Glue
650
651
  CreateDevEndpointRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "SecurityGroupIds"))
651
652
  CreateDevEndpointRequest.add_member(:subnet_id, Shapes::ShapeRef.new(shape: GenericString, location_name: "SubnetId"))
652
653
  CreateDevEndpointRequest.add_member(:public_key, Shapes::ShapeRef.new(shape: GenericString, location_name: "PublicKey"))
654
+ CreateDevEndpointRequest.add_member(:public_keys, Shapes::ShapeRef.new(shape: PublicKeysList, location_name: "PublicKeys"))
653
655
  CreateDevEndpointRequest.add_member(:number_of_nodes, Shapes::ShapeRef.new(shape: IntegerValue, location_name: "NumberOfNodes"))
654
656
  CreateDevEndpointRequest.add_member(:extra_python_libs_s3_path, Shapes::ShapeRef.new(shape: GenericString, location_name: "ExtraPythonLibsS3Path"))
655
657
  CreateDevEndpointRequest.add_member(:extra_jars_s3_path, Shapes::ShapeRef.new(shape: GenericString, location_name: "ExtraJarsS3Path"))
@@ -855,6 +857,7 @@ module Aws::Glue
855
857
  DevEndpoint.add_member(:created_timestamp, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "CreatedTimestamp"))
856
858
  DevEndpoint.add_member(:last_modified_timestamp, Shapes::ShapeRef.new(shape: TimestampValue, location_name: "LastModifiedTimestamp"))
857
859
  DevEndpoint.add_member(:public_key, Shapes::ShapeRef.new(shape: GenericString, location_name: "PublicKey"))
860
+ DevEndpoint.add_member(:public_keys, Shapes::ShapeRef.new(shape: PublicKeysList, location_name: "PublicKeys"))
858
861
  DevEndpoint.struct_class = Types::DevEndpoint
859
862
 
860
863
  DevEndpointCustomLibraries.add_member(:extra_python_libs_s3_path, Shapes::ShapeRef.new(shape: GenericString, location_name: "ExtraPythonLibsS3Path"))
@@ -1308,6 +1311,8 @@ module Aws::Glue
1308
1311
  Predicate.add_member(:conditions, Shapes::ShapeRef.new(shape: ConditionList, location_name: "Conditions"))
1309
1312
  Predicate.struct_class = Types::Predicate
1310
1313
 
1314
+ PublicKeysList.member = Shapes::ShapeRef.new(shape: GenericString)
1315
+
1311
1316
  ResetJobBookmarkRequest.add_member(:job_name, Shapes::ShapeRef.new(shape: JobName, required: true, location_name: "JobName"))
1312
1317
  ResetJobBookmarkRequest.struct_class = Types::ResetJobBookmarkRequest
1313
1318
 
@@ -1522,6 +1527,8 @@ module Aws::Glue
1522
1527
 
1523
1528
  UpdateDevEndpointRequest.add_member(:endpoint_name, Shapes::ShapeRef.new(shape: GenericString, required: true, location_name: "EndpointName"))
1524
1529
  UpdateDevEndpointRequest.add_member(:public_key, Shapes::ShapeRef.new(shape: GenericString, location_name: "PublicKey"))
1530
+ UpdateDevEndpointRequest.add_member(:add_public_keys, Shapes::ShapeRef.new(shape: PublicKeysList, location_name: "AddPublicKeys"))
1531
+ UpdateDevEndpointRequest.add_member(:delete_public_keys, Shapes::ShapeRef.new(shape: PublicKeysList, location_name: "DeletePublicKeys"))
1525
1532
  UpdateDevEndpointRequest.add_member(:custom_libraries, Shapes::ShapeRef.new(shape: DevEndpointCustomLibraries, location_name: "CustomLibraries"))
1526
1533
  UpdateDevEndpointRequest.add_member(:update_etl_libraries, Shapes::ShapeRef.new(shape: BooleanValue, location_name: "UpdateEtlLibraries"))
1527
1534
  UpdateDevEndpointRequest.struct_class = Types::UpdateDevEndpointRequest
@@ -1337,6 +1337,7 @@ module Aws::Glue
1337
1337
  # security_group_ids: ["GenericString"],
1338
1338
  # subnet_id: "GenericString",
1339
1339
  # public_key: "GenericString",
1340
+ # public_keys: ["GenericString"],
1340
1341
  # number_of_nodes: 1,
1341
1342
  # extra_python_libs_s3_path: "GenericString",
1342
1343
  # extra_jars_s3_path: "GenericString",
@@ -1360,9 +1361,26 @@ module Aws::Glue
1360
1361
  # @return [String]
1361
1362
  #
1362
1363
  # @!attribute [rw] public_key
1363
- # The public key to use for authentication.
1364
+ # The public key to be used by this DevEndpoint for authentication.
1365
+ # This attribute is provided for backward compatibility, as the
1366
+ # recommended attribute to use is public keys.
1364
1367
  # @return [String]
1365
1368
  #
1369
+ # @!attribute [rw] public_keys
1370
+ # A list of public keys to be used by the DevEndpoints for
1371
+ # authentication. The use of this attribute is preferred over a single
1372
+ # public key because the public keys allow you to have a different
1373
+ # private key per client.
1374
+ #
1375
+ # <note markdown="1"> If you previously created an endpoint with a public key, you must
1376
+ # remove that key to be able to set a list of public keys: call the
1377
+ # `UpdateDevEndpoint` API with the public key content in the
1378
+ # `deletePublicKeys` attribute, and the list of new keys in the
1379
+ # `addPublicKeys` attribute.
1380
+ #
1381
+ # </note>
1382
+ # @return [Array<String>]
1383
+ #
1366
1384
  # @!attribute [rw] number_of_nodes
1367
1385
  # The number of AWS Glue Data Processing Units (DPUs) to allocate to
1368
1386
  # this DevEndpoint.
@@ -1395,6 +1413,7 @@ module Aws::Glue
1395
1413
  :security_group_ids,
1396
1414
  :subnet_id,
1397
1415
  :public_key,
1416
+ :public_keys,
1398
1417
  :number_of_nodes,
1399
1418
  :extra_python_libs_s3_path,
1400
1419
  :extra_jars_s3_path)
@@ -2555,7 +2574,8 @@ module Aws::Glue
2555
2574
  # @return [String]
2556
2575
  #
2557
2576
  # @!attribute [rw] private_address
2558
- # The private address used by this DevEndpoint.
2577
+ # A private DNS to access the DevEndpoint within a VPC, if the
2578
+ # DevEndpoint is created within one.
2559
2579
  # @return [String]
2560
2580
  #
2561
2581
  # @!attribute [rw] zeppelin_remote_spark_interpreter_port
@@ -2623,8 +2643,25 @@ module Aws::Glue
2623
2643
  #
2624
2644
  # @!attribute [rw] public_key
2625
2645
  # The public key to be used by this DevEndpoint for authentication.
2646
+ # This attribute is provided for backward compatibility, as the
2647
+ # recommended attribute to use is public keys.
2626
2648
  # @return [String]
2627
2649
  #
2650
+ # @!attribute [rw] public_keys
2651
+ # A list of public keys to be used by the DevEndpoints for
2652
+ # authentication. The use of this attribute is preferred over a single
2653
+ # public key because the public keys allow you to have a different
2654
+ # private key per client.
2655
+ #
2656
+ # <note markdown="1"> If you previously created an endpoint with a public key, you must
2657
+ # remove that key to be able to set a list of public keys: call the
2658
+ # `UpdateDevEndpoint` API with the public key content in the
2659
+ # `deletePublicKeys` attribute, and the list of new keys in the
2660
+ # `addPublicKeys` attribute.
2661
+ #
2662
+ # </note>
2663
+ # @return [Array<String>]
2664
+ #
2628
2665
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/DevEndpoint AWS API Documentation
2629
2666
  #
2630
2667
  class DevEndpoint < Struct.new(
@@ -2646,7 +2683,8 @@ module Aws::Glue
2646
2683
  :last_update_status,
2647
2684
  :created_timestamp,
2648
2685
  :last_modified_timestamp,
2649
- :public_key)
2686
+ :public_key,
2687
+ :public_keys)
2650
2688
  include Aws::Structure
2651
2689
  end
2652
2690
 
@@ -6424,6 +6462,8 @@ module Aws::Glue
6424
6462
  # {
6425
6463
  # endpoint_name: "GenericString", # required
6426
6464
  # public_key: "GenericString",
6465
+ # add_public_keys: ["GenericString"],
6466
+ # delete_public_keys: ["GenericString"],
6427
6467
  # custom_libraries: {
6428
6468
  # extra_python_libs_s3_path: "GenericString",
6429
6469
  # extra_jars_s3_path: "GenericString",
@@ -6439,6 +6479,14 @@ module Aws::Glue
6439
6479
  # The public key for the DevEndpoint to use.
6440
6480
  # @return [String]
6441
6481
  #
6482
+ # @!attribute [rw] add_public_keys
6483
+ # The list of public keys for the DevEndpoint to use.
6484
+ # @return [Array<String>]
6485
+ #
6486
+ # @!attribute [rw] delete_public_keys
6487
+ # The list of public keys to be deleted from the DevEndpoint.
6488
+ # @return [Array<String>]
6489
+ #
6442
6490
  # @!attribute [rw] custom_libraries
6443
6491
  # Custom Python or Java libraries to be loaded in the DevEndpoint.
6444
6492
  # @return [Types::DevEndpointCustomLibraries]
@@ -6453,6 +6501,8 @@ module Aws::Glue
6453
6501
  class UpdateDevEndpointRequest < Struct.new(
6454
6502
  :endpoint_name,
6455
6503
  :public_key,
6504
+ :add_public_keys,
6505
+ :delete_public_keys,
6456
6506
  :custom_libraries,
6457
6507
  :update_etl_libraries)
6458
6508
  include Aws::Structure
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-glue
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.11.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: 2018-07-10 00:00:00.000000000 Z
11
+ date: 2018-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core