aws-sdk-codestarnotifications 1.0.0 → 1.5.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
- SHA1:
3
- metadata.gz: 993314329d7ebb611b0b6d86f0d537256662a9e4
4
- data.tar.gz: d27caf1f580241fd59cf5b04d03b2ef4af84ced2
2
+ SHA256:
3
+ metadata.gz: ebfa95f8537cfdf3cac9ed687506e327929818eb74a03babc46bcc3f868b236b
4
+ data.tar.gz: c83f203059f774c0cd0385972374b0ae8fbd4bdee5d03089b744013fcca5d944
5
5
  SHA512:
6
- metadata.gz: 398e0d3042d04ed81b719b6563cf08af94dd4a08ae490272b677eef71522193edc5fb489f294df6ad5d42c15ab4539b71bca239fa4a87229df1612ef1956b61a
7
- data.tar.gz: 0a28d1474c6a65492c9160e73ed4b281e3c3c2d0b27f28d5f18bb2ab6a671098ff4d75dc357ad22d46bb149716a9f4825982b0e4226f9fd4e0b91cf399c06937
6
+ metadata.gz: 69d652ab0c183d9e347e64bce08b3052092d52ff101fce238ec0ae0be092c1371825215fd794a0a0cb5842567b7c8e38e9c18b21009511bbdf0e3d4454709b91
7
+ data.tar.gz: 6a094a06a1752e4a14de84433202fcf920475b0ce1b501f99d57d390090b27f34b8e6fa2b14f4744770e9baf22936d21d7c4e7ed7ab76fb950760233204248dd
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-codestarnotifications/customizations'
24
26
  # methods each accept a hash of request parameters and return a response
25
27
  # structure.
26
28
  #
29
+ # code_star_notifications = Aws::CodeStarNotifications::Client.new
30
+ # resp = code_star_notifications.create_notification_rule(params)
31
+ #
27
32
  # See {Client} for more information.
28
33
  #
29
34
  # # Errors
30
35
  #
31
- # Errors returned from AWS CodeStar Notifications all
32
- # extend {Errors::ServiceError}.
36
+ # Errors returned from AWS CodeStar Notifications are defined in the
37
+ # {Errors} module and all extend {Errors::ServiceError}.
33
38
  #
34
39
  # begin
35
40
  # # do stuff
36
41
  # rescue Aws::CodeStarNotifications::Errors::ServiceError
37
- # # rescues all service API errors
42
+ # # rescues all AWS CodeStar Notifications API errors
38
43
  # end
39
44
  #
40
45
  # See {Errors} for more information.
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-codestarnotifications/customizations'
42
47
  # @service
43
48
  module Aws::CodeStarNotifications
44
49
 
45
- GEM_VERSION = '1.0.0'
50
+ GEM_VERSION = '1.5.0'
46
51
 
47
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
29
32
 
30
33
  Aws::Plugins::GlobalConfiguration.add_identifier(:codestarnotifications)
31
34
 
32
35
  module Aws::CodeStarNotifications
36
+ # An API client for CodeStarNotifications. To construct a client, you need to configure a `:region` and `:credentials`.
37
+ #
38
+ # client = Aws::CodeStarNotifications::Client.new(
39
+ # region: region_name,
40
+ # credentials: credentials,
41
+ # # ...
42
+ # )
43
+ #
44
+ # For details on configuring region and credentials see
45
+ # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
46
+ #
47
+ # See {#initialize} for a full list of supported configuration options.
33
48
  class Client < Seahorse::Client::Base
34
49
 
35
50
  include Aws::ClientStubs
@@ -57,6 +72,7 @@ module Aws::CodeStarNotifications
57
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
58
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
59
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
60
76
  add_plugin(Aws::Plugins::SignatureV4)
61
77
  add_plugin(Aws::Plugins::Protocols::RestJson)
62
78
 
