aws-sdk-amplifybackend 1.8.0 → 1.9.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: 648cc231814ff567d51803b882cb14e39527ad3c0e81d8d0891668c62dd541b2
4
- data.tar.gz: 6e9168fe8e8e719ccb46ebfe350956fd7ec55e6eec087664b8f56756f07b2027
3
+ metadata.gz: 1d9491533f2de19913288a99803b06355a738974d4cbb201bf0fea1d047bae23
4
+ data.tar.gz: 154260afd5b79e49ea0d827d984d07d60cb635e3691d17466ef97920cedec774
5
5
  SHA512:
6
- metadata.gz: 0f30ec49d6679ec640a7df742dc2c4fd309fe5d91ba2db2550dad691e05d9b97e782e912c3fb3ce120a50058aaa570b681c7a262e1ecc55b84e33d633720c22b
7
- data.tar.gz: c187ac4df15f356948ef83468f4d0a84bbfa43db539abcdd15937211164aa4037ff0aca8bddb247cb3fb449c7b0f5ffbe9116a5ac7cb6f0faaa0ed64e1308abb
6
+ metadata.gz: 73de34c89deffb21bccc9f3c6c23139714287e705b736458cf26afc8625bce5dee8de9a177b675c02cd26d4fca88349f1d56ddde69d9de04fd7ec390dcd0a3d3
7
+ data.tar.gz: 7c82c4d830342c2c0e4b2d06b9919e4bdf5bdd125e7b0b62eb42ee39b07f4281e39650a6ce728b40a073b3070760558d3c815227ce68d1f41bd9c1e60bb2e02b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2021-10-06)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.8.0 (2021-09-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.9.0
@@ -929,6 +929,7 @@ module Aws::AmplifyBackend
929
929
  #
930
930
  # @return [Types::GetBackendResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
931
931
  #
932
+ # * {Types::GetBackendResponse#amplify_feature_flags #amplify_feature_flags} => String
932
933
  # * {Types::GetBackendResponse#amplify_meta_config #amplify_meta_config} => String
933
934
  # * {Types::GetBackendResponse#app_id #app_id} => String
934
935
  # * {Types::GetBackendResponse#app_name #app_name} => String
@@ -945,6 +946,7 @@ module Aws::AmplifyBackend
945
946
  #
946
947
  # @example Response structure
947
948
  #
949
+ # resp.amplify_feature_flags #=> String
948
950
  # resp.amplify_meta_config #=> String
949
951
  # resp.app_id #=> String
950
952
  # resp.app_name #=> String
@@ -1732,7 +1734,7 @@ module Aws::AmplifyBackend
1732
1734
  params: params,
1733
1735
  config: config)
1734
1736
  context[:gem_name] = 'aws-sdk-amplifybackend'
1735
- context[:gem_version] = '1.8.0'
1737
+ context[:gem_version] = '1.9.0'
1736
1738
  Seahorse::Client::Request.new(handlers, context)
1737
1739
  end
1738
1740
 
@@ -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.8.0'
51
+ GEM_VERSION = '1.9.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.8.0
4
+ version: 1.9.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-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core