aws-sdk-codestar 1.49.0 → 1.50.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codestar/client.rb +1 -1
- data/lib/aws-sdk-codestar/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-codestar.rb +1 -1
- data/sig/client.rbs +355 -0
- data/sig/errors.rbs +42 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +375 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 50b01908a71ab29f9b375ec25f8a1469259a92939ba54f7526284fe0abaab2c5
|
|
4
|
+
data.tar.gz: af54179f879daeb6c9a2aa9b0b13d0c771783449696fe4c4b1c195a6fb803d83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8533293e129383fc7ff57ba3d742b4421959d2b83fff5c5787d29545bcac3cecdcaf931e849968009e33ce35348db31d89e12c8c0976656496eac7aa4467145d
|
|
7
|
+
data.tar.gz: 6b3d38188d36da84d241a7ba6516ac33d70d590aeceda708b2a6dee10cf6c9cdef78429e255ac9307d544189ad6402fabbf5f5d7afb687ae127af230d7179e37
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.50.0
|
|
@@ -1223,7 +1223,7 @@ module Aws::CodeStar
|
|
|
1223
1223
|
params: params,
|
|
1224
1224
|
config: config)
|
|
1225
1225
|
context[:gem_name] = 'aws-sdk-codestar'
|
|
1226
|
-
context[:gem_version] = '1.
|
|
1226
|
+
context[:gem_version] = '1.50.0'
|
|
1227
1227
|
Seahorse::Client::Request.new(handlers, context)
|
|
1228
1228
|
end
|
|
1229
1229
|
|
|
@@ -14,6 +14,7 @@ module Aws::CodeStar
|
|
|
14
14
|
option(
|
|
15
15
|
:endpoint_provider,
|
|
16
16
|
doc_type: 'Aws::CodeStar::EndpointProvider',
|
|
17
|
+
rbs_type: 'untyped',
|
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/lib/aws-sdk-codestar.rb
CHANGED
data/sig/client.rbs
ADDED
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module CodeStar
|
|
10
|
+
class Client < ::Seahorse::Client::Base
|
|
11
|
+
include ::Aws::ClientStubs
|
|
12
|
+
|
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#initialize-instance_method
|
|
14
|
+
def self.new: (
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?active_endpoint_cache: bool,
|
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
20
|
+
?client_side_monitoring: bool,
|
|
21
|
+
?client_side_monitoring_client_id: String,
|
|
22
|
+
?client_side_monitoring_host: String,
|
|
23
|
+
?client_side_monitoring_port: Integer,
|
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
|
25
|
+
?convert_params: bool,
|
|
26
|
+
?correct_clock_skew: bool,
|
|
27
|
+
?defaults_mode: String,
|
|
28
|
+
?disable_host_prefix_injection: bool,
|
|
29
|
+
?disable_request_compression: bool,
|
|
30
|
+
?endpoint: String,
|
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
|
34
|
+
?endpoint_discovery: bool,
|
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
|
36
|
+
?log_formatter: untyped,
|
|
37
|
+
?log_level: Symbol,
|
|
38
|
+
?logger: untyped,
|
|
39
|
+
?max_attempts: Integer,
|
|
40
|
+
?profile: String,
|
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
|
42
|
+
?retry_backoff: Proc,
|
|
43
|
+
?retry_base_delay: Float,
|
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
45
|
+
?retry_limit: Integer,
|
|
46
|
+
?retry_max_delay: Integer,
|
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
48
|
+
?sdk_ua_app_id: String,
|
|
49
|
+
?secret_access_key: String,
|
|
50
|
+
?session_token: String,
|
|
51
|
+
?simple_json: bool,
|
|
52
|
+
?stub_responses: untyped,
|
|
53
|
+
?token_provider: untyped,
|
|
54
|
+
?use_dualstack_endpoint: bool,
|
|
55
|
+
?use_fips_endpoint: bool,
|
|
56
|
+
?validate_params: bool,
|
|
57
|
+
?endpoint_provider: untyped,
|
|
58
|
+
?http_proxy: String,
|
|
59
|
+
?http_open_timeout: (Float | Integer),
|
|
60
|
+
?http_read_timeout: (Float | Integer),
|
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
64
|
+
?http_wire_trace: bool,
|
|
65
|
+
?ssl_verify_peer: bool,
|
|
66
|
+
?ssl_ca_bundle: String,
|
|
67
|
+
?ssl_ca_directory: String,
|
|
68
|
+
?ssl_ca_store: String,
|
|
69
|
+
?on_chunk_received: Proc,
|
|
70
|
+
?on_chunk_sent: Proc,
|
|
71
|
+
?raise_response_errors: bool
|
|
72
|
+
) -> instance
|
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
interface _AssociateTeamMemberResponseSuccess
|
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateTeamMemberResult]
|
|
78
|
+
def client_request_token: () -> ::String
|
|
79
|
+
end
|
|
80
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#associate_team_member-instance_method
|
|
81
|
+
def associate_team_member: (
|
|
82
|
+
project_id: ::String,
|
|
83
|
+
?client_request_token: ::String,
|
|
84
|
+
user_arn: ::String,
|
|
85
|
+
project_role: ::String,
|
|
86
|
+
?remote_access_allowed: bool
|
|
87
|
+
) -> _AssociateTeamMemberResponseSuccess
|
|
88
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateTeamMemberResponseSuccess
|
|
89
|
+
|
|
90
|
+
interface _CreateProjectResponseSuccess
|
|
91
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProjectResult]
|
|
92
|
+
def id: () -> ::String
|
|
93
|
+
def arn: () -> ::String
|
|
94
|
+
def client_request_token: () -> ::String
|
|
95
|
+
def project_template_id: () -> ::String
|
|
96
|
+
end
|
|
97
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#create_project-instance_method
|
|
98
|
+
def create_project: (
|
|
99
|
+
name: ::String,
|
|
100
|
+
id: ::String,
|
|
101
|
+
?description: ::String,
|
|
102
|
+
?client_request_token: ::String,
|
|
103
|
+
?source_code: Array[
|
|
104
|
+
{
|
|
105
|
+
source: {
|
|
106
|
+
s3: {
|
|
107
|
+
bucket_name: ::String?,
|
|
108
|
+
bucket_key: ::String?
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
destination: {
|
|
112
|
+
code_commit: {
|
|
113
|
+
name: ::String
|
|
114
|
+
}?,
|
|
115
|
+
git_hub: {
|
|
116
|
+
name: ::String,
|
|
117
|
+
description: ::String?,
|
|
118
|
+
type: ::String,
|
|
119
|
+
owner: ::String,
|
|
120
|
+
private_repository: bool,
|
|
121
|
+
issues_enabled: bool,
|
|
122
|
+
token: ::String
|
|
123
|
+
}?
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
],
|
|
127
|
+
?toolchain: {
|
|
128
|
+
source: {
|
|
129
|
+
s3: {
|
|
130
|
+
bucket_name: ::String?,
|
|
131
|
+
bucket_key: ::String?
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
role_arn: ::String?,
|
|
135
|
+
stack_parameters: Hash[::String, ::String]?
|
|
136
|
+
},
|
|
137
|
+
?tags: Hash[::String, ::String]
|
|
138
|
+
) -> _CreateProjectResponseSuccess
|
|
139
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProjectResponseSuccess
|
|
140
|
+
|
|
141
|
+
interface _CreateUserProfileResponseSuccess
|
|
142
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateUserProfileResult]
|
|
143
|
+
def user_arn: () -> ::String
|
|
144
|
+
def display_name: () -> ::String
|
|
145
|
+
def email_address: () -> ::String
|
|
146
|
+
def ssh_public_key: () -> ::String
|
|
147
|
+
def created_timestamp: () -> ::Time
|
|
148
|
+
def last_modified_timestamp: () -> ::Time
|
|
149
|
+
end
|
|
150
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#create_user_profile-instance_method
|
|
151
|
+
def create_user_profile: (
|
|
152
|
+
user_arn: ::String,
|
|
153
|
+
display_name: ::String,
|
|
154
|
+
email_address: ::String,
|
|
155
|
+
?ssh_public_key: ::String
|
|
156
|
+
) -> _CreateUserProfileResponseSuccess
|
|
157
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateUserProfileResponseSuccess
|
|
158
|
+
|
|
159
|
+
interface _DeleteProjectResponseSuccess
|
|
160
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProjectResult]
|
|
161
|
+
def stack_id: () -> ::String
|
|
162
|
+
def project_arn: () -> ::String
|
|
163
|
+
end
|
|
164
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#delete_project-instance_method
|
|
165
|
+
def delete_project: (
|
|
166
|
+
id: ::String,
|
|
167
|
+
?client_request_token: ::String,
|
|
168
|
+
?delete_stack: bool
|
|
169
|
+
) -> _DeleteProjectResponseSuccess
|
|
170
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProjectResponseSuccess
|
|
171
|
+
|
|
172
|
+
interface _DeleteUserProfileResponseSuccess
|
|
173
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteUserProfileResult]
|
|
174
|
+
def user_arn: () -> ::String
|
|
175
|
+
end
|
|
176
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#delete_user_profile-instance_method
|
|
177
|
+
def delete_user_profile: (
|
|
178
|
+
user_arn: ::String
|
|
179
|
+
) -> _DeleteUserProfileResponseSuccess
|
|
180
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteUserProfileResponseSuccess
|
|
181
|
+
|
|
182
|
+
interface _DescribeProjectResponseSuccess
|
|
183
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeProjectResult]
|
|
184
|
+
def name: () -> ::String
|
|
185
|
+
def id: () -> ::String
|
|
186
|
+
def arn: () -> ::String
|
|
187
|
+
def description: () -> ::String
|
|
188
|
+
def client_request_token: () -> ::String
|
|
189
|
+
def created_time_stamp: () -> ::Time
|
|
190
|
+
def stack_id: () -> ::String
|
|
191
|
+
def project_template_id: () -> ::String
|
|
192
|
+
def status: () -> Types::ProjectStatus
|
|
193
|
+
end
|
|
194
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#describe_project-instance_method
|
|
195
|
+
def describe_project: (
|
|
196
|
+
id: ::String
|
|
197
|
+
) -> _DescribeProjectResponseSuccess
|
|
198
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeProjectResponseSuccess
|
|
199
|
+
|
|
200
|
+
interface _DescribeUserProfileResponseSuccess
|
|
201
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeUserProfileResult]
|
|
202
|
+
def user_arn: () -> ::String
|
|
203
|
+
def display_name: () -> ::String
|
|
204
|
+
def email_address: () -> ::String
|
|
205
|
+
def ssh_public_key: () -> ::String
|
|
206
|
+
def created_timestamp: () -> ::Time
|
|
207
|
+
def last_modified_timestamp: () -> ::Time
|
|
208
|
+
end
|
|
209
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#describe_user_profile-instance_method
|
|
210
|
+
def describe_user_profile: (
|
|
211
|
+
user_arn: ::String
|
|
212
|
+
) -> _DescribeUserProfileResponseSuccess
|
|
213
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeUserProfileResponseSuccess
|
|
214
|
+
|
|
215
|
+
interface _DisassociateTeamMemberResponseSuccess
|
|
216
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateTeamMemberResult]
|
|
217
|
+
end
|
|
218
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#disassociate_team_member-instance_method
|
|
219
|
+
def disassociate_team_member: (
|
|
220
|
+
project_id: ::String,
|
|
221
|
+
user_arn: ::String
|
|
222
|
+
) -> _DisassociateTeamMemberResponseSuccess
|
|
223
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateTeamMemberResponseSuccess
|
|
224
|
+
|
|
225
|
+
interface _ListProjectsResponseSuccess
|
|
226
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProjectsResult]
|
|
227
|
+
def projects: () -> ::Array[Types::ProjectSummary]
|
|
228
|
+
def next_token: () -> ::String
|
|
229
|
+
end
|
|
230
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#list_projects-instance_method
|
|
231
|
+
def list_projects: (
|
|
232
|
+
?next_token: ::String,
|
|
233
|
+
?max_results: ::Integer
|
|
234
|
+
) -> _ListProjectsResponseSuccess
|
|
235
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProjectsResponseSuccess
|
|
236
|
+
|
|
237
|
+
interface _ListResourcesResponseSuccess
|
|
238
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListResourcesResult]
|
|
239
|
+
def resources: () -> ::Array[Types::Resource]
|
|
240
|
+
def next_token: () -> ::String
|
|
241
|
+
end
|
|
242
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#list_resources-instance_method
|
|
243
|
+
def list_resources: (
|
|
244
|
+
project_id: ::String,
|
|
245
|
+
?next_token: ::String,
|
|
246
|
+
?max_results: ::Integer
|
|
247
|
+
) -> _ListResourcesResponseSuccess
|
|
248
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListResourcesResponseSuccess
|
|
249
|
+
|
|
250
|
+
interface _ListTagsForProjectResponseSuccess
|
|
251
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForProjectResult]
|
|
252
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
253
|
+
def next_token: () -> ::String
|
|
254
|
+
end
|
|
255
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#list_tags_for_project-instance_method
|
|
256
|
+
def list_tags_for_project: (
|
|
257
|
+
id: ::String,
|
|
258
|
+
?next_token: ::String,
|
|
259
|
+
?max_results: ::Integer
|
|
260
|
+
) -> _ListTagsForProjectResponseSuccess
|
|
261
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForProjectResponseSuccess
|
|
262
|
+
|
|
263
|
+
interface _ListTeamMembersResponseSuccess
|
|
264
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTeamMembersResult]
|
|
265
|
+
def team_members: () -> ::Array[Types::TeamMember]
|
|
266
|
+
def next_token: () -> ::String
|
|
267
|
+
end
|
|
268
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#list_team_members-instance_method
|
|
269
|
+
def list_team_members: (
|
|
270
|
+
project_id: ::String,
|
|
271
|
+
?next_token: ::String,
|
|
272
|
+
?max_results: ::Integer
|
|
273
|
+
) -> _ListTeamMembersResponseSuccess
|
|
274
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTeamMembersResponseSuccess
|
|
275
|
+
|
|
276
|
+
interface _ListUserProfilesResponseSuccess
|
|
277
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListUserProfilesResult]
|
|
278
|
+
def user_profiles: () -> ::Array[Types::UserProfileSummary]
|
|
279
|
+
def next_token: () -> ::String
|
|
280
|
+
end
|
|
281
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#list_user_profiles-instance_method
|
|
282
|
+
def list_user_profiles: (
|
|
283
|
+
?next_token: ::String,
|
|
284
|
+
?max_results: ::Integer
|
|
285
|
+
) -> _ListUserProfilesResponseSuccess
|
|
286
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListUserProfilesResponseSuccess
|
|
287
|
+
|
|
288
|
+
interface _TagProjectResponseSuccess
|
|
289
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagProjectResult]
|
|
290
|
+
def tags: () -> ::Hash[::String, ::String]
|
|
291
|
+
end
|
|
292
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#tag_project-instance_method
|
|
293
|
+
def tag_project: (
|
|
294
|
+
id: ::String,
|
|
295
|
+
tags: Hash[::String, ::String]
|
|
296
|
+
) -> _TagProjectResponseSuccess
|
|
297
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagProjectResponseSuccess
|
|
298
|
+
|
|
299
|
+
interface _UntagProjectResponseSuccess
|
|
300
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagProjectResult]
|
|
301
|
+
end
|
|
302
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#untag_project-instance_method
|
|
303
|
+
def untag_project: (
|
|
304
|
+
id: ::String,
|
|
305
|
+
tags: Array[::String]
|
|
306
|
+
) -> _UntagProjectResponseSuccess
|
|
307
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagProjectResponseSuccess
|
|
308
|
+
|
|
309
|
+
interface _UpdateProjectResponseSuccess
|
|
310
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProjectResult]
|
|
311
|
+
end
|
|
312
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#update_project-instance_method
|
|
313
|
+
def update_project: (
|
|
314
|
+
id: ::String,
|
|
315
|
+
?name: ::String,
|
|
316
|
+
?description: ::String
|
|
317
|
+
) -> _UpdateProjectResponseSuccess
|
|
318
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateProjectResponseSuccess
|
|
319
|
+
|
|
320
|
+
interface _UpdateTeamMemberResponseSuccess
|
|
321
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateTeamMemberResult]
|
|
322
|
+
def user_arn: () -> ::String
|
|
323
|
+
def project_role: () -> ::String
|
|
324
|
+
def remote_access_allowed: () -> bool
|
|
325
|
+
end
|
|
326
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#update_team_member-instance_method
|
|
327
|
+
def update_team_member: (
|
|
328
|
+
project_id: ::String,
|
|
329
|
+
user_arn: ::String,
|
|
330
|
+
?project_role: ::String,
|
|
331
|
+
?remote_access_allowed: bool
|
|
332
|
+
) -> _UpdateTeamMemberResponseSuccess
|
|
333
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTeamMemberResponseSuccess
|
|
334
|
+
|
|
335
|
+
interface _UpdateUserProfileResponseSuccess
|
|
336
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateUserProfileResult]
|
|
337
|
+
def user_arn: () -> ::String
|
|
338
|
+
def display_name: () -> ::String
|
|
339
|
+
def email_address: () -> ::String
|
|
340
|
+
def ssh_public_key: () -> ::String
|
|
341
|
+
def created_timestamp: () -> ::Time
|
|
342
|
+
def last_modified_timestamp: () -> ::Time
|
|
343
|
+
end
|
|
344
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Client.html#update_user_profile-instance_method
|
|
345
|
+
def update_user_profile: (
|
|
346
|
+
user_arn: ::String,
|
|
347
|
+
?display_name: ::String,
|
|
348
|
+
?email_address: ::String,
|
|
349
|
+
?ssh_public_key: ::String
|
|
350
|
+
) -> _UpdateUserProfileResponseSuccess
|
|
351
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateUserProfileResponseSuccess
|
|
352
|
+
end
|
|
353
|
+
end
|
|
354
|
+
end
|
|
355
|
+
|
data/sig/errors.rbs
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module CodeStar
|
|
10
|
+
module Errors
|
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
class ConcurrentModificationException < ::Aws::Errors::ServiceError
|
|
15
|
+
end
|
|
16
|
+
class InvalidNextTokenException < ::Aws::Errors::ServiceError
|
|
17
|
+
end
|
|
18
|
+
class InvalidServiceRoleException < ::Aws::Errors::ServiceError
|
|
19
|
+
end
|
|
20
|
+
class LimitExceededException < ::Aws::Errors::ServiceError
|
|
21
|
+
end
|
|
22
|
+
class ProjectAlreadyExistsException < ::Aws::Errors::ServiceError
|
|
23
|
+
end
|
|
24
|
+
class ProjectConfigurationException < ::Aws::Errors::ServiceError
|
|
25
|
+
end
|
|
26
|
+
class ProjectCreationFailedException < ::Aws::Errors::ServiceError
|
|
27
|
+
end
|
|
28
|
+
class ProjectNotFoundException < ::Aws::Errors::ServiceError
|
|
29
|
+
end
|
|
30
|
+
class TeamMemberAlreadyAssociatedException < ::Aws::Errors::ServiceError
|
|
31
|
+
end
|
|
32
|
+
class TeamMemberNotFoundException < ::Aws::Errors::ServiceError
|
|
33
|
+
end
|
|
34
|
+
class UserProfileAlreadyExistsException < ::Aws::Errors::ServiceError
|
|
35
|
+
end
|
|
36
|
+
class UserProfileNotFoundException < ::Aws::Errors::ServiceError
|
|
37
|
+
end
|
|
38
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
data/sig/resource.rbs
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module CodeStar
|
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Resource.html
|
|
11
|
+
class Resource
|
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodeStar/Resource.html#initialize-instance_method
|
|
13
|
+
def initialize: (
|
|
14
|
+
?client: Client,
|
|
15
|
+
?credentials: untyped,
|
|
16
|
+
?region: String,
|
|
17
|
+
?access_key_id: String,
|
|
18
|
+
?active_endpoint_cache: bool,
|
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
|
20
|
+
?client_side_monitoring: bool,
|
|
21
|
+
?client_side_monitoring_client_id: String,
|
|
22
|
+
?client_side_monitoring_host: String,
|
|
23
|
+
?client_side_monitoring_port: Integer,
|
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
|
25
|
+
?convert_params: bool,
|
|
26
|
+
?correct_clock_skew: bool,
|
|
27
|
+
?defaults_mode: String,
|
|
28
|
+
?disable_host_prefix_injection: bool,
|
|
29
|
+
?disable_request_compression: bool,
|
|
30
|
+
?endpoint: String,
|
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
|
34
|
+
?endpoint_discovery: bool,
|
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
|
36
|
+
?log_formatter: untyped,
|
|
37
|
+
?log_level: Symbol,
|
|
38
|
+
?logger: untyped,
|
|
39
|
+
?max_attempts: Integer,
|
|
40
|
+
?profile: String,
|
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
|
42
|
+
?retry_backoff: Proc,
|
|
43
|
+
?retry_base_delay: Float,
|
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
45
|
+
?retry_limit: Integer,
|
|
46
|
+
?retry_max_delay: Integer,
|
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
|
48
|
+
?sdk_ua_app_id: String,
|
|
49
|
+
?secret_access_key: String,
|
|
50
|
+
?session_token: String,
|
|
51
|
+
?simple_json: bool,
|
|
52
|
+
?stub_responses: untyped,
|
|
53
|
+
?token_provider: untyped,
|
|
54
|
+
?use_dualstack_endpoint: bool,
|
|
55
|
+
?use_fips_endpoint: bool,
|
|
56
|
+
?validate_params: bool,
|
|
57
|
+
?endpoint_provider: untyped,
|
|
58
|
+
?http_proxy: String,
|
|
59
|
+
?http_open_timeout: (Float | Integer),
|
|
60
|
+
?http_read_timeout: (Float | Integer),
|
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
|
64
|
+
?http_wire_trace: bool,
|
|
65
|
+
?ssl_verify_peer: bool,
|
|
66
|
+
?ssl_ca_bundle: String,
|
|
67
|
+
?ssl_ca_directory: String,
|
|
68
|
+
?ssl_ca_store: String,
|
|
69
|
+
?on_chunk_received: Proc,
|
|
70
|
+
?on_chunk_sent: Proc,
|
|
71
|
+
?raise_response_errors: bool
|
|
72
|
+
) -> void
|
|
73
|
+
| (?Hash[Symbol, untyped]) -> void
|
|
74
|
+
|
|
75
|
+
def client: () -> Client
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
end
|
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,375 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws::CodeStar
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AssociateTeamMemberRequest
|
|
12
|
+
attr_accessor project_id: ::String
|
|
13
|
+
attr_accessor client_request_token: ::String
|
|
14
|
+
attr_accessor user_arn: ::String
|
|
15
|
+
attr_accessor project_role: ::String
|
|
16
|
+
attr_accessor remote_access_allowed: bool
|
|
17
|
+
SENSITIVE: []
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
class AssociateTeamMemberResult
|
|
21
|
+
attr_accessor client_request_token: ::String
|
|
22
|
+
SENSITIVE: []
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
class Code
|
|
26
|
+
attr_accessor source: Types::CodeSource
|
|
27
|
+
attr_accessor destination: Types::CodeDestination
|
|
28
|
+
SENSITIVE: []
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
class CodeCommitCodeDestination
|
|
32
|
+
attr_accessor name: ::String
|
|
33
|
+
SENSITIVE: []
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
class CodeDestination
|
|
37
|
+
attr_accessor code_commit: Types::CodeCommitCodeDestination
|
|
38
|
+
attr_accessor git_hub: Types::GitHubCodeDestination
|
|
39
|
+
SENSITIVE: []
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
class CodeSource
|
|
43
|
+
attr_accessor s3: Types::S3Location
|
|
44
|
+
SENSITIVE: []
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
class ConcurrentModificationException < Aws::EmptyStructure
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
class CreateProjectRequest
|
|
51
|
+
attr_accessor name: ::String
|
|
52
|
+
attr_accessor id: ::String
|
|
53
|
+
attr_accessor description: ::String
|
|
54
|
+
attr_accessor client_request_token: ::String
|
|
55
|
+
attr_accessor source_code: ::Array[Types::Code]
|
|
56
|
+
attr_accessor toolchain: Types::Toolchain
|
|
57
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
58
|
+
SENSITIVE: [:name, :description]
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
class CreateProjectResult
|
|
62
|
+
attr_accessor id: ::String
|
|
63
|
+
attr_accessor arn: ::String
|
|
64
|
+
attr_accessor client_request_token: ::String
|
|
65
|
+
attr_accessor project_template_id: ::String
|
|
66
|
+
SENSITIVE: []
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
class CreateUserProfileRequest
|
|
70
|
+
attr_accessor user_arn: ::String
|
|
71
|
+
attr_accessor display_name: ::String
|
|
72
|
+
attr_accessor email_address: ::String
|
|
73
|
+
attr_accessor ssh_public_key: ::String
|
|
74
|
+
SENSITIVE: [:display_name, :email_address]
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
class CreateUserProfileResult
|
|
78
|
+
attr_accessor user_arn: ::String
|
|
79
|
+
attr_accessor display_name: ::String
|
|
80
|
+
attr_accessor email_address: ::String
|
|
81
|
+
attr_accessor ssh_public_key: ::String
|
|
82
|
+
attr_accessor created_timestamp: ::Time
|
|
83
|
+
attr_accessor last_modified_timestamp: ::Time
|
|
84
|
+
SENSITIVE: [:display_name, :email_address]
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
class DeleteProjectRequest
|
|
88
|
+
attr_accessor id: ::String
|
|
89
|
+
attr_accessor client_request_token: ::String
|
|
90
|
+
attr_accessor delete_stack: bool
|
|
91
|
+
SENSITIVE: []
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
class DeleteProjectResult
|
|
95
|
+
attr_accessor stack_id: ::String
|
|
96
|
+
attr_accessor project_arn: ::String
|
|
97
|
+
SENSITIVE: []
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
class DeleteUserProfileRequest
|
|
101
|
+
attr_accessor user_arn: ::String
|
|
102
|
+
SENSITIVE: []
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
class DeleteUserProfileResult
|
|
106
|
+
attr_accessor user_arn: ::String
|
|
107
|
+
SENSITIVE: []
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
class DescribeProjectRequest
|
|
111
|
+
attr_accessor id: ::String
|
|
112
|
+
SENSITIVE: []
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
class DescribeProjectResult
|
|
116
|
+
attr_accessor name: ::String
|
|
117
|
+
attr_accessor id: ::String
|
|
118
|
+
attr_accessor arn: ::String
|
|
119
|
+
attr_accessor description: ::String
|
|
120
|
+
attr_accessor client_request_token: ::String
|
|
121
|
+
attr_accessor created_time_stamp: ::Time
|
|
122
|
+
attr_accessor stack_id: ::String
|
|
123
|
+
attr_accessor project_template_id: ::String
|
|
124
|
+
attr_accessor status: Types::ProjectStatus
|
|
125
|
+
SENSITIVE: [:name, :description]
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
class DescribeUserProfileRequest
|
|
129
|
+
attr_accessor user_arn: ::String
|
|
130
|
+
SENSITIVE: []
|
|
131
|
+
end
|
|
132
|
+
|
|
133
|
+
class DescribeUserProfileResult
|
|
134
|
+
attr_accessor user_arn: ::String
|
|
135
|
+
attr_accessor display_name: ::String
|
|
136
|
+
attr_accessor email_address: ::String
|
|
137
|
+
attr_accessor ssh_public_key: ::String
|
|
138
|
+
attr_accessor created_timestamp: ::Time
|
|
139
|
+
attr_accessor last_modified_timestamp: ::Time
|
|
140
|
+
SENSITIVE: [:display_name, :email_address]
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
class DisassociateTeamMemberRequest
|
|
144
|
+
attr_accessor project_id: ::String
|
|
145
|
+
attr_accessor user_arn: ::String
|
|
146
|
+
SENSITIVE: []
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
class DisassociateTeamMemberResult < Aws::EmptyStructure
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
class GitHubCodeDestination
|
|
153
|
+
attr_accessor name: ::String
|
|
154
|
+
attr_accessor description: ::String
|
|
155
|
+
attr_accessor type: ::String
|
|
156
|
+
attr_accessor owner: ::String
|
|
157
|
+
attr_accessor private_repository: bool
|
|
158
|
+
attr_accessor issues_enabled: bool
|
|
159
|
+
attr_accessor token: ::String
|
|
160
|
+
SENSITIVE: [:token]
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
class InvalidNextTokenException < Aws::EmptyStructure
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
class InvalidServiceRoleException < Aws::EmptyStructure
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
class LimitExceededException < Aws::EmptyStructure
|
|
170
|
+
end
|
|
171
|
+
|
|
172
|
+
class ListProjectsRequest
|
|
173
|
+
attr_accessor next_token: ::String
|
|
174
|
+
attr_accessor max_results: ::Integer
|
|
175
|
+
SENSITIVE: []
|
|
176
|
+
end
|
|
177
|
+
|
|
178
|
+
class ListProjectsResult
|
|
179
|
+
attr_accessor projects: ::Array[Types::ProjectSummary]
|
|
180
|
+
attr_accessor next_token: ::String
|
|
181
|
+
SENSITIVE: []
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
class ListResourcesRequest
|
|
185
|
+
attr_accessor project_id: ::String
|
|
186
|
+
attr_accessor next_token: ::String
|
|
187
|
+
attr_accessor max_results: ::Integer
|
|
188
|
+
SENSITIVE: []
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
class ListResourcesResult
|
|
192
|
+
attr_accessor resources: ::Array[Types::Resource]
|
|
193
|
+
attr_accessor next_token: ::String
|
|
194
|
+
SENSITIVE: []
|
|
195
|
+
end
|
|
196
|
+
|
|
197
|
+
class ListTagsForProjectRequest
|
|
198
|
+
attr_accessor id: ::String
|
|
199
|
+
attr_accessor next_token: ::String
|
|
200
|
+
attr_accessor max_results: ::Integer
|
|
201
|
+
SENSITIVE: []
|
|
202
|
+
end
|
|
203
|
+
|
|
204
|
+
class ListTagsForProjectResult
|
|
205
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
206
|
+
attr_accessor next_token: ::String
|
|
207
|
+
SENSITIVE: []
|
|
208
|
+
end
|
|
209
|
+
|
|
210
|
+
class ListTeamMembersRequest
|
|
211
|
+
attr_accessor project_id: ::String
|
|
212
|
+
attr_accessor next_token: ::String
|
|
213
|
+
attr_accessor max_results: ::Integer
|
|
214
|
+
SENSITIVE: []
|
|
215
|
+
end
|
|
216
|
+
|
|
217
|
+
class ListTeamMembersResult
|
|
218
|
+
attr_accessor team_members: ::Array[Types::TeamMember]
|
|
219
|
+
attr_accessor next_token: ::String
|
|
220
|
+
SENSITIVE: []
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
class ListUserProfilesRequest
|
|
224
|
+
attr_accessor next_token: ::String
|
|
225
|
+
attr_accessor max_results: ::Integer
|
|
226
|
+
SENSITIVE: []
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
class ListUserProfilesResult
|
|
230
|
+
attr_accessor user_profiles: ::Array[Types::UserProfileSummary]
|
|
231
|
+
attr_accessor next_token: ::String
|
|
232
|
+
SENSITIVE: []
|
|
233
|
+
end
|
|
234
|
+
|
|
235
|
+
class ProjectAlreadyExistsException < Aws::EmptyStructure
|
|
236
|
+
end
|
|
237
|
+
|
|
238
|
+
class ProjectConfigurationException < Aws::EmptyStructure
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
class ProjectCreationFailedException < Aws::EmptyStructure
|
|
242
|
+
end
|
|
243
|
+
|
|
244
|
+
class ProjectNotFoundException < Aws::EmptyStructure
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
class ProjectStatus
|
|
248
|
+
attr_accessor state: ::String
|
|
249
|
+
attr_accessor reason: ::String
|
|
250
|
+
SENSITIVE: []
|
|
251
|
+
end
|
|
252
|
+
|
|
253
|
+
class ProjectSummary
|
|
254
|
+
attr_accessor project_id: ::String
|
|
255
|
+
attr_accessor project_arn: ::String
|
|
256
|
+
SENSITIVE: []
|
|
257
|
+
end
|
|
258
|
+
|
|
259
|
+
class Resource
|
|
260
|
+
attr_accessor id: ::String
|
|
261
|
+
SENSITIVE: []
|
|
262
|
+
end
|
|
263
|
+
|
|
264
|
+
class S3Location
|
|
265
|
+
attr_accessor bucket_name: ::String
|
|
266
|
+
attr_accessor bucket_key: ::String
|
|
267
|
+
SENSITIVE: []
|
|
268
|
+
end
|
|
269
|
+
|
|
270
|
+
class TagProjectRequest
|
|
271
|
+
attr_accessor id: ::String
|
|
272
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
273
|
+
SENSITIVE: []
|
|
274
|
+
end
|
|
275
|
+
|
|
276
|
+
class TagProjectResult
|
|
277
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
278
|
+
SENSITIVE: []
|
|
279
|
+
end
|
|
280
|
+
|
|
281
|
+
class TeamMember
|
|
282
|
+
attr_accessor user_arn: ::String
|
|
283
|
+
attr_accessor project_role: ::String
|
|
284
|
+
attr_accessor remote_access_allowed: bool
|
|
285
|
+
SENSITIVE: []
|
|
286
|
+
end
|
|
287
|
+
|
|
288
|
+
class TeamMemberAlreadyAssociatedException < Aws::EmptyStructure
|
|
289
|
+
end
|
|
290
|
+
|
|
291
|
+
class TeamMemberNotFoundException < Aws::EmptyStructure
|
|
292
|
+
end
|
|
293
|
+
|
|
294
|
+
class Toolchain
|
|
295
|
+
attr_accessor source: Types::ToolchainSource
|
|
296
|
+
attr_accessor role_arn: ::String
|
|
297
|
+
attr_accessor stack_parameters: ::Hash[::String, ::String]
|
|
298
|
+
SENSITIVE: []
|
|
299
|
+
end
|
|
300
|
+
|
|
301
|
+
class ToolchainSource
|
|
302
|
+
attr_accessor s3: Types::S3Location
|
|
303
|
+
SENSITIVE: []
|
|
304
|
+
end
|
|
305
|
+
|
|
306
|
+
class UntagProjectRequest
|
|
307
|
+
attr_accessor id: ::String
|
|
308
|
+
attr_accessor tags: ::Array[::String]
|
|
309
|
+
SENSITIVE: []
|
|
310
|
+
end
|
|
311
|
+
|
|
312
|
+
class UntagProjectResult < Aws::EmptyStructure
|
|
313
|
+
end
|
|
314
|
+
|
|
315
|
+
class UpdateProjectRequest
|
|
316
|
+
attr_accessor id: ::String
|
|
317
|
+
attr_accessor name: ::String
|
|
318
|
+
attr_accessor description: ::String
|
|
319
|
+
SENSITIVE: [:name, :description]
|
|
320
|
+
end
|
|
321
|
+
|
|
322
|
+
class UpdateProjectResult < Aws::EmptyStructure
|
|
323
|
+
end
|
|
324
|
+
|
|
325
|
+
class UpdateTeamMemberRequest
|
|
326
|
+
attr_accessor project_id: ::String
|
|
327
|
+
attr_accessor user_arn: ::String
|
|
328
|
+
attr_accessor project_role: ::String
|
|
329
|
+
attr_accessor remote_access_allowed: bool
|
|
330
|
+
SENSITIVE: []
|
|
331
|
+
end
|
|
332
|
+
|
|
333
|
+
class UpdateTeamMemberResult
|
|
334
|
+
attr_accessor user_arn: ::String
|
|
335
|
+
attr_accessor project_role: ::String
|
|
336
|
+
attr_accessor remote_access_allowed: bool
|
|
337
|
+
SENSITIVE: []
|
|
338
|
+
end
|
|
339
|
+
|
|
340
|
+
class UpdateUserProfileRequest
|
|
341
|
+
attr_accessor user_arn: ::String
|
|
342
|
+
attr_accessor display_name: ::String
|
|
343
|
+
attr_accessor email_address: ::String
|
|
344
|
+
attr_accessor ssh_public_key: ::String
|
|
345
|
+
SENSITIVE: [:display_name, :email_address]
|
|
346
|
+
end
|
|
347
|
+
|
|
348
|
+
class UpdateUserProfileResult
|
|
349
|
+
attr_accessor user_arn: ::String
|
|
350
|
+
attr_accessor display_name: ::String
|
|
351
|
+
attr_accessor email_address: ::String
|
|
352
|
+
attr_accessor ssh_public_key: ::String
|
|
353
|
+
attr_accessor created_timestamp: ::Time
|
|
354
|
+
attr_accessor last_modified_timestamp: ::Time
|
|
355
|
+
SENSITIVE: [:display_name, :email_address]
|
|
356
|
+
end
|
|
357
|
+
|
|
358
|
+
class UserProfileAlreadyExistsException < Aws::EmptyStructure
|
|
359
|
+
end
|
|
360
|
+
|
|
361
|
+
class UserProfileNotFoundException < Aws::EmptyStructure
|
|
362
|
+
end
|
|
363
|
+
|
|
364
|
+
class UserProfileSummary
|
|
365
|
+
attr_accessor user_arn: ::String
|
|
366
|
+
attr_accessor display_name: ::String
|
|
367
|
+
attr_accessor email_address: ::String
|
|
368
|
+
attr_accessor ssh_public_key: ::String
|
|
369
|
+
SENSITIVE: [:display_name, :email_address]
|
|
370
|
+
end
|
|
371
|
+
|
|
372
|
+
class ValidationException < Aws::EmptyStructure
|
|
373
|
+
end
|
|
374
|
+
end
|
|
375
|
+
end
|
data/sig/waiters.rbs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
|
2
|
+
#
|
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
5
|
+
#
|
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
|
7
|
+
|
|
8
|
+
module Aws
|
|
9
|
+
module CodeStar
|
|
10
|
+
module Waiters
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
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.50.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-26 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.191.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.191.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -66,13 +66,18 @@ files:
|
|
|
66
66
|
- lib/aws-sdk-codestar/plugins/endpoints.rb
|
|
67
67
|
- lib/aws-sdk-codestar/resource.rb
|
|
68
68
|
- lib/aws-sdk-codestar/types.rb
|
|
69
|
+
- sig/client.rbs
|
|
70
|
+
- sig/errors.rbs
|
|
71
|
+
- sig/resource.rbs
|
|
72
|
+
- sig/types.rbs
|
|
73
|
+
- sig/waiters.rbs
|
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
|
70
75
|
licenses:
|
|
71
76
|
- Apache-2.0
|
|
72
77
|
metadata:
|
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codestar
|
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codestar/CHANGELOG.md
|
|
75
|
-
post_install_message:
|
|
80
|
+
post_install_message:
|
|
76
81
|
rdoc_options: []
|
|
77
82
|
require_paths:
|
|
78
83
|
- lib
|
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
92
|
- !ruby/object:Gem::Version
|
|
88
93
|
version: '0'
|
|
89
94
|
requirements: []
|
|
90
|
-
rubygems_version: 3.
|
|
91
|
-
signing_key:
|
|
95
|
+
rubygems_version: 3.4.10
|
|
96
|
+
signing_key:
|
|
92
97
|
specification_version: 4
|
|
93
98
|
summary: AWS SDK for Ruby - CodeStar
|
|
94
99
|
test_files: []
|