aws-sdk-appconfig 1.6.0 → 1.7.1

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: 368082eb797e7e268c65ad1f3d0168eb50298aa80487cd8ecda9c7899a6abc3d
4
- data.tar.gz: dc1e4ca3c9ccf632856b033ad247dd8b63c91b011956f2df11e610b33d06bf96
3
+ metadata.gz: 3cab30030cf053171922ac755e787f2deedcc332c3bcc1a3034e69097165a12f
4
+ data.tar.gz: 1517397d645d33feb06a0dd600e399329ef766f1759039d07ebfe1110d6038a9
5
5
  SHA512:
6
- metadata.gz: d7d8ea4e91f72d3d40e62a9bf0161dc29c4fc257f0fdda32df1ba98aa7eaa5d183916e1e5ea320715a8700cfc37fee7fdc5ed633cd20929bbf35f5a43996dade
7
- data.tar.gz: 20900ec8c3a060cee2684484a25f8af2a34765cb2640ba4cba15f2a9af6b27065038c5d19dca4254a52d9f6dc9e089a4c2eee6e0576ca60f23ca7f05e75a1b03
6
+ metadata.gz: a44b5ad1a72fe66df93168875e78e170446111864d9fd7d29403942d8d87f7b14bb42ffd7fc1e11b6968910c207c85ea08f2f1c3c7cdff0cf3b6640e03ae06fd
7
+ data.tar.gz: 3527dd14ad58a646ea84b573a7e14cee73c58daca2888708ad761c5064131699fe02b7194062dc180fdbeed3571bb3d20229d0c54d07351322279d5b75d4db6b
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-appconfig/customizations'
45
45
  # @service
46
46
  module Aws::AppConfig
47
47
 
48
- GEM_VERSION = '1.6.0'
48
+ GEM_VERSION = '1.7.1'
49
49
 
50
50
  end
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
24
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
25
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
26
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
27
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
28
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
29
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
30
 
@@ -69,6 +70,7 @@ module Aws::AppConfig
69
70
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
71
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
72
  add_plugin(Aws::Plugins::TransferEncoding)
73
+ add_plugin(Aws::Plugins::HttpChecksum)
72
74
  add_plugin(Aws::Plugins::SignatureV4)
73
75
  add_plugin(Aws::Plugins::Protocols::RestJson)
74
76
 
@@ -161,7 +163,7 @@ module Aws::AppConfig
161
163
  # @option options [String] :endpoint
162
164
  # The client endpoint is normally constructed from the `:region`
163
165
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be a valid HTTP(S) URI.
166
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
167
  #
166
168
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
169
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -425,7 +427,7 @@ module Aws::AppConfig
425
427
  # name: "Name", # required
426
428
  # description: "Description",
427
429
  # location_uri: "Uri", # required
428
- # retrieval_role_arn: "Arn", # required
430
+ # retrieval_role_arn: "RoleArn", # required
429
431
  # validators: [
430
432
  # {
431
433
  # type: "JSON_SCHEMA", # required, accepts JSON_SCHEMA, LAMBDA
@@ -609,7 +611,7 @@ module Aws::AppConfig
609
611
  # monitors: [
610
612
  # {
611
613
  # alarm_arn: "Arn",
612
- # alarm_role_arn: "Arn",
614
+ # alarm_role_arn: "RoleArn",
613
615
  # },
614
616
  # ],
615
617
  # tags: {
@@ -1658,7 +1660,7 @@ module Aws::AppConfig
1658
1660
  # configuration_profile_id: "Id", # required
1659
1661
  # name: "Name",
1660
1662
  # description: "Description",
1661
- # retrieval_role_arn: "Arn",
1663
+ # retrieval_role_arn: "RoleArn",
1662
1664
  # validators: [
1663
1665
  # {
1664
1666
  # type: "JSON_SCHEMA", # required, accepts JSON_SCHEMA, LAMBDA
@@ -1815,7 +1817,7 @@ module Aws::AppConfig
1815
1817
  # monitors: [
1816
1818
  # {
1817
1819
  # alarm_arn: "Arn",
1818
- # alarm_role_arn: "Arn",
1820
+ # alarm_role_arn: "RoleArn",
1819
1821
  # },
1820
1822
  # ],
1821
1823
  # })
@@ -1884,7 +1886,7 @@ module Aws::AppConfig
1884
1886
  params: params,
1885
1887
  config: config)
1886
1888
  context[:gem_name] = 'aws-sdk-appconfig'
1887
- context[:gem_version] = '1.6.0'
1889
+ context[:gem_version] = '1.7.1'
1888
1890
  Seahorse::Client::Request.new(handlers, context)
1889
1891
  end
1890
1892
 
@@ -76,6 +76,7 @@ module Aws::AppConfig
76
76
  ReplicateTo = Shapes::StringShape.new(name: 'ReplicateTo')
77
77
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
78
78
  ResourceTags = Shapes::StructureShape.new(name: 'ResourceTags')
79
+ RoleArn = Shapes::StringShape.new(name: 'RoleArn')
79
80
  StartDeploymentRequest = Shapes::StructureShape.new(name: 'StartDeploymentRequest')
80
81
  StopDeploymentRequest = Shapes::StructureShape.new(name: 'StopDeploymentRequest')
81
82
  String = Shapes::StringShape.new(name: 'String')
