aws-sdk-amplifybackend 1.7.0 → 1.11.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: 6b3f186a80b277293b12650045e7b43615cb462d6b1472c95977b232f913fef1
4
- data.tar.gz: 5d72ead43bdceaa0470195d8b57584dee7ae58380f353f3d739e9b0e7d2ad3b8
3
+ metadata.gz: 75929ec757bf6a29aab65a2e82cb51538d8f7d6dbecc35edc6fe83352e864713
4
+ data.tar.gz: e143a76222ab20853ebd865c61081850df50df9fa8a28b40262398794b793054
5
5
  SHA512:
6
- metadata.gz: b0763624f7a32c6d9a049f3729cff22432efa7e5a55325546cc3f98dd210562d567b6c086e319d63f90e4e31b71ed9daa04f86c184f0734bd05236210c9ac77e
7
- data.tar.gz: 1d2a81e1032d11d46e598987466b7241eb689d7ac68dfca7c78fcf4e7a0c483f1939de6a0295dfff0fc433dc2d5fa663e89e9e8f471517a9c0b9de7841b61113
6
+ metadata.gz: 5508761bc3908b1e248673eb029a81bf496e3a54cbbf0c1632aeef31c1f478b8b61a5c5e5648c1928db16bd6754e0744dac0f2b5a24ad4de602a08399598544b
7
+ data.tar.gz: 4120818898d2f3205eeea5a4f36707b9a74125377498931f0c94c96a6d921b611787f0f0c24ba3b733ea8e2d96a4e2e457ba91fb3201250948503cebd63abedb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.10.0 (2021-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.9.0 (2021-10-06)
15
+ ------------------
16
+
17
+ * Feature - Adding a new field 'AmplifyFeatureFlags' to the response of the GetBackend operation. It will return a stringified version of the cli.json file for the given Amplify project.
18
+
19
+ 1.8.0 (2021-09-01)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.7.0 (2021-07-30)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.11.0
@@ -275,6 +275,15 @@ module Aws::AmplifyBackend
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -929,6 +938,7 @@ module Aws::AmplifyBackend
929
938
  #
930
939
  # @return [Types::GetBackendResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
931
940
  #
941
+ # * {Types::GetBackendResponse#amplify_feature_flags #amplify_feature_flags} => String
932
942
  # * {Types::GetBackendResponse#amplify_meta_config #amplify_meta_config} => String
933
943
  # * {Types::GetBackendResponse#app_id #app_id} => String
934
944
  # * {Types::GetBackendResponse#app_name #app_name} => String
@@ -945,6 +955,7 @@ module Aws::AmplifyBackend
945
955
  #
946
956
  # @example Response structure
947
957
  #
958
+ # resp.amplify_feature_flags #=> String
948
959
  # resp.amplify_meta_config #=> String
949
960
  # resp.app_id #=> String
950
961
  # resp.app_name #=> String
@@ -1732,7 +1743,7 @@ module Aws::AmplifyBackend
1732
1743
  params: params,
1733
1744
  config: config)
1734
1745
  context[:gem_name] = 'aws-sdk-amplifybackend'
1735
- context[:gem_version] = '1.7.0'
1746
+ context[:gem_version] = '1.11.0'
1736
1747
  Seahorse::Client::Request.new(handlers, context)
1737
1748
  end
1738
1749
 
@@ -568,6 +568,7 @@ module Aws::AmplifyBackend
568
568
  GetBackendRequest.add_member(:backend_environment_name, Shapes::ShapeRef.new(shape: __string, location_name: "backendEnvironmentName"))
569
569
  GetBackendRequest.struct_class = Types::GetBackendRequest
570
570
 
571
+ GetBackendRespObj.add_member(:amplify_feature_flags, Shapes::ShapeRef.new(shape: __string, location_name: "amplifyFeatureFlags"))
571
572
  GetBackendRespObj.add_member(:amplify_meta_config, Shapes::ShapeRef.new(shape: __string, location_name: "amplifyMetaConfig"))
572
573
  GetBackendRespObj.add_member(:app_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "appId"))
573
574
  GetBackendRespObj.add_member(:app_name, Shapes::ShapeRef.new(shape: __string, location_name: "appName"))
@@ -576,6 +577,7 @@ module Aws::AmplifyBackend
576
577
  GetBackendRespObj.add_member(:error, Shapes::ShapeRef.new(shape: __string, location_name: "error"))
577
578
  GetBackendRespObj.struct_class = Types::GetBackendRespObj
578
579
 
580
+ GetBackendResponse.add_member(:amplify_feature_flags, Shapes::ShapeRef.new(shape: __string, location_name: "amplifyFeatureFlags"))
579
581
  GetBackendResponse.add_member(:amplify_meta_config, Shapes::ShapeRef.new(shape: __string, location_name: "amplifyMetaConfig"))
580
582
  GetBackendResponse.add_member(:app_id, Shapes::ShapeRef.new(shape: __string, location_name: "appId"))
581
583
  GetBackendResponse.add_member(:app_name, Shapes::ShapeRef.new(shape: __string, location_name: "appName"))
@@ -2472,6 +2472,10 @@ module Aws::AmplifyBackend
2472
2472
 
2473
2473
  # The response object for this operation.
2474
2474
  #
2475
+ # @!attribute [rw] amplify_feature_flags
2476
+ # A stringified version of the cli.json file for your Amplify project.
2477
+ # @return [String]
2478
+ #
2475
2479
  # @!attribute [rw] amplify_meta_config
2476
2480
  # A stringified version of the current configs for your Amplify
2477
2481
  # project.
@@ -2500,6 +2504,7 @@ module Aws::AmplifyBackend
2500
2504
  # @see http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendRespObj AWS API Documentation
2501
2505
  #
2502
2506
  class GetBackendRespObj < Struct.new(
2507
+ :amplify_feature_flags,
2503
2508
  :amplify_meta_config,
2504
2509
  :app_id,
2505
2510
  :app_name,
@@ -2510,6 +2515,9 @@ module Aws::AmplifyBackend
2510
2515
  include Aws::Structure
2511
2516
  end
2512
2517
 
2518
+ # @!attribute [rw] amplify_feature_flags
2519
+ # @return [String]
2520
+ #
2513
2521
  # @!attribute [rw] amplify_meta_config
2514
2522
  # @return [String]
2515
2523
  #
@@ -2531,6 +2539,7 @@ module Aws::AmplifyBackend
2531
2539
  # @see http://docs.aws.amazon.com/goto/WebAPI/amplifybackend-2020-08-11/GetBackendResponse AWS API Documentation
2532
2540
  #
2533
2541
  class GetBackendResponse < Struct.new(
2542
+ :amplify_feature_flags,
2534
2543
  :amplify_meta_config,
2535
2544
  :app_id,
2536
2545
  :app_name,
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-amplifybackend/customizations'
48
48
  # @!group service
49
49
  module Aws::AmplifyBackend
50
50
 
51
- GEM_VERSION = '1.7.0'
51
+ GEM_VERSION = '1.11.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-amplifybackend
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.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: 2021-07-30 00:00:00.000000000 Z
11
+ date: 2021-11-04 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.119.0
22
+ version: 3.122.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.119.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="