@@ -93,7 +109,7 @@ module Aws::CodeStarNotifications
93
109
  # @option options [required, String] :region
94
110
  # The AWS region to connect to. The configured `:region` is
95
111
  # used to determine the service `:endpoint`. When not passed,
96
- # a default `:region` is search for in the following locations:
112
+ # a default `:region` is searched for in the following locations:
97
113
  #
98
114
  # * `Aws.config[:region]`
99
115
  # * `ENV['AWS_REGION']`
@@ -108,6 +124,12 @@ module Aws::CodeStarNotifications
108
124
  # When set to `true`, a thread polling for endpoints will be running in
109
125
  # the background every 60 secs (default). Defaults to `false`.
110
126
  #
127
+ # @option options [Boolean] :adaptive_retry_wait_to_fill (true)
128
+ # Used only in `adaptive` retry mode. When true, the request will sleep
129
+ # until there is sufficent client side capacity to retry the request.
130
+ # When false, the request will raise a `RetryCapacityNotAvailableError` and will
131
+ # not retry instead of sleeping.
132
+ #
111
133
  # @option options [Boolean] :client_side_monitoring (false)
112
134
  # When `true`, client-side metrics will be collected for all API requests from
113
135
  # this client.
@@ -132,6 +154,10 @@ module Aws::CodeStarNotifications
132
154
  # When `true`, an attempt is made to coerce request parameters into
133
155
  # the required types.
134
156
  #
157
+ # @option options [Boolean] :correct_clock_skew (true)
158
+ # Used only in `standard` and adaptive retry modes. Specifies whether to apply
159
+ # a clock skew correction and retry requests with skewed client clocks.
160
+ #
135
161
  # @option options [Boolean] :disable_host_prefix_injection (false)
136
162
  # Set to true to disable SDK automatically adding host prefix
137
163
  # to default service endpoint when available.
@@ -139,7 +165,7 @@ module Aws::CodeStarNotifications
139
165
  # @option options [String] :endpoint
140
166
  # The client endpoint is normally constructed from the `:region`
141
167
  # option. You should only configure an `:endpoint` when connecting
142
- # to test endpoints. This should be avalid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
143
169
  #
144
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
145
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -154,7 +180,7 @@ module Aws::CodeStarNotifications
154
180
  # requests fetching endpoints information. Defaults to 60 sec.
155
181
  #
156
182
  # @option options [Boolean] :endpoint_discovery (false)
157
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
183
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
158
184
  #
159
185
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
160
186
  # The log formatter.
@@ -166,15 +192,29 @@ module Aws::CodeStarNotifications
166
192
  # The Logger instance to send log messages to. If this option
167
193
  # is not set, logging will be disabled.
168
194
  #
195
+ # @option options [Integer] :max_attempts (3)
196
+ # An integer representing the maximum number attempts that will be made for
197
+ # a single request, including the initial attempt. For example,
198
+ # setting this value to 5 will result in a request being retried up to
199
+ # 4 times. Used in `standard` and `adaptive` retry modes.
200
+ #
169
201
  # @option options [String] :profile ("default")
170
202
  # Used when loading credentials from the shared credentials file
171
203
  # at HOME/.aws/credentials. When not specified, 'default' is used.
172
204
  #
205
+ # @option options [Proc] :retry_backoff
206
+ # A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
207
+ # This option is only used in the `legacy` retry mode.
208
+ #
173
209
  # @option options [Float] :retry_base_delay (0.3)
174
- # The base delay in seconds used by the default backoff function.
210
+ # The base delay in seconds used by the default backoff function. This option
211
+ # is only used in the `legacy` retry mode.
175
212
  #
176
213
  # @option options [Symbol] :retry_jitter (:none)
177
- # A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number.
214
+ # A delay randomiser function used by the default backoff function.
215
+ # Some predefined functions can be referenced by name - :none, :equal, :full,
216
+ # otherwise a Proc that takes and returns a number. This option is only used
217
+ # in the `legacy` retry mode.
178
218
  #
