aws-sdk-codestar 1.19.0 → 1.24.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 +5 -5
- data/lib/aws-sdk-codestar.rb +3 -1
- data/lib/aws-sdk-codestar/client.rb +28 -21
- data/lib/aws-sdk-codestar/client_api.rb +2 -0
- data/lib/aws-sdk-codestar/errors.rb +2 -0
- data/lib/aws-sdk-codestar/resource.rb +3 -7
- data/lib/aws-sdk-codestar/types.rb +48 -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: e7a343d2047fb7379b0a6bdb7f41eb5249b197a6aa347ec97a311b9d253647dd
|
4
|
+
data.tar.gz: 0e8bdc96b9c970885e559d7f9b0eb1435889e065c15eef33b98bd49250726a0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c317448d134bf75b1102490b08ea15cd874277e48cc8e81be50e9fd33a50ad5d8b23a2408a8d082732af70e5d2ee7656654c17092104456a28060bc9a5d2253c
|
7
|
+
data.tar.gz: f9cc87a8fb7dd4977e1b59207dc33109ae6667b605ddfd1265a678444918a3bd49587b08befea681a6d0a46e7a8456f427f7ccc8e621400c9265a1dedf353e85
|
data/lib/aws-sdk-codestar.rb
CHANGED
@@ -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:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-codestar/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::CodeStar
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.24.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/json_rpc.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:codestar)
|
|
32
35
|
module Aws::CodeStar
|
33
36
|
# An API client for CodeStar. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::CodeStar::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::CodeStar
|
|
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::JsonRpc)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::CodeStar
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::CodeStar
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::CodeStar
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::CodeStar
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
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
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -275,8 +283,7 @@ module Aws::CodeStar
|
|
275
283
|
#
|
276
284
|
# @option options [Integer] :http_read_timeout (60) The default
|
277
285
|
# number of seconds to wait for response data. This value can
|
278
|
-
# safely be set
|
279
|
-
# per-request on the session yielded by {#session_for}.
|
286
|
+
# safely be set per-request on the session.
|
280
287
|
#
|
281
288
|
# @option options [Float] :http_idle_timeout (5) The number of
|
282
289
|
# seconds a connection is allowed to sit idle before it is
|
@@ -288,7 +295,7 @@ module Aws::CodeStar
|
|
288
295
|
# request body. This option has no effect unless the request has
|
289
296
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
290
297
|
# disables this behaviour. This value can safely be set per
|
291
|
-
# request on the session
|
298
|
+
# request on the session.
|
292
299
|
#
|
293
300
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
294
301
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1140,7 +1147,7 @@ module Aws::CodeStar
|
|
1140
1147
|
params: params,
|
1141
1148
|
config: config)
|
1142
1149
|
context[:gem_name] = 'aws-sdk-codestar'
|
1143
|
-
context[:gem_version] = '1.
|
1150
|
+
context[:gem_version] = '1.24.0'
|
1144
1151
|
Seahorse::Client::Request.new(handlers, context)
|
1145
1152
|
end
|
1146
1153
|
|
@@ -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::CodeStar
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::CodeStar::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::CodeStar::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::CodeStar::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:
|
@@ -54,6 +56,7 @@ module Aws::CodeStar
|
|
54
56
|
:user_arn,
|
55
57
|
:project_role,
|
56
58
|
:remote_access_allowed)
|
59
|
+
SENSITIVE = []
|
57
60
|
include Aws::Structure
|
58
61
|
end
|
59
62
|
|
@@ -66,6 +69,7 @@ module Aws::CodeStar
|
|
66
69
|
#
|
67
70
|
class AssociateTeamMemberResult < Struct.new(
|
68
71
|
:client_request_token)
|
72
|
+
SENSITIVE = []
|
69
73
|
include Aws::Structure
|
70
74
|
end
|
71
75
|
|
@@ -117,6 +121,7 @@ module Aws::CodeStar
|
|
117
121
|
class Code < Struct.new(
|
118
122
|
:source,
|
119
123
|
:destination)
|
124
|
+
SENSITIVE = []
|
120
125
|
include Aws::Structure
|
121
126
|
end
|
122
127
|
|
@@ -140,6 +145,7 @@ module Aws::CodeStar
|
|
140
145
|
#
|
141
146
|
class CodeCommitCodeDestination < Struct.new(
|
142
147
|
:name)
|
148
|
+
SENSITIVE = []
|
143
149
|
include Aws::Structure
|
144
150
|
end
|
145
151
|
|
@@ -183,6 +189,7 @@ module Aws::CodeStar
|
|
183
189
|
class CodeDestination < Struct.new(
|
184
190
|
:code_commit,
|
185
191
|
:git_hub)
|
192
|
+
SENSITIVE = []
|
186
193
|
include Aws::Structure
|
187
194
|
end
|
188
195
|
|
@@ -209,6 +216,7 @@ module Aws::CodeStar
|
|
209
216
|
#
|
210
217
|
class CodeSource < Struct.new(
|
211
218
|
:s3)
|
219
|
+
SENSITIVE = []
|
212
220
|
include Aws::Structure
|
213
221
|
end
|
214
222
|
|
@@ -312,6 +320,7 @@ module Aws::CodeStar
|
|
312
320
|
:source_code,
|
313
321
|
:toolchain,
|
314
322
|
:tags)
|
323
|
+
SENSITIVE = [:name, :description]
|
315
324
|
include Aws::Structure
|
316
325
|
end
|
317
326
|
|
@@ -339,6 +348,7 @@ module Aws::CodeStar
|
|
339
348
|
:arn,
|
340
349
|
:client_request_token,
|
341
350
|
:project_template_id)
|
351
|
+
SENSITIVE = []
|
342
352
|
include Aws::Structure
|
343
353
|
end
|
344
354
|
|
@@ -380,6 +390,7 @@ module Aws::CodeStar
|
|
380
390
|
:display_name,
|
381
391
|
:email_address,
|
382
392
|
:ssh_public_key)
|
393
|
+
SENSITIVE = [:display_name, :email_address]
|
383
394
|
include Aws::Structure
|
384
395
|
end
|
385
396
|
|
@@ -421,6 +432,7 @@ module Aws::CodeStar
|
|
421
432
|
:ssh_public_key,
|
422
433
|
:created_timestamp,
|
423
434
|
:last_modified_timestamp)
|
435
|
+
SENSITIVE = [:display_name, :email_address]
|
424
436
|
include Aws::Structure
|
425
437
|
end
|
426
438
|
|
@@ -457,6 +469,7 @@ module Aws::CodeStar
|
|
457
469
|
:id,
|
458
470
|
:client_request_token,
|
459
471
|
:delete_stack)
|
472
|
+
SENSITIVE = []
|
460
473
|
include Aws::Structure
|
461
474
|
end
|
462
475
|
|
@@ -474,6 +487,7 @@ module Aws::CodeStar
|
|
474
487
|
class DeleteProjectResult < Struct.new(
|
475
488
|
:stack_id,
|
476
489
|
:project_arn)
|
490
|
+
SENSITIVE = []
|
477
491
|
include Aws::Structure
|
478
492
|
end
|
479
493
|
|
@@ -493,6 +507,7 @@ module Aws::CodeStar
|
|
493
507
|
#
|
494
508
|
class DeleteUserProfileRequest < Struct.new(
|
495
509
|
:user_arn)
|
510
|
+
SENSITIVE = []
|
496
511
|
include Aws::Structure
|
497
512
|
end
|
498
513
|
|
@@ -505,6 +520,7 @@ module Aws::CodeStar
|
|
505
520
|
#
|
506
521
|
class DeleteUserProfileResult < Struct.new(
|
507
522
|
:user_arn)
|
523
|
+
SENSITIVE = []
|
508
524
|
include Aws::Structure
|
509
525
|
end
|
510
526
|
|
@@ -523,6 +539,7 @@ module Aws::CodeStar
|
|
523
539
|
#
|
524
540
|
class DescribeProjectRequest < Struct.new(
|
525
541
|
:id)
|
542
|
+
SENSITIVE = []
|
526
543
|
include Aws::Structure
|
527
544
|
end
|
528
545
|
|
@@ -577,6 +594,7 @@ module Aws::CodeStar
|
|
577
594
|
:stack_id,
|
578
595
|
:project_template_id,
|
579
596
|
:status)
|
597
|
+
SENSITIVE = [:name, :description]
|
580
598
|
include Aws::Structure
|
581
599
|
end
|
582
600
|
|
@@ -595,6 +613,7 @@ module Aws::CodeStar
|
|
595
613
|
#
|
596
614
|
class DescribeUserProfileRequest < Struct.new(
|
597
615
|
:user_arn)
|
616
|
+
SENSITIVE = []
|
598
617
|
include Aws::Structure
|
599
618
|
end
|
600
619
|
|
@@ -647,6 +666,7 @@ module Aws::CodeStar
|
|
647
666
|
:ssh_public_key,
|
648
667
|
:created_timestamp,
|
649
668
|
:last_modified_timestamp)
|
669
|
+
SENSITIVE = [:display_name, :email_address]
|
650
670
|
include Aws::Structure
|
651
671
|
end
|
652
672
|
|
@@ -673,6 +693,7 @@ module Aws::CodeStar
|
|
673
693
|
class DisassociateTeamMemberRequest < Struct.new(
|
674
694
|
:project_id,
|
675
695
|
:user_arn)
|
696
|
+
SENSITIVE = []
|
676
697
|
include Aws::Structure
|
677
698
|
end
|
678
699
|
|
@@ -739,6 +760,7 @@ module Aws::CodeStar
|
|
739
760
|
:private_repository,
|
740
761
|
:issues_enabled,
|
741
762
|
:token)
|
763
|
+
SENSITIVE = [:token]
|
742
764
|
include Aws::Structure
|
743
765
|
end
|
744
766
|
|
@@ -783,6 +805,7 @@ module Aws::CodeStar
|
|
783
805
|
class ListProjectsRequest < Struct.new(
|
784
806
|
:next_token,
|
785
807
|
:max_results)
|
808
|
+
SENSITIVE = []
|
786
809
|
include Aws::Structure
|
787
810
|
end
|
788
811
|
|
@@ -800,6 +823,7 @@ module Aws::CodeStar
|
|
800
823
|
class ListProjectsResult < Struct.new(
|
801
824
|
:projects,
|
802
825
|
:next_token)
|
826
|
+
SENSITIVE = []
|
803
827
|
include Aws::Structure
|
804
828
|
end
|
805
829
|
|
@@ -832,6 +856,7 @@ module Aws::CodeStar
|
|
832
856
|
:project_id,
|
833
857
|
:next_token,
|
834
858
|
:max_results)
|
859
|
+
SENSITIVE = []
|
835
860
|
include Aws::Structure
|
836
861
|
end
|
837
862
|
|
@@ -849,6 +874,7 @@ module Aws::CodeStar
|
|
849
874
|
class ListResourcesResult < Struct.new(
|
850
875
|
:resources,
|
851
876
|
:next_token)
|
877
|
+
SENSITIVE = []
|
852
878
|
include Aws::Structure
|
853
879
|
end
|
854
880
|
|
@@ -879,6 +905,7 @@ module Aws::CodeStar
|
|
879
905
|
:id,
|
880
906
|
:next_token,
|
881
907
|
:max_results)
|
908
|
+
SENSITIVE = []
|
882
909
|
include Aws::Structure
|
883
910
|
end
|
884
911
|
|
@@ -895,6 +922,7 @@ module Aws::CodeStar
|
|
895
922
|
class ListTagsForProjectResult < Struct.new(
|
896
923
|
:tags,
|
897
924
|
:next_token)
|
925
|
+
SENSITIVE = []
|
898
926
|
include Aws::Structure
|
899
927
|
end
|
900
928
|
|
@@ -926,6 +954,7 @@ module Aws::CodeStar
|
|
926
954
|
:project_id,
|
927
955
|
:next_token,
|
928
956
|
:max_results)
|
957
|
+
SENSITIVE = []
|
929
958
|
include Aws::Structure
|
930
959
|
end
|
931
960
|
|
@@ -943,6 +972,7 @@ module Aws::CodeStar
|
|
943
972
|
class ListTeamMembersResult < Struct.new(
|
944
973
|
:team_members,
|
945
974
|
:next_token)
|
975
|
+
SENSITIVE = []
|
946
976
|
include Aws::Structure
|
947
977
|
end
|
948
978
|
|
@@ -968,6 +998,7 @@ module Aws::CodeStar
|
|
968
998
|
class ListUserProfilesRequest < Struct.new(
|
969
999
|
:next_token,
|
970
1000
|
:max_results)
|
1001
|
+
SENSITIVE = []
|
971
1002
|
include Aws::Structure
|
972
1003
|
end
|
973
1004
|
|
@@ -985,6 +1016,7 @@ module Aws::CodeStar
|
|
985
1016
|
class ListUserProfilesResult < Struct.new(
|
986
1017
|
:user_profiles,
|
987
1018
|
:next_token)
|
1019
|
+
SENSITIVE = []
|
988
1020
|
include Aws::Structure
|
989
1021
|
end
|
990
1022
|
|
@@ -1033,6 +1065,7 @@ module Aws::CodeStar
|
|
1033
1065
|
class ProjectStatus < Struct.new(
|
1034
1066
|
:state,
|
1035
1067
|
:reason)
|
1068
|
+
SENSITIVE = []
|
1036
1069
|
include Aws::Structure
|
1037
1070
|
end
|
1038
1071
|
|
@@ -1051,6 +1084,7 @@ module Aws::CodeStar
|
|
1051
1084
|
class ProjectSummary < Struct.new(
|
1052
1085
|
:project_id,
|
1053
1086
|
:project_arn)
|
1087
|
+
SENSITIVE = []
|
1054
1088
|
include Aws::Structure
|
1055
1089
|
end
|
1056
1090
|
|
@@ -1064,6 +1098,7 @@ module Aws::CodeStar
|
|
1064
1098
|
#
|
1065
1099
|
class Resource < Struct.new(
|
1066
1100
|
:id)
|
1101
|
+
SENSITIVE = []
|
1067
1102
|
include Aws::Structure
|
1068
1103
|
end
|
1069
1104
|
|
@@ -1093,6 +1128,7 @@ module Aws::CodeStar
|
|
1093
1128
|
class S3Location < Struct.new(
|
1094
1129
|
:bucket_name,
|
1095
1130
|
:bucket_key)
|
1131
|
+
SENSITIVE = []
|
1096
1132
|
include Aws::Structure
|
1097
1133
|
end
|
1098
1134
|
|
@@ -1119,6 +1155,7 @@ module Aws::CodeStar
|
|
1119
1155
|
class TagProjectRequest < Struct.new(
|
1120
1156
|
:id,
|
1121
1157
|
:tags)
|
1158
|
+
SENSITIVE = []
|
1122
1159
|
include Aws::Structure
|
1123
1160
|
end
|
1124
1161
|
|
@@ -1130,6 +1167,7 @@ module Aws::CodeStar
|
|
1130
1167
|
#
|
1131
1168
|
class TagProjectResult < Struct.new(
|
1132
1169
|
:tags)
|
1170
|
+
SENSITIVE = []
|
1133
1171
|
include Aws::Structure
|
1134
1172
|
end
|
1135
1173
|
|
@@ -1160,6 +1198,7 @@ module Aws::CodeStar
|
|
1160
1198
|
:user_arn,
|
1161
1199
|
:project_role,
|
1162
1200
|
:remote_access_allowed)
|
1201
|
+
SENSITIVE = []
|
1163
1202
|
include Aws::Structure
|
1164
1203
|
end
|
1165
1204
|
|
@@ -1217,6 +1256,7 @@ module Aws::CodeStar
|
|
1217
1256
|
:source,
|
1218
1257
|
:role_arn,
|
1219
1258
|
:stack_parameters)
|
1259
|
+
SENSITIVE = []
|
1220
1260
|
include Aws::Structure
|
1221
1261
|
end
|
1222
1262
|
|
@@ -1243,6 +1283,7 @@ module Aws::CodeStar
|
|
1243
1283
|
#
|
1244
1284
|
class ToolchainSource < Struct.new(
|
1245
1285
|
:s3)
|
1286
|
+
SENSITIVE = []
|
1246
1287
|
include Aws::Structure
|
1247
1288
|
end
|
1248
1289
|
|
@@ -1267,6 +1308,7 @@ module Aws::CodeStar
|
|
1267
1308
|
class UntagProjectRequest < Struct.new(
|
1268
1309
|
:id,
|
1269
1310
|
:tags)
|
1311
|
+
SENSITIVE = []
|
1270
1312
|
include Aws::Structure
|
1271
1313
|
end
|
1272
1314
|
|
@@ -1301,6 +1343,7 @@ module Aws::CodeStar
|
|
1301
1343
|
:id,
|
1302
1344
|
:name,
|
1303
1345
|
:description)
|
1346
|
+
SENSITIVE = [:name, :description]
|
1304
1347
|
include Aws::Structure
|
1305
1348
|
end
|
1306
1349
|
|
@@ -1351,6 +1394,7 @@ module Aws::CodeStar
|
|
1351
1394
|
:user_arn,
|
1352
1395
|
:project_role,
|
1353
1396
|
:remote_access_allowed)
|
1397
|
+
SENSITIVE = []
|
1354
1398
|
include Aws::Structure
|
1355
1399
|
end
|
1356
1400
|
|
@@ -1375,6 +1419,7 @@ module Aws::CodeStar
|
|
1375
1419
|
:user_arn,
|
1376
1420
|
:project_role,
|
1377
1421
|
:remote_access_allowed)
|
1422
|
+
SENSITIVE = []
|
1378
1423
|
include Aws::Structure
|
1379
1424
|
end
|
1380
1425
|
|
@@ -1417,6 +1462,7 @@ module Aws::CodeStar
|
|
1417
1462
|
:display_name,
|
1418
1463
|
:email_address,
|
1419
1464
|
:ssh_public_key)
|
1465
|
+
SENSITIVE = [:display_name, :email_address]
|
1420
1466
|
include Aws::Structure
|
1421
1467
|
end
|
1422
1468
|
|
@@ -1458,6 +1504,7 @@ module Aws::CodeStar
|
|
1458
1504
|
:ssh_public_key,
|
1459
1505
|
:created_timestamp,
|
1460
1506
|
:last_modified_timestamp)
|
1507
|
+
SENSITIVE = [:display_name, :email_address]
|
1461
1508
|
include Aws::Structure
|
1462
1509
|
end
|
1463
1510
|
|
@@ -1512,6 +1559,7 @@ module Aws::CodeStar
|
|
1512
1559
|
:display_name,
|
1513
1560
|
:email_address,
|
1514
1561
|
:ssh_public_key)
|
1562
|
+
SENSITIVE = [:display_name, :email_address]
|
1515
1563
|
include Aws::Structure
|
1516
1564
|
end
|
1517
1565
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-codestar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.24.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-07-02 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 - CodeStar
|