aws-sdk-glue 1.95.0 → 1.96.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: 21439f84821dfc43ad9dd6a894ebb99e4eb37b0e10d1eaffcaca90ce84c8d651
4
- data.tar.gz: 7c950efdc32663c16a76edeccd60dac60c6f488bea8e0c24e5022220ff22bd9b
3
+ metadata.gz: 5f9e288e0aa75021d15e6123bea41a073e96363ccc104c917e0853610088af33
4
+ data.tar.gz: e9ad486ede02bbf98d1dc27fd685b4dace5a43b5ac581620faed37d496c36a65
5
5
  SHA512:
6
- metadata.gz: 3a448a66923fb57c8e562ba85da406d29d88e38121acf04af9cbce838183c62cc2996875abd7cb563e87783e3e666105d462a9297f458888132ffd6032e967ef
7
- data.tar.gz: 7c43081ef222fa400de7ef8a33b5519ae4a096c947af24241507835caf59512f298f8c52ff4517319b734ccd2d2ebea87ac36c09aae03a91da27c4855d46b41e
6
+ metadata.gz: b02c0021080c377532f362f1b0a1bd8f82edc89b9b66df2959ab8baaeebcc13a86d02658fdbbbd5a8d0a18512955abb3686c29a3b7410db1c6df0db04d702c6e
7
+ data.tar.gz: 40f88ba620d419dadb625b6e6e5ae4f6fec53966b092eff89ce8b7e076490891e55ffb1860ddb648e0db955d8ad957ad002f907d83a70b42a28b94a263dba152
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.96.0 (2021-10-05)
5
+ ------------------
6
+
7
+ * Feature - This release adds tag as an input of CreateConnection
8
+
4
9
  1.95.0 (2021-09-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.96.0
@@ -1587,6 +1587,9 @@ module Aws::Glue
1587
1587
  # @option params [required, Types::ConnectionInput] :connection_input
1588
1588
  # A `ConnectionInput` object defining the connection to create.
1589
1589
  #
1590
+ # @option params [Hash<String,String>] :tags
1591
+ # The tags you assign to the connection.
1592
+ #
1590
1593
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1591
1594
  #
1592
1595
  # @example Request syntax with placeholder values
@@ -1607,6 +1610,9 @@ module Aws::Glue
1607
1610
  # availability_zone: "NameString",
1608
1611
  # },
1609
1612
  # },
1613
+ # tags: {
1614
+ # "TagKey" => "TagValue",
1615
+ # },
1610
1616
  # })
1611
1617
  #
1612
1618
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateConnection AWS API Documentation
@@ -6018,6 +6024,10 @@ module Aws::Glue
6018
6024
  # The maximum number of partitions to return in a single response.
6019
6025
  #
6020
6026
  # @option params [Boolean] :exclude_column_schema
6027
+ # When true, specifies not returning the partition column schema. Useful
6028
+ # when you are interested only in other partition attributes such as
6029
+ # partition values or location. This approach avoids the problem of a
6030
+ # large response by not returning duplicate data.
6021
6031
  #
6022
6032
  # @return [Types::GetPartitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6023
6033
  #
@@ -11048,7 +11058,7 @@ module Aws::Glue
11048
11058
  params: params,
11049
11059
  config: config)
11050
11060
  context[:gem_name] = 'aws-sdk-glue'
11051
- context[:gem_version] = '1.95.0'
11061
+ context[:gem_version] = '1.96.0'
11052
11062
  Seahorse::Client::Request.new(handlers, context)
11053
11063
  end
11054
11064
 
@@ -1303,6 +1303,7 @@ module Aws::Glue
1303
1303
 
1304
1304
  CreateConnectionRequest.add_member(:catalog_id, Shapes::ShapeRef.new(shape: CatalogIdString, location_name: "CatalogId"))
1305
1305
  CreateConnectionRequest.add_member(:connection_input, Shapes::ShapeRef.new(shape: ConnectionInput, required: true, location_name: "ConnectionInput"))
1306
+ CreateConnectionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "Tags"))
1306
1307
  CreateConnectionRequest.struct_class = Types::CreateConnectionRequest
1307
1308
 
1308
1309
  CreateConnectionResponse.struct_class = Types::CreateConnectionResponse
@@ -2900,6 +2900,9 @@ module Aws::Glue
2900
2900
  # availability_zone: "NameString",
2901
2901
  # },
2902
2902
  # },
2903
+ # tags: {
2904
+ # "TagKey" => "TagValue",
2905
+ # },
2903
2906
  # }
2904
2907
  #
2905
2908
  # @!attribute [rw] catalog_id
@@ -2912,11 +2915,16 @@ module Aws::Glue
2912
2915
  # A `ConnectionInput` object defining the connection to create.
2913
2916
  # @return [Types::ConnectionInput]
2914
2917
  #
2918
+ # @!attribute [rw] tags
2919
+ # The tags you assign to the connection.
2920
+ # @return [Hash<String,String>]
2921
+ #
2915
2922
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/CreateConnectionRequest AWS API Documentation
2916
2923
  #
2917
2924
  class CreateConnectionRequest < Struct.new(
2918
2925
  :catalog_id,
2919
- :connection_input)
2926
+ :connection_input,
2927
+ :tags)
2920
2928
  SENSITIVE = []
2921
2929
  include Aws::Structure
2922
2930
  end
@@ -8714,6 +8722,10 @@ module Aws::Glue
8714
8722
  # @return [Integer]
8715
8723
  #
8716
8724
  # @!attribute [rw] exclude_column_schema
8725
+ # When true, specifies not returning the partition column schema.
8726
+ # Useful when you are interested only in other partition attributes
8727
+ # such as partition values or location. This approach avoids the
8728
+ # problem of a large response by not returning duplicate data.
8717
8729
  # @return [Boolean]
8718
8730
  #
8719
8731
  # @see http://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetPartitionsRequest AWS API Documentation
data/lib/aws-sdk-glue.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-glue/customizations'
48
48
  # @!group service
49
49
  module Aws::Glue
50
50
 
51
- GEM_VERSION = '1.95.0'
51
+ GEM_VERSION = '1.96.0'
52
52
 
53
53
  end
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.95.0
4
+ version: 1.96.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: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2021-10-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core