179
219
  # @see https://www.awsarchitectureblog.com/2015/03/backoff.html
180
220
  #
@@ -182,11 +222,30 @@ module Aws::CodeStarNotifications
182
222
  # The maximum number of times to retry failed requests. Only
183
223
  # ~ 500 level server errors and certain ~ 400 level client errors
184
224
  # are retried. Generally, these are throttling errors, data
185
- # checksum errors, networking errors, timeout errors and auth
186
- # errors from expired credentials.
225
+ # checksum errors, networking errors, timeout errors, auth errors,
226
+ # endpoint discovery, and errors from expired credentials.
227
+ # This option is only used in the `legacy` retry mode.
187
228
  #
188
229
  # @option options [Integer] :retry_max_delay (0)
189
- # The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function.
230
+ # The maximum number of seconds to delay between retries (0 for no limit)
231
+ # used by the default backoff function. This option is only used in the
232
+ # `legacy` retry mode.
233
+ #
234
+ # @option options [String] :retry_mode ("legacy")
235
+ # Specifies which retry algorithm to use. Values are:
236
+ #
237
+ # * `legacy` - The pre-existing retry behavior. This is default value if
238
+ # no retry mode is provided.
239
+ #
240
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
241
+ # This includes support for retry quotas, which limit the number of
242
+ # unsuccessful retries a client can make.
243
+ #
244
+ # * `adaptive` - An experimental retry mode that includes all the
245
+ # functionality of `standard` mode along with automatic client side
246
+ # throttling. This is a provisional mode that may change behavior
247
+ # in the future.
248
+ #
190
249
  #
191
250
  # @option options [String] :secret_access_key
192
251
  #
@@ -209,16 +268,15 @@ module Aws::CodeStarNotifications
209
268
  # requests through. Formatted like 'http://proxy.com:123'.
210
269
  #
211
270
  # @option options [Float] :http_open_timeout (15) The number of
212
- # seconds to wait when opening a HTTP session before rasing a
271
+ # seconds to wait when opening a HTTP session before raising a
213
272
  # `Timeout::Error`.
214
273
  #
215
274
  # @option options [Integer] :http_read_timeout (60) The default
216
275
  # number of seconds to wait for response data. This value can
217
- # safely be set
218
- # per-request on the session yeidled by {#session_for}.
276
+ # safely be set per-request on the session.
219
277
  #
220
278
  # @option options [Float] :http_idle_timeout (5) The number of
221
- # seconds a connection is allowed to sit idble before it is
279
+ # seconds a connection is allowed to sit idle before it is
222
280
  # considered stale. Stale connections are closed and removed
223
281
  # from the pool before making a request.
224
282
  #
@@ -227,7 +285,7 @@ module Aws::CodeStarNotifications
227
285
  # request body. This option has no effect unless the request has
228
286
  # "Expect" header set to "100-continue". Defaults to `nil` which
229
287
  # disables this behaviour. This value can safely be set per
230
- # request on the session yeidled by {#session_for}.
288
+ # request on the session.
231
289
  #
232
290
  # @option options [Boolean] :http_wire_trace (false) When `true`,
233
291
  # HTTP debug output will be sent to the `:logger`.
@@ -478,6 +536,8 @@ module Aws::CodeStarNotifications
478
536
  # * {Types::ListEventTypesResult#event_types #event_types} => Array&lt;Types::EventTypeSummary&gt;
479
537
  # * {Types::ListEventTypesResult#next_token #next_token} => String
480
538
  #
539
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
540
+ #
481
541
  # @example Request syntax with placeholder values
482
542
  #
483
543
  # resp = client.list_event_types({
@@ -534,6 +594,8 @@ module Aws::CodeStarNotifications
534
594
  # * {Types::ListNotificationRulesResult#next_token #next_token} => String
