aws-sdk-redshift 1.125.0 → 1.126.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-redshift/client.rb +6 -19
- data/lib/aws-sdk-redshift/client_api.rb +3 -2
- data/lib/aws-sdk-redshift/types.rb +4 -17
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad6c6d541ecae555f8cf34febf7d9b4277dfdc237d79c4e099de37a33f95935c
|
4
|
+
data.tar.gz: 5abd9baa57fdf18ccb7d4b8f53d66faab3b20240031fa8095bcba89e80a669c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b252ee00350b6e873e7f436fc9254df003f7fb7f9d3a01b74ba0c05bd50b1dcea68e48a352f626956340822c49ac3083ab0b2bfccc432d09e553f96f7aa202e
|
7
|
+
data.tar.gz: a474113da36aac92710ab177562e31207f622b287dee5145cfe63b4721dd85914109bae26dbfa47e2f6309fddd27df9429a721d98e60173b7845852f47ec6ca7
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.126.0
|
@@ -7562,23 +7562,10 @@ module Aws::Redshift
|
|
7562
7562
|
# @option params [String] :s3_key_prefix
|
7563
7563
|
# The prefix applied to the log file names.
|
7564
7564
|
#
|
7565
|
-
#
|
7566
|
-
#
|
7567
|
-
#
|
7568
|
-
#
|
7569
|
-
# * Cannot contain spaces( ), double quotes ("), single quotes ('), a
|
7570
|
-
# backslash (\\), or control characters. The hexadecimal codes for
|
7571
|
-
# invalid characters are:
|
7572
|
-
#
|
7573
|
-
# * x00 to x20
|
7574
|
-
#
|
7575
|
-
# * x22
|
7576
|
-
#
|
7577
|
-
# * x27
|
7578
|
-
#
|
7579
|
-
# * x5c
|
7580
|
-
#
|
7581
|
-
# * x7f or larger
|
7565
|
+
# Valid characters are any letter from any language, any whitespace
|
7566
|
+
# character, any numeric character, and the following characters:
|
7567
|
+
# underscore (`_`), period (`.`), colon (`:`), slash (`/`), equal (`=`),
|
7568
|
+
# plus (`+`), backslash (``), hyphen (`-`), at symbol (`@`).
|
7582
7569
|
#
|
7583
7570
|
# @option params [String] :log_destination_type
|
7584
7571
|
# The log destination type. An enum with possible values of `s3` and
|
@@ -7604,7 +7591,7 @@ module Aws::Redshift
|
|
7604
7591
|
# resp = client.enable_logging({
|
7605
7592
|
# cluster_identifier: "String", # required
|
7606
7593
|
# bucket_name: "String",
|
7607
|
-
# s3_key_prefix: "
|
7594
|
+
# s3_key_prefix: "S3KeyPrefixValue",
|
7608
7595
|
# log_destination_type: "s3", # accepts s3, cloudwatch
|
7609
7596
|
# log_exports: ["String"],
|
7610
7597
|
# })
|
@@ -12446,7 +12433,7 @@ module Aws::Redshift
|
|
12446
12433
|
tracer: tracer
|
12447
12434
|
)
|
12448
12435
|
context[:gem_name] = 'aws-sdk-redshift'
|
12449
|
-
context[:gem_version] = '1.
|
12436
|
+
context[:gem_version] = '1.126.0'
|
12450
12437
|
Seahorse::Client::Request.new(handlers, context)
|
12451
12438
|
end
|
12452
12439
|
|
@@ -503,6 +503,7 @@ module Aws::Redshift
|
|
503
503
|
RevokeSnapshotAccessResult = Shapes::StructureShape.new(name: 'RevokeSnapshotAccessResult')
|
504
504
|
RotateEncryptionKeyMessage = Shapes::StructureShape.new(name: 'RotateEncryptionKeyMessage')
|
505
505
|
RotateEncryptionKeyResult = Shapes::StructureShape.new(name: 'RotateEncryptionKeyResult')
|
506
|
+
S3KeyPrefixValue = Shapes::StringShape.new(name: 'S3KeyPrefixValue')
|
506
507
|
SNSInvalidTopicFault = Shapes::StructureShape.new(name: 'SNSInvalidTopicFault', error: {"code"=>"SNSInvalidTopic", "httpStatusCode"=>400, "senderFault"=>true})
|
507
508
|
SNSNoAuthorizationFault = Shapes::StructureShape.new(name: 'SNSNoAuthorizationFault', error: {"code"=>"SNSNoAuthorization", "httpStatusCode"=>400, "senderFault"=>true})
|
508
509
|
SNSTopicArnNotFoundFault = Shapes::StructureShape.new(name: 'SNSTopicArnNotFoundFault', error: {"code"=>"SNSTopicArnNotFound", "httpStatusCode"=>404, "senderFault"=>true})
|
@@ -1637,7 +1638,7 @@ module Aws::Redshift
|
|
1637
1638
|
|
1638
1639
|
EnableLoggingMessage.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClusterIdentifier"))
|
1639
1640
|
EnableLoggingMessage.add_member(:bucket_name, Shapes::ShapeRef.new(shape: String, location_name: "BucketName"))
|
1640
|
-
EnableLoggingMessage.add_member(:s3_key_prefix, Shapes::ShapeRef.new(shape:
|
1641
|
+
EnableLoggingMessage.add_member(:s3_key_prefix, Shapes::ShapeRef.new(shape: S3KeyPrefixValue, location_name: "S3KeyPrefix"))
|
1641
1642
|
EnableLoggingMessage.add_member(:log_destination_type, Shapes::ShapeRef.new(shape: LogDestinationType, location_name: "LogDestinationType"))
|
1642
1643
|
EnableLoggingMessage.add_member(:log_exports, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "LogExports"))
|
1643
1644
|
EnableLoggingMessage.struct_class = Types::EnableLoggingMessage
|
@@ -1985,7 +1986,7 @@ module Aws::Redshift
|
|
1985
1986
|
|
1986
1987
|
LoggingStatus.add_member(:logging_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "LoggingEnabled"))
|
1987
1988
|
LoggingStatus.add_member(:bucket_name, Shapes::ShapeRef.new(shape: String, location_name: "BucketName"))
|
1988
|
-
LoggingStatus.add_member(:s3_key_prefix, Shapes::ShapeRef.new(shape:
|
1989
|
+
LoggingStatus.add_member(:s3_key_prefix, Shapes::ShapeRef.new(shape: S3KeyPrefixValue, location_name: "S3KeyPrefix"))
|
1989
1990
|
LoggingStatus.add_member(:last_successful_delivery_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "LastSuccessfulDeliveryTime"))
|
1990
1991
|
LoggingStatus.add_member(:last_failure_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "LastFailureTime"))
|
1991
1992
|
LoggingStatus.add_member(:last_failure_message, Shapes::ShapeRef.new(shape: String, location_name: "LastFailureMessage"))
|
@@ -6012,23 +6012,10 @@ module Aws::Redshift
|
|
6012
6012
|
# @!attribute [rw] s3_key_prefix
|
6013
6013
|
# The prefix applied to the log file names.
|
6014
6014
|
#
|
6015
|
-
#
|
6016
|
-
#
|
6017
|
-
#
|
6018
|
-
#
|
6019
|
-
# * Cannot contain spaces( ), double quotes ("), single quotes ('),
|
6020
|
-
# a backslash (\\), or control characters. The hexadecimal codes for
|
6021
|
-
# invalid characters are:
|
6022
|
-
#
|
6023
|
-
# * x00 to x20
|
6024
|
-
#
|
6025
|
-
# * x22
|
6026
|
-
#
|
6027
|
-
# * x27
|
6028
|
-
#
|
6029
|
-
# * x5c
|
6030
|
-
#
|
6031
|
-
# * x7f or larger
|
6015
|
+
# Valid characters are any letter from any language, any whitespace
|
6016
|
+
# character, any numeric character, and the following characters:
|
6017
|
+
# underscore (`_`), period (`.`), colon (`:`), slash (`/`), equal
|
6018
|
+
# (`=`), plus (`+`), backslash (``), hyphen (`-`), at symbol (`@`).
|
6032
6019
|
# @return [String]
|
6033
6020
|
#
|
6034
6021
|
# @!attribute [rw] log_destination_type
|
data/lib/aws-sdk-redshift.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-redshift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.126.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: 2024-
|
11
|
+
date: 2024-10-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|