aws-sdk-codestarnotifications 1.1.0 → 1.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-codestarnotifications.rb +4 -2
- data/lib/aws-sdk-codestarnotifications/client.rb +56 -28
- data/lib/aws-sdk-codestarnotifications/client_api.rb +2 -0
- data/lib/aws-sdk-codestarnotifications/errors.rb +2 -0
- data/lib/aws-sdk-codestarnotifications/resource.rb +3 -7
- data/lib/aws-sdk-codestarnotifications/types.rb +40 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2ea2874c8d1594fa91b4c790992a7425818272a9e475f24ad83cd1345b4d8ec0
|
4
|
+
data.tar.gz: 94ceb9751f0dfd9f14b224a85e672dc4692ebfdfe8c0ea35e01cec128155f912
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db75f823a9ad3b942a88a25b35fe339eef47aa29e89e2d2a3f25bafe2456c8038c5600923229f940a717555f7d66607f1d91856678783faa67d71f4479b7fb14
|
7
|
+
data.tar.gz: 7972269fc8cc67b7d96ca39dd39ce1eada89f866d0577c518e97cfef8d6f1766e96771e6aa0ac4a750f5d8c30dee0c331c89732ec2205f96212a228f58e0e46b
|
@@ -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:
|
@@ -42,9 +44,9 @@ require_relative 'aws-sdk-codestarnotifications/customizations'
|
|
42
44
|
#
|
43
45
|
# See {Errors} for more information.
|
44
46
|
#
|
45
|
-
#
|
47
|
+
# @!group service
|
46
48
|
module Aws::CodeStarNotifications
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.6.0'
|
49
51
|
|
50
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,6 +26,7 @@ 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
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:codestarnotifications)
|
|
32
35
|
module Aws::CodeStarNotifications
|
33
36
|
# An API client for CodeStarNotifications. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::CodeStarNotifications::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::CodeStarNotifications
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -81,13 +85,28 @@ module Aws::CodeStarNotifications
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,15 +116,15 @@ module Aws::CodeStarNotifications
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
107
126
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
127
|
+
# a default `:region` is searched for in the following locations:
|
109
128
|
#
|
110
129
|
# * `Aws.config[:region]`
|
111
130
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +180,7 @@ module Aws::CodeStarNotifications
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +195,7 @@ module Aws::CodeStarNotifications
|
|
176
195
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
196
|
#
|
178
197
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
198
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
199
|
#
|
181
200
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
201
|
# The log formatter.
|
@@ -229,15 +248,19 @@ module Aws::CodeStarNotifications
|
|
229
248
|
#
|
230
249
|
# @option options [String] :retry_mode ("legacy")
|
231
250
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
251
|
+
#
|
252
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
253
|
+
# no retry mode is provided.
|
254
|
+
#
|
255
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
256
|
+
# This includes support for retry quotas, which limit the number of
|
257
|
+
# unsuccessful retries a client can make.
|
258
|
+
#
|
259
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
260
|
+
# functionality of `standard` mode along with automatic client side
|
261
|
+
# throttling. This is a provisional mode that may change behavior
|
262
|
+
# in the future.
|
263
|
+
#
|
241
264
|
#
|
242
265
|
# @option options [String] :secret_access_key
|
243
266
|
#
|
@@ -265,8 +288,7 @@ module Aws::CodeStarNotifications
|
|
265
288
|
#
|
266
289
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
290
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
291
|
+
# safely be set per-request on the session.
|
270
292
|
#
|
271
293
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
294
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +300,7 @@ module Aws::CodeStarNotifications
|
|
278
300
|
# request body. This option has no effect unless the request has
|
279
301
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
302
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
303
|
+
# request on the session.
|
282
304
|
#
|
283
305
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
306
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -529,6 +551,8 @@ module Aws::CodeStarNotifications
|
|
529
551
|
# * {Types::ListEventTypesResult#event_types #event_types} => Array<Types::EventTypeSummary>
|
530
552
|
# * {Types::ListEventTypesResult#next_token #next_token} => String
|
531
553
|
#
|
554
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
555
|
+
#
|
532
556
|
# @example Request syntax with placeholder values
|
533
557
|
#
|
534
558
|
# resp = client.list_event_types({
|
@@ -585,6 +609,8 @@ module Aws::CodeStarNotifications
|
|
585
609
|
# * {Types::ListNotificationRulesResult#next_token #next_token} => String
|
586
610
|
# * {Types::ListNotificationRulesResult#notification_rules #notification_rules} => Array<Types::NotificationRuleSummary>
|
587
611
|
#
|
612
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
613
|
+
#
|
588
614
|
# @example Request syntax with placeholder values
|
589
615
|
#
|
590
616
|
# resp = client.list_notification_rules({
|
@@ -668,6 +694,8 @@ module Aws::CodeStarNotifications
|
|
668
694
|
# * {Types::ListTargetsResult#targets #targets} => Array<Types::TargetSummary>
|
669
695
|
# * {Types::ListTargetsResult#next_token #next_token} => String
|
670
696
|
#
|
697
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
698
|
+
#
|
671
699
|
# @example Request syntax with placeholder values
|
672
700
|
#
|
673
701
|
# resp = client.list_targets({
|
@@ -912,7 +940,7 @@ module Aws::CodeStarNotifications
|
|
912
940
|
params: params,
|
913
941
|
config: config)
|
914
942
|
context[:gem_name] = 'aws-sdk-codestarnotifications'
|
915
|
-
context[:gem_version] = '1.
|
943
|
+
context[:gem_version] = '1.6.0'
|
916
944
|
Seahorse::Client::Request.new(handlers, context)
|
917
945
|
end
|
918
946
|
|
@@ -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,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::CodeStarNotifications
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::CodeStarNotifications::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::CodeStarNotifications::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::CodeStarNotifications::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
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.
|
4
|
+
version: 1.6.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: 2020-
|
11
|
+
date: 2020-08-25 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.
|
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.
|
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.
|
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
|