535
595
  # * {Types::ListNotificationRulesResult#notification_rules #notification_rules} => Array&lt;Types::NotificationRuleSummary&gt;
536
596
  #
597
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
598
+ #
537
599
  # @example Request syntax with placeholder values
538
600
  #
539
601
  # resp = client.list_notification_rules({
@@ -617,6 +679,8 @@ module Aws::CodeStarNotifications
617
679
  # * {Types::ListTargetsResult#targets #targets} => Array&lt;Types::TargetSummary&gt;
618
680
  # * {Types::ListTargetsResult#next_token #next_token} => String
619
681
  #
682
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
683
+ #
620
684
  # @example Request syntax with placeholder values
621
685
  #
622
686
  # resp = client.list_targets({
@@ -861,7 +925,7 @@ module Aws::CodeStarNotifications
861
925
  params: params,
862
926
  config: config)
863
927
  context[:gem_name] = 'aws-sdk-codestarnotifications'
864
- context[:gem_version] = '1.0.0'
928
+ context[:gem_version] = '1.5.0'
865
929
  Seahorse::Client::Request.new(handlers, context)
866
930
  end
867
931
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,6 +8,36 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::CodeStarNotifications
11
+
12
+ # When CodeStarNotifications returns an error response, the Ruby SDK constructs and raises an error.
13
+ # These errors all extend Aws::CodeStarNotifications::Errors::ServiceError < {Aws::Errors::ServiceError}
14
+ #
15
+ # You can rescue all CodeStarNotifications errors using ServiceError:
16
+ #
17
+ # begin
18
+ # # do stuff
19
+ # rescue Aws::CodeStarNotifications::Errors::ServiceError
20
+ # # rescues all CodeStarNotifications API errors
21
+ # end
22
+ #
23
+ #
24
+ # ## Request Context
25
+ # ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
26
+ # information about the request that generated the error.
27
+ # See {Seahorse::Client::RequestContext} for more information.
28
+ #
29
+ # ## Error Classes
30
+ # * {AccessDeniedException}
31
+ # * {ConcurrentModificationException}
32
+ # * {ConfigurationException}
33
+ # * {InvalidNextTokenException}
34
+ # * {LimitExceededException}
35
+ # * {ResourceAlreadyExistsException}
36
+ # * {ResourceNotFoundException}
37
+ # * {ValidationException}
38
+ #
39
+ # Additionally, error classes are dynamically generated for service errors based on the error code
40
+ # if they are not defined above.
9
41
  module Errors
10
42
 
11
43
  extend Aws::Errors::DynamicErrors
@@ -23,7 +55,6 @@ module Aws::CodeStarNotifications
23
55
  def message
24
56
  @message || @data[:message]
25
57
  end
26
-
27
58
  end
28
59
 
29
60
  class ConcurrentModificationException < ServiceError
@@ -39,7 +70,6 @@ module Aws::CodeStarNotifications
39
70
  def message
40
71
  @message || @data[:message]
41
72
  end
42
-
43
73
  end
44
74
 
45
75
  class ConfigurationException < ServiceError
@@ -55,7 +85,6 @@ module Aws::CodeStarNotifications
55
85
  def message
56
86
  @message || @data[:message]
57
87
  end
58
-
59
88
  end
60
89
 
61
90
  class InvalidNextTokenException < ServiceError
@@ -71,7 +100,6 @@ module Aws::CodeStarNotifications
71
100
  def message
72
101
  @message || @data[:message]
73
102
  end
74
-
75
103
  end
76
104
 
77
105
  class LimitExceededException < ServiceError
@@ -87,7 +115,6 @@ module Aws::CodeStarNotifications
87
115
  def message
88
116
  @message || @data[:message]
89
117
  end
90
-
91
118
  end
92
119
 
93
120
  class ResourceAlreadyExistsException < ServiceError
@@ -103,7 +130,6 @@ module Aws::CodeStarNotifications
103
130
  def message
104
131
  @message || @data[:message]
