aws-sdk-configservice 1.26.0 → 1.27.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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91a912aa525377c6808dd34810496ede030f4024
|
4
|
+
data.tar.gz: d161b8ead7e9f6b8062abf89c6bdd0763126ecff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1733f04aeeab55bd1393df97c5d123169e3fc6b8babc20beaf1212486ef0c0d81917a8e07a9ce76fad1f66e0f2eb54f5221dff57788db19a24c822a4e4c27e6
|
7
|
+
data.tar.gz: bd59bf514dc0839c9d889fd4519c0d8a07b3fd43a455ea32c6f13dfa8c6fdd1eca647ee5380c6b875005c4a4c9035511b216c86eae5f12763d0588e455f44949
|
@@ -209,6 +209,49 @@ module Aws::ConfigService
|
|
209
209
|
# When `true`, request parameters are validated before
|
210
210
|
# sending the request.
|
211
211
|
#
|
212
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
213
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
214
|
+
#
|
215
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
216
|
+
# seconds to wait when opening a HTTP session before rasing a
|
217
|
+
# `Timeout::Error`.
|
218
|
+
#
|
219
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
220
|
+
# number of seconds to wait for response data. This value can
|
221
|
+
# safely be set
|
222
|
+
# per-request on the session yeidled by {#session_for}.
|
223
|
+
#
|
224
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
225
|
+
# seconds a connection is allowed to sit idble before it is
|
226
|
+
# considered stale. Stale connections are closed and removed
|
227
|
+
# from the pool before making a request.
|
228
|
+
#
|
229
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
230
|
+
# seconds to wait for a 100-continue response before sending the
|
231
|
+
# request body. This option has no effect unless the request has
|
232
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
233
|
+
# disables this behaviour. This value can safely be set per
|
234
|
+
# request on the session yeidled by {#session_for}.
|
235
|
+
#
|
236
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
237
|
+
# HTTP debug output will be sent to the `:logger`.
|
238
|
+
#
|
239
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
240
|
+
# SSL peer certificates are verified when establishing a
|
241
|
+
# connection.
|
242
|
+
#
|
243
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
244
|
+
# certificate authority bundle file that should be used when
|
245
|
+
# verifying peer certificates. If you do not pass
|
246
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
247
|
+
# will be used if available.
|
248
|
+
#
|
249
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
250
|
+
# directory that contains the unbundled SSL certificate
|
251
|
+
# authority files for verifying peer certificates. If you do
|
252
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
253
|
+
# system default will be used if available.
|
254
|
+
#
|
212
255
|
def initialize(*args)
|
213
256
|
super
|
214
257
|
end
|
@@ -909,7 +952,7 @@ module Aws::ConfigService
|
|
909
952
|
# The number of rule evaluation results that you want returned.
|
910
953
|
#
|
911
954
|
# This parameter is required if the rule limit for your account is more
|
912
|
-
# than the default of
|
955
|
+
# than the default of 150 rules.
|
913
956
|
#
|
914
957
|
# For information about requesting a rule limit increase, see [AWS
|
915
958
|
# Config Limits][1] in the *AWS General Reference Guide*.
|
@@ -2374,6 +2417,8 @@ module Aws::ConfigService
|
|
2374
2417
|
# @option params [required, String] :authorized_aws_region
|
2375
2418
|
# The region authorized to collect aggregated data.
|
2376
2419
|
#
|
2420
|
+
# @option params [Array<Types::Tag>] :tags
|
2421
|
+
#
|
2377
2422
|
# @return [Types::PutAggregationAuthorizationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2378
2423
|
#
|
2379
2424
|
# * {Types::PutAggregationAuthorizationResponse#aggregation_authorization #aggregation_authorization} => Types::AggregationAuthorization
|
@@ -2383,6 +2428,12 @@ module Aws::ConfigService
|
|
2383
2428
|
# resp = client.put_aggregation_authorization({
|
2384
2429
|
# authorized_account_id: "AccountId", # required
|
2385
2430
|
# authorized_aws_region: "AwsRegion", # required
|
2431
|
+
# tags: [
|
2432
|
+
# {
|
2433
|
+
# key: "TagKey",
|
2434
|
+
# value: "TagValue",
|
2435
|
+
# },
|
2436
|
+
# ],
|
2386
2437
|
# })
|
2387
2438
|
#
|
2388
2439
|
# @example Response structure
|
@@ -2448,6 +2499,8 @@ module Aws::ConfigService
|
|
2448
2499
|
# @option params [required, Types::ConfigRule] :config_rule
|
2449
2500
|
# The rule that you want to add to your account.
|
2450
2501
|
#
|
2502
|
+
# @option params [Array<Types::Tag>] :tags
|
2503
|
+
#
|
2451
2504
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
2452
2505
|
#
|
2453
2506
|
# @example Request syntax with placeholder values
|
@@ -2480,6 +2533,12 @@ module Aws::ConfigService
|
|
2480
2533
|
# config_rule_state: "ACTIVE", # accepts ACTIVE, DELETING, DELETING_RESULTS, EVALUATING
|
2481
2534
|
# created_by: "StringWithCharLimit256",
|
2482
2535
|
# },
|
2536
|
+
# tags: [
|
2537
|
+
# {
|
2538
|
+
# key: "TagKey",
|
2539
|
+
# value: "TagValue",
|
2540
|
+
# },
|
2541
|
+
# ],
|
2483
2542
|
# })
|
2484
2543
|
#
|
2485
2544
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConfigRule AWS API Documentation
|
@@ -2514,6 +2573,8 @@ module Aws::ConfigService
|
|
2514
2573
|
# @option params [Types::OrganizationAggregationSource] :organization_aggregation_source
|
2515
2574
|
# An OrganizationAggregationSource object.
|
2516
2575
|
#
|
2576
|
+
# @option params [Array<Types::Tag>] :tags
|
2577
|
+
#
|
2517
2578
|
# @return [Types::PutConfigurationAggregatorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2518
2579
|
#
|
2519
2580
|
# * {Types::PutConfigurationAggregatorResponse#configuration_aggregator #configuration_aggregator} => Types::ConfigurationAggregator
|
@@ -2534,6 +2595,12 @@ module Aws::ConfigService
|
|
2534
2595
|
# aws_regions: ["String"],
|
2535
2596
|
# all_aws_regions: false,
|
2536
2597
|
# },
|
2598
|
+
# tags: [
|
2599
|
+
# {
|
2600
|
+
# key: "TagKey",
|
2601
|
+
# value: "TagValue",
|
2602
|
+
# },
|
2603
|
+
# ],
|
2537
2604
|
# })
|
2538
2605
|
#
|
2539
2606
|
# @example Response structure
|
@@ -3110,7 +3177,7 @@ module Aws::ConfigService
|
|
3110
3177
|
params: params,
|
3111
3178
|
config: config)
|
3112
3179
|
context[:gem_name] = 'aws-sdk-configservice'
|
3113
|
-
context[:gem_version] = '1.
|
3180
|
+
context[:gem_version] = '1.27.0'
|
3114
3181
|
Seahorse::Client::Request.new(handlers, context)
|
3115
3182
|
end
|
3116
3183
|
|
@@ -325,6 +325,7 @@ module Aws::ConfigService
|
|
325
325
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
326
326
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
327
327
|
Tags = Shapes::MapShape.new(name: 'Tags')
|
328
|
+
TagsList = Shapes::ListShape.new(name: 'TagsList')
|
328
329
|
TooManyTagsException = Shapes::StructureShape.new(name: 'TooManyTagsException')
|
329
330
|
UnprocessedResourceIdentifierList = Shapes::ListShape.new(name: 'UnprocessedResourceIdentifierList')
|
330
331
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
@@ -956,17 +957,20 @@ module Aws::ConfigService
|
|
956
957
|
|
957
958
|
PutAggregationAuthorizationRequest.add_member(:authorized_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "AuthorizedAccountId"))
|
958
959
|
PutAggregationAuthorizationRequest.add_member(:authorized_aws_region, Shapes::ShapeRef.new(shape: AwsRegion, required: true, location_name: "AuthorizedAwsRegion"))
|
960
|
+
PutAggregationAuthorizationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsList, location_name: "Tags"))
|
959
961
|
PutAggregationAuthorizationRequest.struct_class = Types::PutAggregationAuthorizationRequest
|
960
962
|
|
961
963
|
PutAggregationAuthorizationResponse.add_member(:aggregation_authorization, Shapes::ShapeRef.new(shape: AggregationAuthorization, location_name: "AggregationAuthorization"))
|
962
964
|
PutAggregationAuthorizationResponse.struct_class = Types::PutAggregationAuthorizationResponse
|
963
965
|
|
964
966
|
PutConfigRuleRequest.add_member(:config_rule, Shapes::ShapeRef.new(shape: ConfigRule, required: true, location_name: "ConfigRule"))
|
967
|
+
PutConfigRuleRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsList, location_name: "Tags"))
|
965
968
|
PutConfigRuleRequest.struct_class = Types::PutConfigRuleRequest
|
966
969
|
|
967
970
|
PutConfigurationAggregatorRequest.add_member(:configuration_aggregator_name, Shapes::ShapeRef.new(shape: ConfigurationAggregatorName, required: true, location_name: "ConfigurationAggregatorName"))
|
968
971
|
PutConfigurationAggregatorRequest.add_member(:account_aggregation_sources, Shapes::ShapeRef.new(shape: AccountAggregationSourceList, location_name: "AccountAggregationSources"))
|
969
972
|
PutConfigurationAggregatorRequest.add_member(:organization_aggregation_source, Shapes::ShapeRef.new(shape: OrganizationAggregationSource, location_name: "OrganizationAggregationSource"))
|
973
|
+
PutConfigurationAggregatorRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagsList, location_name: "Tags"))
|
970
974
|
PutConfigurationAggregatorRequest.struct_class = Types::PutConfigurationAggregatorRequest
|
971
975
|
|
972
976
|
PutConfigurationAggregatorResponse.add_member(:configuration_aggregator, Shapes::ShapeRef.new(shape: ConfigurationAggregator, location_name: "ConfigurationAggregator"))
|
@@ -1175,6 +1179,8 @@ module Aws::ConfigService
|
|
1175
1179
|
Tags.key = Shapes::ShapeRef.new(shape: Name)
|
1176
1180
|
Tags.value = Shapes::ShapeRef.new(shape: Value)
|
1177
1181
|
|
1182
|
+
TagsList.member = Shapes::ShapeRef.new(shape: Tag)
|
1183
|
+
|
1178
1184
|
UnprocessedResourceIdentifierList.member = Shapes::ShapeRef.new(shape: AggregateResourceIdentifier)
|
1179
1185
|
|
1180
1186
|
UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: AmazonResourceName, required: true, location_name: "ResourceArn"))
|
@@ -944,12 +944,6 @@ module Aws::ConfigService
|
|
944
944
|
# Provides options for how often AWS Config delivers configuration
|
945
945
|
# snapshots to the Amazon S3 bucket in your delivery channel.
|
946
946
|
#
|
947
|
-
# <note markdown="1"> If you want to create a rule that triggers evaluations for your
|
948
|
-
# resources when AWS Config delivers the configuration snapshot, see the
|
949
|
-
# following:
|
950
|
-
#
|
951
|
-
# </note>
|
952
|
-
#
|
953
947
|
# The frequency for a rule that triggers evaluations for your resources
|
954
948
|
# when AWS Config delivers the configuration snapshot is set by one of
|
955
949
|
# two values, depending on which is less frequent:
|
@@ -1878,7 +1872,7 @@ module Aws::ConfigService
|
|
1878
1872
|
# The number of rule evaluation results that you want returned.
|
1879
1873
|
#
|
1880
1874
|
# This parameter is required if the rule limit for your account is
|
1881
|
-
# more than the default of
|
1875
|
+
# more than the default of 150 rules.
|
1882
1876
|
#
|
1883
1877
|
# For information about requesting a rule limit increase, see [AWS
|
1884
1878
|
# Config Limits][1] in the *AWS General Reference Guide*.
|
@@ -3411,7 +3405,7 @@ module Aws::ConfigService
|
|
3411
3405
|
include Aws::Structure
|
3412
3406
|
end
|
3413
3407
|
|
3414
|
-
# This object contains regions to
|
3408
|
+
# This object contains regions to set up the aggregator and an IAM role
|
3415
3409
|
# to retrieve organization details.
|
3416
3410
|
#
|
3417
3411
|
# @note When making an API call, you may pass OrganizationAggregationSource
|
@@ -3424,7 +3418,7 @@ module Aws::ConfigService
|
|
3424
3418
|
# }
|
3425
3419
|
#
|
3426
3420
|
# @!attribute [rw] role_arn
|
3427
|
-
# ARN of the IAM role used to
|
3421
|
+
# ARN of the IAM role used to retrieve AWS Organization details
|
3428
3422
|
# associated with the aggregator account.
|
3429
3423
|
# @return [String]
|
3430
3424
|
#
|
@@ -3470,6 +3464,12 @@ module Aws::ConfigService
|
|
3470
3464
|
# {
|
3471
3465
|
# authorized_account_id: "AccountId", # required
|
3472
3466
|
# authorized_aws_region: "AwsRegion", # required
|
3467
|
+
# tags: [
|
3468
|
+
# {
|
3469
|
+
# key: "TagKey",
|
3470
|
+
# value: "TagValue",
|
3471
|
+
# },
|
3472
|
+
# ],
|
3473
3473
|
# }
|
3474
3474
|
#
|
3475
3475
|
# @!attribute [rw] authorized_account_id
|
@@ -3480,11 +3480,15 @@ module Aws::ConfigService
|
|
3480
3480
|
# The region authorized to collect aggregated data.
|
3481
3481
|
# @return [String]
|
3482
3482
|
#
|
3483
|
+
# @!attribute [rw] tags
|
3484
|
+
# @return [Array<Types::Tag>]
|
3485
|
+
#
|
3483
3486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutAggregationAuthorizationRequest AWS API Documentation
|
3484
3487
|
#
|
3485
3488
|
class PutAggregationAuthorizationRequest < Struct.new(
|
3486
3489
|
:authorized_account_id,
|
3487
|
-
:authorized_aws_region
|
3490
|
+
:authorized_aws_region,
|
3491
|
+
:tags)
|
3488
3492
|
include Aws::Structure
|
3489
3493
|
end
|
3490
3494
|
|
@@ -3530,16 +3534,26 @@ module Aws::ConfigService
|
|
3530
3534
|
# config_rule_state: "ACTIVE", # accepts ACTIVE, DELETING, DELETING_RESULTS, EVALUATING
|
3531
3535
|
# created_by: "StringWithCharLimit256",
|
3532
3536
|
# },
|
3537
|
+
# tags: [
|
3538
|
+
# {
|
3539
|
+
# key: "TagKey",
|
3540
|
+
# value: "TagValue",
|
3541
|
+
# },
|
3542
|
+
# ],
|
3533
3543
|
# }
|
3534
3544
|
#
|
3535
3545
|
# @!attribute [rw] config_rule
|
3536
3546
|
# The rule that you want to add to your account.
|
3537
3547
|
# @return [Types::ConfigRule]
|
3538
3548
|
#
|
3549
|
+
# @!attribute [rw] tags
|
3550
|
+
# @return [Array<Types::Tag>]
|
3551
|
+
#
|
3539
3552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConfigRuleRequest AWS API Documentation
|
3540
3553
|
#
|
3541
3554
|
class PutConfigRuleRequest < Struct.new(
|
3542
|
-
:config_rule
|
3555
|
+
:config_rule,
|
3556
|
+
:tags)
|
3543
3557
|
include Aws::Structure
|
3544
3558
|
end
|
3545
3559
|
|
@@ -3560,6 +3574,12 @@ module Aws::ConfigService
|
|
3560
3574
|
# aws_regions: ["String"],
|
3561
3575
|
# all_aws_regions: false,
|
3562
3576
|
# },
|
3577
|
+
# tags: [
|
3578
|
+
# {
|
3579
|
+
# key: "TagKey",
|
3580
|
+
# value: "TagValue",
|
3581
|
+
# },
|
3582
|
+
# ],
|
3563
3583
|
# }
|
3564
3584
|
#
|
3565
3585
|
# @!attribute [rw] configuration_aggregator_name
|
@@ -3574,12 +3594,16 @@ module Aws::ConfigService
|
|
3574
3594
|
# An OrganizationAggregationSource object.
|
3575
3595
|
# @return [Types::OrganizationAggregationSource]
|
3576
3596
|
#
|
3597
|
+
# @!attribute [rw] tags
|
3598
|
+
# @return [Array<Types::Tag>]
|
3599
|
+
#
|
3577
3600
|
# @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/PutConfigurationAggregatorRequest AWS API Documentation
|
3578
3601
|
#
|
3579
3602
|
class PutConfigurationAggregatorRequest < Struct.new(
|
3580
3603
|
:configuration_aggregator_name,
|
3581
3604
|
:account_aggregation_sources,
|
3582
|
-
:organization_aggregation_source
|
3605
|
+
:organization_aggregation_source,
|
3606
|
+
:tags)
|
3583
3607
|
include Aws::Structure
|
3584
3608
|
end
|
3585
3609
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-configservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.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: 2019-
|
11
|
+
date: 2019-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -59,7 +59,7 @@ files:
|
|
59
59
|
- lib/aws-sdk-configservice/errors.rb
|
60
60
|
- lib/aws-sdk-configservice/resource.rb
|
61
61
|
- lib/aws-sdk-configservice/types.rb
|
62
|
-
homepage:
|
62
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
63
63
|
licenses:
|
64
64
|
- Apache-2.0
|
65
65
|
metadata:
|