aws-sdk-finspace 1.22.0 → 1.23.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
  SHA256:
3
- metadata.gz: a92db81497281abf202f421826376f0e631332b3a7f0ff5759280681f058983d
4
- data.tar.gz: 9fb3adf512f878cb8c9a4e7b5220b12756ed51207dd1d985d7b7463ff55d7c2f
3
+ metadata.gz: 4c7281f667b62324866fef8eaf0a8a9671f3d81118474256b9d81652ecd348b2
4
+ data.tar.gz: 9900f8de8320ce9d3ed5335720b059abfeb3011d1e41598f0a65ef55f42de4f1
5
5
  SHA512:
6
- metadata.gz: 7b3bb3eb141ac0157810f87f23946a3c593ad3b1b19fee47d7e9a96be40acff68e24b8e5783a79b2ed6f5499191307e7af9b21fd4294c8ffc794da61c9725f39
7
- data.tar.gz: 4d35cb03d1a7ba9a8c2542139100777f5ce8f832824f2669f4925dd999c27e31f840950a4a5aa5e34d281d263d5194d2b333f83c041a41d020cad8aab4b11e1e
6
+ metadata.gz: 4a65ec9d488be7116e9c57ea72efb5a12f0a5c0d99894eeaf246c4016eccde12bd341ca8d3bb52cf190b44499041f3c4d9980b4a8e987dd5c7afbfcdd6e8e7fb
7
+ data.tar.gz: dbac9e8c377ca8f38aef47f6403106b8b1259bc1856dc8191497234b6517d13b36d29bf7ab082ab26eb626b0b2fbd41bf36e4a00de3ce9c7a25cab333dedd814
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2023-11-15)
5
+ ------------------
6
+
7
+ * Feature - Adding deprecated trait on Dataset Browser Environment APIs
8
+
4
9
  1.22.0 (2023-10-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.23.0
@@ -2512,7 +2512,7 @@ module Aws::Finspace
2512
2512
  params: params,
2513
2513
  config: config)
2514
2514
  context[:gem_name] = 'aws-sdk-finspace'
2515
- context[:gem_version] = '1.22.0'
2515
+ context[:gem_version] = '1.23.0'
2516
2516
  Seahorse::Client::Request.new(handlers, context)
2517
2517
  end
2518
2518
 
@@ -941,6 +941,7 @@ module Aws::Finspace
941
941
  o.name = "CreateEnvironment"
942
942
  o.http_method = "POST"
943
943
  o.http_request_uri = "/environment"
944
+ o.deprecated = true
944
945
  o.input = Shapes::ShapeRef.new(shape: CreateEnvironmentRequest)
945
946
  o.output = Shapes::ShapeRef.new(shape: CreateEnvironmentResponse)
946
947
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
@@ -1033,6 +1034,7 @@ module Aws::Finspace
1033
1034
  o.name = "DeleteEnvironment"
1034
1035
  o.http_method = "DELETE"
1035
1036
  o.http_request_uri = "/environment/{environmentId}"
1037
+ o.deprecated = true
1036
1038
  o.input = Shapes::ShapeRef.new(shape: DeleteEnvironmentRequest)
1037
1039
  o.output = Shapes::ShapeRef.new(shape: DeleteEnvironmentResponse)
1038
1040
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -1101,6 +1103,7 @@ module Aws::Finspace
1101
1103
  o.name = "GetEnvironment"
1102
1104
  o.http_method = "GET"
1103
1105
  o.http_request_uri = "/environment/{environmentId}"
1106
+ o.deprecated = true
1104
1107
  o.input = Shapes::ShapeRef.new(shape: GetEnvironmentRequest)
1105
1108
  o.output = Shapes::ShapeRef.new(shape: GetEnvironmentResponse)
1106
1109
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -1192,6 +1195,7 @@ module Aws::Finspace
1192
1195
  o.name = "ListEnvironments"
1193
1196
  o.http_method = "GET"
1194
1197
  o.http_request_uri = "/environment"
1198
+ o.deprecated = true
1195
1199
  o.input = Shapes::ShapeRef.new(shape: ListEnvironmentsRequest)
1196
1200
  o.output = Shapes::ShapeRef.new(shape: ListEnvironmentsResponse)
1197
1201
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
@@ -1337,6 +1341,7 @@ module Aws::Finspace
1337
1341
  o.name = "UpdateEnvironment"
1338
1342
  o.http_method = "PUT"
1339
1343
  o.http_request_uri = "/environment/{environmentId}"
1344
+ o.deprecated = true
1340
1345
  o.input = Shapes::ShapeRef.new(shape: UpdateEnvironmentRequest)
1341
1346
  o.output = Shapes::ShapeRef.new(shape: UpdateEnvironmentResponse)
1342
1347
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-finspace/customizations'
52
52
  # @!group service
53
53
  module Aws::Finspace
54
54
 
55
- GEM_VERSION = '1.22.0'
55
+ GEM_VERSION = '1.23.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-finspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.0
4
+ version: 1.23.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: 2023-10-30 00:00:00.000000000 Z
11
+ date: 2023-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core