105
132
  end
106
-
107
133
  end
108
134
 
109
135
  class ResourceNotFoundException < ServiceError
@@ -119,7 +145,6 @@ module Aws::CodeStarNotifications
119
145
  def message
120
146
  @message || @data[:message]
121
147
  end
122
-
123
148
  end
124
149
 
125
150
  class ValidationException < ServiceError
@@ -135,7 +160,6 @@ module Aws::CodeStarNotifications
135
160
  def message
136
161
  @message || @data[:message]
137
162
  end
138
-
139
163
  end
140
164
 
141
165
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,6 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::CodeStarNotifications
11
+
9
12
  class Resource
10
13
 
11
14
  # @param options ({})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -18,6 +20,7 @@ module Aws::CodeStarNotifications
18
20
  #
19
21
  class AccessDeniedException < Struct.new(
20
22
  :message)
23
+ SENSITIVE = []
21
24
  include Aws::Structure
22
25
  end
23
26
 
@@ -32,6 +35,7 @@ module Aws::CodeStarNotifications
32
35
  #
33
36
  class ConcurrentModificationException < Struct.new(
34
37
  :message)
38
+ SENSITIVE = []
35
39
  include Aws::Structure
36
40
  end
37
41
 
@@ -44,6 +48,7 @@ module Aws::CodeStarNotifications
44
48
  #
45
49
  class ConfigurationException < Struct.new(
46
50
  :message)
51
+ SENSITIVE = []
47
52
  include Aws::Structure
48
53
  end
49
54
 
@@ -136,6 +141,7 @@ module Aws::CodeStarNotifications
136
141
  :client_request_token,
137
142
  :tags,
138
143
  :status)
144
+ SENSITIVE = [:name]
139
145
  include Aws::Structure
140
146
  end
141
147
 
@@ -147,6 +153,7 @@ module Aws::CodeStarNotifications
147
153
  #
148
154
  class CreateNotificationRuleResult < Struct.new(
149
155
  :arn)
156
+ SENSITIVE = []
150
157
  include Aws::Structure
151
158
  end
152
159
 
@@ -166,6 +173,7 @@ module Aws::CodeStarNotifications
166
173
  #
167
174
  class DeleteNotificationRuleRequest < Struct.new(
168
175
  :arn)
176
+ SENSITIVE = []
169
177
  include Aws::Structure
170
178
  end
171
179
 
@@ -177,6 +185,7 @@ module Aws::CodeStarNotifications
177
185
  #
178
186
  class DeleteNotificationRuleResult < Struct.new(
179
187
  :arn)
188
+ SENSITIVE = []
180
189
  include Aws::Structure
181
190
  end
182
191
 
@@ -204,6 +213,7 @@ module Aws::CodeStarNotifications
204
213
  class DeleteTargetRequest < Struct.new(
205
214
  :target_address,
206
215
  :force_unsubscribe_all)
216
+ SENSITIVE = [:target_address]
207
217
  include Aws::Structure
208
218
  end
209
219
 
@@ -226,6 +236,7 @@ module Aws::CodeStarNotifications
226
236
  #
227
237
  class DescribeNotificationRuleRequest < Struct.new(
228
238
  :arn)
239
+ SENSITIVE = []
229
240
  include Aws::Structure
230
241
  end
231
242
 
@@ -296,6 +307,7 @@ module Aws::CodeStarNotifications
296
307
  :created_timestamp,
297
308
  :last_modified_timestamp,
298
309
  :tags)
310
+ SENSITIVE = [:name]
299
311
  include Aws::Structure
300
312
  end
301
313
 
@@ -325,6 +337,7 @@ module Aws::CodeStarNotifications
325
337
  :service_name,
326
338
  :event_type_name,
327
339
  :resource_type)
340
+ SENSITIVE = []
328
341
  include Aws::Structure
329
342
  end
330
343
 
