aws-sdk-simspaceweaver 1.2.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-simspaceweaver/client.rb +12 -1
- data/lib/aws-sdk-simspaceweaver/types.rb +6 -0
- data/lib/aws-sdk-simspaceweaver.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93729f08bd7a40f81f594de89d0570b803c9a5510ffe4333a7e3afd86bb04c5b
|
4
|
+
data.tar.gz: 3328477b208f8e4c318f70e5f7fac919bc3e55996105e703ad13b39319e542e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d142dc3e10c1e9b130a6b0af94d3a7927b382179a5190d8215a23dc66e7726b068f8849d3e1d9f0728235ae7fb73d10cee4057b4b0bfeb6e425619b8d24357ed
|
7
|
+
data.tar.gz: 647cb9c6ea63ab97e60090c2c7c3d0e7868d0de1cdf0f849a8350c8dabd9ab0840fa62a79cf50d53c2aa09d80f4af05dc8a9a6b750d3fd4ddb58512696db7a13
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.4.0 (2023-06-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release fixes using aws-us-gov ARNs in API calls and adds documentation for snapshot APIs.
|
8
|
+
|
9
|
+
1.3.0 (2023-05-31)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.2.0 (2023-04-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.4.0
|
@@ -275,6 +275,11 @@ module Aws::SimSpaceWeaver
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -406,6 +411,9 @@ module Aws::SimSpaceWeaver
|
|
406
411
|
# The Amazon S3 bucket and optional folder (object key prefix) where
|
407
412
|
# SimSpace Weaver creates the snapshot file.
|
408
413
|
#
|
414
|
+
# The Amazon S3 bucket must be in the same Amazon Web Services Region as
|
415
|
+
# the simulation.
|
416
|
+
#
|
409
417
|
# @option params [required, String] :simulation
|
410
418
|
# The name of the simulation.
|
411
419
|
#
|
@@ -898,6 +906,9 @@ module Aws::SimSpaceWeaver
|
|
898
906
|
# Provide a `SnapshotS3Location` to start your simulation from a
|
899
907
|
# snapshot.
|
900
908
|
#
|
909
|
+
# The Amazon S3 bucket must be in the same Amazon Web Services Region as
|
910
|
+
# the simulation.
|
911
|
+
#
|
901
912
|
# If you provide a `SnapshotS3Location` then you can't provide a
|
902
913
|
# `SchemaS3Location`.
|
903
914
|
#
|
@@ -1126,7 +1137,7 @@ module Aws::SimSpaceWeaver
|
|
1126
1137
|
params: params,
|
1127
1138
|
config: config)
|
1128
1139
|
context[:gem_name] = 'aws-sdk-simspaceweaver'
|
1129
|
-
context[:gem_version] = '1.
|
1140
|
+
context[:gem_version] = '1.4.0'
|
1130
1141
|
Seahorse::Client::Request.new(handlers, context)
|
1131
1142
|
end
|
1132
1143
|
|
@@ -65,6 +65,9 @@ module Aws::SimSpaceWeaver
|
|
65
65
|
# @!attribute [rw] destination
|
66
66
|
# The Amazon S3 bucket and optional folder (object key prefix) where
|
67
67
|
# SimSpace Weaver creates the snapshot file.
|
68
|
+
#
|
69
|
+
# The Amazon S3 bucket must be in the same Amazon Web Services Region
|
70
|
+
# as the simulation.
|
68
71
|
# @return [Types::S3Destination]
|
69
72
|
#
|
70
73
|
# @!attribute [rw] simulation
|
@@ -990,6 +993,9 @@ module Aws::SimSpaceWeaver
|
|
990
993
|
# Provide a `SnapshotS3Location` to start your simulation from a
|
991
994
|
# snapshot.
|
992
995
|
#
|
996
|
+
# The Amazon S3 bucket must be in the same Amazon Web Services Region
|
997
|
+
# as the simulation.
|
998
|
+
#
|
993
999
|
# If you provide a `SnapshotS3Location` then you can't provide a
|
994
1000
|
# `SchemaS3Location`.
|
995
1001
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-simspaceweaver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.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-
|
11
|
+
date: 2023-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.174.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|