aws-sdk-configservice 1.15.0 → 1.16.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
  SHA1:
3
- metadata.gz: 8811dc84abe555b83e7602506a0c0b787e46e56d
4
- data.tar.gz: 05c5a89288f9aa384a1b364e6777af0fe681fd2d
3
+ metadata.gz: e3df391acfa9a8292128539f7154e6194e9ceda7
4
+ data.tar.gz: 300f07b17642502725e15472a731a730eb392a10
5
5
  SHA512:
6
- metadata.gz: ba067879be41d9a60f5a5902e8763330c5c62830c2633ad3dd608d88f97fa7222c10b35fb2aef341c2bb3b1a495987eb46e9ceb50a6404602c21f8886a1e127f
7
- data.tar.gz: d893d4d1ee0ec338b54bb25883f6296401cadad00545d5107ed6f2e80c3425ebdcfad1943ad3e9e455c3ccfe86f2f609a6707709074e55d90cd0d15e152c018e
6
+ metadata.gz: 9f285706fbf0474b9c0645197292d371836cae79275a328d382fa9bd6f8dd32cfeb8f2fb8318ff57c5baecd3df595230d561a749961d88dd5cf119e61f4dd655
7
+ data.tar.gz: 0f64ef5571d2a5c31623eb013a578209b345cb9b7fca35a29c8febc14fa1145ff900b9f550d31007492bc33f67ae63bffc4591995a82c559018610722ed60f82
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-configservice/customizations'
42
42
  # @service
43
43
  module Aws::ConfigService
44
44
 
45
- GEM_VERSION = '1.15.0'
45
+ GEM_VERSION = '1.16.0'
46
46
 
47
47
  end
@@ -872,6 +872,7 @@ module Aws::ConfigService
872
872
  # resp.config_rules[0].input_parameters #=> String
873
873
  # resp.config_rules[0].maximum_execution_frequency #=> String, one of "One_Hour", "Three_Hours", "Six_Hours", "Twelve_Hours", "TwentyFour_Hours"
874
874
  # resp.config_rules[0].config_rule_state #=> String, one of "ACTIVE", "DELETING", "DELETING_RESULTS", "EVALUATING"
875
+ # resp.config_rules[0].created_by #=> String
875
876
  # resp.next_token #=> String
876
877
  #
877
878
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/DescribeConfigRules AWS API Documentation
@@ -1998,6 +1999,7 @@ module Aws::ConfigService
1998
1999
  # input_parameters: "StringWithCharLimit1024",
1999
2000
  # maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
2000
2001
  # config_rule_state: "ACTIVE", # accepts ACTIVE, DELETING, DELETING_RESULTS, EVALUATING
2002
+ # created_by: "StringWithCharLimit256",
2001
2003
  # },
2002
2004
  # })
2003
2005
  #
@@ -2401,7 +2403,7 @@ module Aws::ConfigService
2401
2403
  params: params,
2402
2404
  config: config)
2403
2405
  context[:gem_name] = 'aws-sdk-configservice'
2404
- context[:gem_version] = '1.15.0'
2406
+ context[:gem_version] = '1.16.0'
2405
2407
  Seahorse::Client::Request.new(handlers, context)
2406
2408
  end
2407
2409
 
@@ -400,6 +400,7 @@ module Aws::ConfigService
400
400
  ConfigRule.add_member(:input_parameters, Shapes::ShapeRef.new(shape: StringWithCharLimit1024, location_name: "InputParameters"))
401
401
  ConfigRule.add_member(:maximum_execution_frequency, Shapes::ShapeRef.new(shape: MaximumExecutionFrequency, location_name: "MaximumExecutionFrequency"))
402
402
  ConfigRule.add_member(:config_rule_state, Shapes::ShapeRef.new(shape: ConfigRuleState, location_name: "ConfigRuleState"))
403
+ ConfigRule.add_member(:created_by, Shapes::ShapeRef.new(shape: StringWithCharLimit256, location_name: "CreatedBy"))
403
404
  ConfigRule.struct_class = Types::ConfigRule
404
405
 
405
406
  ConfigRuleComplianceFilters.add_member(:config_rule_name, Shapes::ShapeRef.new(shape: ConfigRuleName, location_name: "ConfigRuleName"))
@@ -593,6 +593,7 @@ module Aws::ConfigService
593
593
  # input_parameters: "StringWithCharLimit1024",
594
594
  # maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
595
595
  # config_rule_state: "ACTIVE", # accepts ACTIVE, DELETING, DELETING_RESULTS, EVALUATING
596
+ # created_by: "StringWithCharLimit256",
596
597
  # }
597
598
  #
598
599
  # @!attribute [rw] config_rule_name
@@ -670,6 +671,15 @@ module Aws::ConfigService
670
671
  # erased and are no longer available.
671
672
  # @return [String]
672
673
  #
674
+ # @!attribute [rw] created_by
675
+ # Service principal name of the service that created the rule.
676
+ #
677
+ # <note markdown="1"> The field is populated only if the service linked rule is created by
678
+ # a service. The field is empty if you create your own rule.
679
+ #
680
+ # </note>
681
+ # @return [String]
682
+ #
673
683
  # @see http://docs.aws.amazon.com/goto/WebAPI/config-2014-11-12/ConfigRule AWS API Documentation
674
684
  #
675
685
  class ConfigRule < Struct.new(
@@ -681,7 +691,8 @@ module Aws::ConfigService
681
691
  :source,
682
692
  :input_parameters,
683
693
  :maximum_execution_frequency,
684
- :config_rule_state)
694
+ :config_rule_state,
695
+ :created_by)
685
696
  include Aws::Structure
686
697
  end
687
698
 
@@ -3007,6 +3018,7 @@ module Aws::ConfigService
3007
3018
  # input_parameters: "StringWithCharLimit1024",
3008
3019
  # maximum_execution_frequency: "One_Hour", # accepts One_Hour, Three_Hours, Six_Hours, Twelve_Hours, TwentyFour_Hours
3009
3020
  # config_rule_state: "ACTIVE", # accepts ACTIVE, DELETING, DELETING_RESULTS, EVALUATING
3021
+ # created_by: "StringWithCharLimit256",
3010
3022
  # },
3011
3023
  # }
3012
3024
  #
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.15.0
4
+ version: 1.16.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: 2018-09-06 00:00:00.000000000 Z
11
+ date: 2018-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core