@@ -338,6 +351,7 @@ module Aws::CodeStarNotifications
338
351
  #
339
352
  class InvalidNextTokenException < Struct.new(
340
353
  :message)
354
+ SENSITIVE = []
341
355
  include Aws::Structure
342
356
  end
343
357
 
@@ -352,6 +366,7 @@ module Aws::CodeStarNotifications
352
366
  #
353
367
  class LimitExceededException < Struct.new(
354
368
  :message)
369
+ SENSITIVE = []
355
370
  include Aws::Structure
356
371
  end
357
372
 
@@ -380,6 +395,7 @@ module Aws::CodeStarNotifications
380
395
  class ListEventTypesFilter < Struct.new(
381
396
  :name,
382
397
  :value)
398
+ SENSITIVE = []
383
399
  include Aws::Structure
384
400
  end
385
401
 
@@ -419,6 +435,7 @@ module Aws::CodeStarNotifications
419
435
  :filters,
420
436
  :next_token,
421
437
  :max_results)
438
+ SENSITIVE = []
422
439
  include Aws::Structure
423
440
  end
424
441
 
@@ -437,6 +454,7 @@ module Aws::CodeStarNotifications
437
454
  class ListEventTypesResult < Struct.new(
438
455
  :event_types,
439
456
  :next_token)
457
+ SENSITIVE = []
440
458
  include Aws::Structure
441
459
  end
442
460
 
@@ -469,6 +487,7 @@ module Aws::CodeStarNotifications
469
487
  class ListNotificationRulesFilter < Struct.new(
470
488
  :name,
471
489
  :value)
490
+ SENSITIVE = []
472
491
  include Aws::Structure
473
492
  end
474
493
 
@@ -513,6 +532,7 @@ module Aws::CodeStarNotifications
513
532
  :filters,
514
533
  :next_token,
515
534
  :max_results)
535
+ SENSITIVE = []
516
536
  include Aws::Structure
517
537
  end
518
538
 
@@ -531,6 +551,7 @@ module Aws::CodeStarNotifications
531
551
  class ListNotificationRulesResult < Struct.new(
532
552
  :next_token,
533
553
  :notification_rules)
554
+ SENSITIVE = []
534
555
  include Aws::Structure
535
556
  end
536
557
 
@@ -549,6 +570,7 @@ module Aws::CodeStarNotifications
549
570
  #
550
571
  class ListTagsForResourceRequest < Struct.new(
551
572
  :arn)
573
+ SENSITIVE = []
552
574
  include Aws::Structure
553
575
  end
554
576
 
@@ -560,6 +582,7 @@ module Aws::CodeStarNotifications
560
582
  #
561
583
  class ListTagsForResourceResult < Struct.new(
562
584
  :tags)
585
+ SENSITIVE = []
563
586
  include Aws::Structure
564
587
  end
565
588
 
@@ -595,6 +618,7 @@ module Aws::CodeStarNotifications
595
618
  class ListTargetsFilter < Struct.new(
596
619
  :name,
597
620
  :value)
621
+ SENSITIVE = []
598
622
  include Aws::Structure
599
623
  end
600
624
 
@@ -640,6 +664,7 @@ module Aws::CodeStarNotifications
640
664
  :filters,
641
665
  :next_token,
642
666
  :max_results)
667
+ SENSITIVE = []
643
668
  include Aws::Structure
644
669
  end
645
670
 
@@ -657,6 +682,7 @@ module Aws::CodeStarNotifications
657
682
  class ListTargetsResult < Struct.new(
658
683
  :targets,
659
684
  :next_token)
685
+ SENSITIVE = []
660
686
  include Aws::Structure
661
687
  end
662
688
 
@@ -675,6 +701,7 @@ module Aws::CodeStarNotifications
675
701
  class NotificationRuleSummary < Struct.new(
676
702
  :id,
677
703
  :arn)
704
+ SENSITIVE = []
678
705
  include Aws::Structure
679
706
  end
680
707
 
@@ -688,6 +715,7 @@ module Aws::CodeStarNotifications
688
715
  #
689
716
  class ResourceAlreadyExistsException < Struct.new(
690
717
  :message)
718
+ SENSITIVE = []
691
719
  include Aws::Structure
692
720
  end
693
721
 
@@ -701,6 +729,7 @@ module Aws::CodeStarNotifications
701
729
  #
702
730
  class ResourceNotFoundException < Struct.new(
703
731
  :message)
732
+ SENSITIVE = []
704
733
  include Aws::Structure
705
734
  end
706
735
 
@@ -737,6 +766,7 @@ module Aws::CodeStarNotifications
737
766
  :arn,
738
767
  :target,
739
768
  :client_request_token)
769
+ SENSITIVE = []
740
770
  include Aws::Structure
741
771
  end
742
772
 
@@ -749,6 +779,7 @@ module Aws::CodeStarNotifications
749
779
  #
750
780
  class SubscribeResult < Struct.new(
751
781
  :arn)
782
+ SENSITIVE = []
752
783
  include Aws::Structure
753
784
  end
754
785
 
@@ -776,6 +807,7 @@ module Aws::CodeStarNotifications
776
807
  class TagResourceRequest < Struct.new(
777
808
  :arn,
778
809
  :tags)
810
+ SENSITIVE = []
779
811
  include Aws::Structure
780
812
  end
781
813
 
@@ -787,6 +819,7 @@ module Aws::CodeStarNotifications
787
819
  #
788
820
  class TagResourceResult < Struct.new(
789
821
  :tags)
822
+ SENSITIVE = []
790
823
  include Aws::Structure
791
824
  end
792
825
 
@@ -813,6 +846,7 @@ module Aws::CodeStarNotifications
813
846
  class Target < Struct.new(
814
847
  :target_type,
815
848
  :target_address)
849
+ SENSITIVE = [:target_address]
816
850
  include Aws::Structure
817
851
  end
818
852
 
@@ -836,6 +870,7 @@ module Aws::CodeStarNotifications
836
870
  :target_address,
837
871
  :target_type,
838
872
  :target_status)
873
+ SENSITIVE = [:target_address]
839
874
  include Aws::Structure
840
875
  end
841
876
 
@@ -860,6 +895,7 @@ module Aws::CodeStarNotifications
860
895
  class UnsubscribeRequest < Struct.new(
861
896
  :arn,
862
897
  :target_address)
898
+ SENSITIVE = [:target_address]
863
899
  include Aws::Structure
864
900
  end
865
901
 
@@ -872,6 +908,7 @@ module Aws::CodeStarNotifications
872
908
  #
873
909
  class UnsubscribeResult < Struct.new(
874
910
  :arn)
911
+ SENSITIVE = []
875
912
  include Aws::Structure
876
913
  end
877
914
 
@@ -897,6 +934,7 @@ module Aws::CodeStarNotifications
897
934
  class UntagResourceRequest < Struct.new(
898
935
  :arn,
899
936
  :tag_keys)
937
+ SENSITIVE = []
900
938
  include Aws::Structure
901
939
  end
902
940
 
@@ -960,6 +998,7 @@ module Aws::CodeStarNotifications
960
998
  :event_type_ids,
961
999
  :targets,
962
1000
  :detail_type)
1001
+ SENSITIVE = [:name]
963
1002
  include Aws::Structure
964
1003
  end
965
1004
 
@@ -976,6 +1015,7 @@ module Aws::CodeStarNotifications
976
1015
  #
977
1016
  class ValidationException < Struct.new(
978
1017
  :message)
1018
+ SENSITIVE = []
979
1019
  include Aws::Structure
980
1020
  end
981
1021
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codestarnotifications
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.5.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-05 00:00:00.000000000 Z
11
+ date: 2020-06-23 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
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - AWS CodeStar Notifications