aws-sdk-codestar 1.49.0 → 1.51.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-codestar/client.rb +70 -46
- 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: 5c61be5a5879b31a73776dcfbce7774b34d919ac80d2547bc58d59718f43141f
|
4
|
+
data.tar.gz: f89234c26e268bcd71e2e2a7b4ac88d4a7d1f8ff9a434328f981b0b0cda21bdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c55e515705b17b7f5a755b76b2b8262eead6cd004592a6b367fec3dc8fe19f96d0932c00950b390382f53c539a36f142cfb35a35c18f90605ca3c80260b769e
|
7
|
+
data.tar.gz: 3ea7c71c1e363bfa8079c2facfe56db689ea251d468f10305a1c613f1dd08f38fbfb2e4cadff465be8b0995c99b86cf8baeeeae159c878eb42b990601ecae47d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.51.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.50.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.49.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.51.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::CodeStar
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::CodeStar
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -347,50 +356,65 @@ module Aws::CodeStar
|
|
347
356
|
# @option options [Aws::CodeStar::EndpointProvider] :endpoint_provider
|
348
357
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::CodeStar::EndpointParameters`
|
349
358
|
#
|
350
|
-
# @option options [
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
# @option options [Float] :
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
359
|
+
# @option options [Float] :http_continue_timeout (1)
|
360
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
361
|
+
# request body. This option has no effect unless the request has "Expect"
|
362
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
363
|
+
# behaviour. This value can safely be set per request on the session.
|
364
|
+
#
|
365
|
+
# @option options [Float] :http_idle_timeout (5)
|
366
|
+
# The number of seconds a connection is allowed to sit idle before it
|
367
|
+
# is considered stale. Stale connections are closed and removed from the
|
368
|
+
# pool before making a request.
|
369
|
+
#
|
370
|
+
# @option options [Float] :http_open_timeout (15)
|
371
|
+
# The default number of seconds to wait for response data.
|
372
|
+
# This value can safely be set per-request on the session.
|
373
|
+
#
|
374
|
+
# @option options [URI::HTTP,String] :http_proxy
|
375
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
376
|
+
#
|
377
|
+
# @option options [Float] :http_read_timeout (60)
|
378
|
+
# The default number of seconds to wait for response data.
|
379
|
+
# This value can safely be set per-request on the session.
|
380
|
+
#
|
381
|
+
# @option options [Boolean] :http_wire_trace (false)
|
382
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
383
|
+
#
|
384
|
+
# @option options [Proc] :on_chunk_received
|
385
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
386
|
+
# of the response body is received. It provides three arguments: the chunk,
|
387
|
+
# the number of bytes received, and the total number of
|
388
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
389
|
+
#
|
390
|
+
# @option options [Proc] :on_chunk_sent
|
391
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
392
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
393
|
+
# the number of bytes read from the body, and the total number of
|
394
|
+
# bytes in the body.
|
395
|
+
#
|
396
|
+
# @option options [Boolean] :raise_response_errors (true)
|
397
|
+
# When `true`, response errors are raised.
|
398
|
+
#
|
399
|
+
# @option options [String] :ssl_ca_bundle
|
400
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
401
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
402
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
403
|
+
#
|
404
|
+
# @option options [String] :ssl_ca_directory
|
405
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
406
|
+
# authority files for verifying peer certificates. If you do
|
407
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
408
|
+
# default will be used if available.
|
375
409
|
#
|
376
|
-
# @option options [
|
377
|
-
#
|
410
|
+
# @option options [String] :ssl_ca_store
|
411
|
+
# Sets the X509::Store to verify peer certificate.
|
378
412
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# connection.
|
413
|
+
# @option options [Float] :ssl_timeout
|
414
|
+
# Sets the SSL timeout in seconds
|
382
415
|
#
|
383
|
-
# @option options [
|
384
|
-
#
|
385
|
-
# verifying peer certificates. If you do not pass
|
386
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
387
|
-
# will be used if available.
|
388
|
-
#
|
389
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
390
|
-
# directory that contains the unbundled SSL certificate
|
391
|
-
# authority files for verifying peer certificates. If you do
|
392
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
393
|
-
# system default will be used if available.
|
416
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
417
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
394
418
|
#
|
395
419
|
def initialize(*args)
|
396
420
|
super
|
@@ -1223,7 +1247,7 @@ module Aws::CodeStar
|
|
1223
1247
|
params: params,
|
1224
1248
|
config: config)
|
1225
1249
|
context[:gem_name] = 'aws-sdk-codestar'
|
1226
|
-
context[:gem_version] = '1.
|
1250
|
+
context[:gem_version] = '1.51.0'
|
1227
1251
|
Seahorse::Client::Request.new(handlers, context)
|
1228
1252
|
end
|
1229
1253
|
|
@@ -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.51.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-04-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.193.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.193.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: []
|