@@ -126,7 +127,7 @@ module Aws::AppConfig
126
127
  ConfigurationProfile.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
127
128
  ConfigurationProfile.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
128
129
  ConfigurationProfile.add_member(:location_uri, Shapes::ShapeRef.new(shape: Uri, location_name: "LocationUri"))
129
- ConfigurationProfile.add_member(:retrieval_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RetrievalRoleArn"))
130
+ ConfigurationProfile.add_member(:retrieval_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RetrievalRoleArn"))
130
131
  ConfigurationProfile.add_member(:validators, Shapes::ShapeRef.new(shape: ValidatorList, location_name: "Validators"))
131
132
  ConfigurationProfile.struct_class = Types::ConfigurationProfile
132
133
 
@@ -155,7 +156,7 @@ module Aws::AppConfig
155
156
  CreateConfigurationProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
156
157
  CreateConfigurationProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
157
158
  CreateConfigurationProfileRequest.add_member(:location_uri, Shapes::ShapeRef.new(shape: Uri, required: true, location_name: "LocationUri"))
158
- CreateConfigurationProfileRequest.add_member(:retrieval_role_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "RetrievalRoleArn"))
159
+ CreateConfigurationProfileRequest.add_member(:retrieval_role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RetrievalRoleArn"))
159
160
  CreateConfigurationProfileRequest.add_member(:validators, Shapes::ShapeRef.new(shape: ValidatorList, location_name: "Validators"))
160
161
  CreateConfigurationProfileRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
161
162
  CreateConfigurationProfileRequest.struct_class = Types::CreateConfigurationProfileRequest
@@ -325,7 +326,7 @@ module Aws::AppConfig
325
326
  ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
326
327
 
327
328
  Monitor.add_member(:alarm_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "AlarmArn"))
328
- Monitor.add_member(:alarm_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "AlarmRoleArn"))
329
+ Monitor.add_member(:alarm_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "AlarmRoleArn"))
329
330
  Monitor.struct_class = Types::Monitor
330
331
 
331
332
  MonitorList.member = Shapes::ShapeRef.new(shape: Monitor)
@@ -373,7 +374,7 @@ module Aws::AppConfig
373
374
  UpdateConfigurationProfileRequest.add_member(:configuration_profile_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "ConfigurationProfileId"))
374
375
  UpdateConfigurationProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
375
376
  UpdateConfigurationProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
376
- UpdateConfigurationProfileRequest.add_member(:retrieval_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "RetrievalRoleArn"))
377
+ UpdateConfigurationProfileRequest.add_member(:retrieval_role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RetrievalRoleArn"))
377
378
  UpdateConfigurationProfileRequest.add_member(:validators, Shapes::ShapeRef.new(shape: ValidatorList, location_name: "Validators"))
378
379
  UpdateConfigurationProfileRequest.struct_class = Types::UpdateConfigurationProfileRequest
379
380
 
@@ -531,7 +532,6 @@ module Aws::AppConfig
531
532
  o.output = Shapes::ShapeRef.new(shape: Configuration)
532
533
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
533
534
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
534
- o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
535
535
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
536
536
  end)
537
537
 
@@ -232,7 +232,7 @@ module Aws::AppConfig
232
232
  # name: "Name", # required
233
233
  # description: "Description",
234
234
  # location_uri: "Uri", # required
235
- # retrieval_role_arn: "Arn", # required
235
+ # retrieval_role_arn: "RoleArn", # required
236
236
  # validators: [
237
237
  # {
238
238
  # type: "JSON_SCHEMA", # required, accepts JSON_SCHEMA, LAMBDA
@@ -399,7 +399,7 @@ module Aws::AppConfig
399
399
  # monitors: [
400
400
  # {
401
401
  # alarm_arn: "Arn",
402
- # alarm_role_arn: "Arn",
402
+ # alarm_role_arn: "RoleArn",
403
403
  # },
404
404
  # ],
405
405
  # tags: {
@@ -1247,7 +1247,7 @@ module Aws::AppConfig
1247
1247
  #
1248
1248
  # {
1249
1249
  # alarm_arn: "Arn",
1250
- # alarm_role_arn: "Arn",
1250
+ # alarm_role_arn: "RoleArn",
1251
1251
  # }
1252
1252
  #
1253
1253
  # @!attribute [rw] alarm_arn
@@ -1473,7 +1473,7 @@ module Aws::AppConfig
1473
1473
  # configuration_profile_id: "Id", # required
1474
1474
  # name: "Name",
1475
1475
  # description: "Description",
1476
- # retrieval_role_arn: "Arn",
1476
+ # retrieval_role_arn: "RoleArn",
1477
1477
  # validators: [
1478
1478
  # {
1479
1479
  # type: "JSON_SCHEMA", # required, accepts JSON_SCHEMA, LAMBDA
@@ -1608,7 +1608,7 @@ module Aws::AppConfig
1608
1608
  # monitors: [
1609
1609
  # {
1610
1610
  # alarm_arn: "Arn",
1611
- # alarm_role_arn: "Arn",
1611
+ # alarm_role_arn: "RoleArn",
1612
1612
  # },
1613
1613
  # ],
1614
1614
  # }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appconfig
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.1
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: 2020-05-28 00:00:00.000000000 Z
11
+ date: 2020-06-11 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.71.0
22
+ version: 3.99.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.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement