aws-sdk-codestar 1.4.0 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-codestar.rb +1 -1
- data/lib/aws-sdk-codestar/client.rb +10 -1
- data/lib/aws-sdk-codestar/client_api.rb +10 -0
- data/lib/aws-sdk-codestar/types.rb +35 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d9e75ea9f7fba26e7b06887f7c3c4fc0bc32d191
|
4
|
+
data.tar.gz: 5dadf2b031ca2a70574129b7f31367351c0eb41d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e8616473b7f934b7615a703c6b5120f4e511e0d8048d4776fe1d7c604f8fdeb11fdf6f2e86e3264a74bdc0fe15e65475676b3d87c8c3210c91f4a4f2efb38be
|
7
|
+
data.tar.gz: acd4f8ff6347ab0d0cabd6f2e6fad861feb36eccdb9d110c714bde1a85a4034a79b29fec0b420f1890ee14ca79b7265a58129e5baeb3f9f4b7c2636304062364
|
data/lib/aws-sdk-codestar.rb
CHANGED
@@ -251,6 +251,9 @@ module Aws::CodeStar
|
|
251
251
|
# @option params [String] :client_request_token
|
252
252
|
# Reserved for future use.
|
253
253
|
#
|
254
|
+
# @option params [Hash<String,String>] :tags
|
255
|
+
# The tags created for the project.
|
256
|
+
#
|
254
257
|
# @return [Types::CreateProjectResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
255
258
|
#
|
256
259
|
# * {Types::CreateProjectResult#id #id} => String
|
@@ -265,6 +268,9 @@ module Aws::CodeStar
|
|
265
268
|
# id: "ProjectId", # required
|
266
269
|
# description: "ProjectDescription",
|
267
270
|
# client_request_token: "ClientRequestToken",
|
271
|
+
# tags: {
|
272
|
+
# "TagKey" => "TagValue",
|
273
|
+
# },
|
268
274
|
# })
|
269
275
|
#
|
270
276
|
# @example Response structure
|
@@ -435,6 +441,7 @@ module Aws::CodeStar
|
|
435
441
|
# * {Types::DescribeProjectResult#created_time_stamp #created_time_stamp} => Time
|
436
442
|
# * {Types::DescribeProjectResult#stack_id #stack_id} => String
|
437
443
|
# * {Types::DescribeProjectResult#project_template_id #project_template_id} => String
|
444
|
+
# * {Types::DescribeProjectResult#status #status} => Types::ProjectStatus
|
438
445
|
#
|
439
446
|
# @example Request syntax with placeholder values
|
440
447
|
#
|
@@ -452,6 +459,8 @@ module Aws::CodeStar
|
|
452
459
|
# resp.created_time_stamp #=> Time
|
453
460
|
# resp.stack_id #=> String
|
454
461
|
# resp.project_template_id #=> String
|
462
|
+
# resp.status.state #=> String
|
463
|
+
# resp.status.reason #=> String
|
455
464
|
#
|
456
465
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/DescribeProject AWS API Documentation
|
457
466
|
#
|
@@ -952,7 +961,7 @@ module Aws::CodeStar
|
|
952
961
|
params: params,
|
953
962
|
config: config)
|
954
963
|
context[:gem_name] = 'aws-sdk-codestar'
|
955
|
-
context[:gem_version] = '1.
|
964
|
+
context[:gem_version] = '1.5.0'
|
956
965
|
Seahorse::Client::Request.new(handlers, context)
|
957
966
|
end
|
958
967
|
|
@@ -56,9 +56,11 @@ module Aws::CodeStar
|
|
56
56
|
ProjectId = Shapes::StringShape.new(name: 'ProjectId')
|
57
57
|
ProjectName = Shapes::StringShape.new(name: 'ProjectName')
|
58
58
|
ProjectNotFoundException = Shapes::StructureShape.new(name: 'ProjectNotFoundException')
|
59
|
+
ProjectStatus = Shapes::StructureShape.new(name: 'ProjectStatus')
|
59
60
|
ProjectSummary = Shapes::StructureShape.new(name: 'ProjectSummary')
|
60
61
|
ProjectTemplateId = Shapes::StringShape.new(name: 'ProjectTemplateId')
|
61
62
|
ProjectsList = Shapes::ListShape.new(name: 'ProjectsList')
|
63
|
+
Reason = Shapes::StringShape.new(name: 'Reason')
|
62
64
|
RemoteAccessAllowed = Shapes::BooleanShape.new(name: 'RemoteAccessAllowed')
|
63
65
|
Resource = Shapes::StructureShape.new(name: 'Resource')
|
64
66
|
ResourceId = Shapes::StringShape.new(name: 'ResourceId')
|
@@ -66,6 +68,7 @@ module Aws::CodeStar
|
|
66
68
|
Role = Shapes::StringShape.new(name: 'Role')
|
67
69
|
SshPublicKey = Shapes::StringShape.new(name: 'SshPublicKey')
|
68
70
|
StackId = Shapes::StringShape.new(name: 'StackId')
|
71
|
+
State = Shapes::StringShape.new(name: 'State')
|
69
72
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
70
73
|
TagKeys = Shapes::ListShape.new(name: 'TagKeys')
|
71
74
|
TagProjectRequest = Shapes::StructureShape.new(name: 'TagProjectRequest')
|
@@ -106,6 +109,7 @@ module Aws::CodeStar
|
|
106
109
|
CreateProjectRequest.add_member(:id, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "id"))
|
107
110
|
CreateProjectRequest.add_member(:description, Shapes::ShapeRef.new(shape: ProjectDescription, location_name: "description"))
|
108
111
|
CreateProjectRequest.add_member(:client_request_token, Shapes::ShapeRef.new(shape: ClientRequestToken, location_name: "clientRequestToken"))
|
112
|
+
CreateProjectRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
109
113
|
CreateProjectRequest.struct_class = Types::CreateProjectRequest
|
110
114
|
|
111
115
|
CreateProjectResult.add_member(:id, Shapes::ShapeRef.new(shape: ProjectId, required: true, location_name: "id"))
|
@@ -154,6 +158,7 @@ module Aws::CodeStar
|
|
154
158
|
DescribeProjectResult.add_member(:created_time_stamp, Shapes::ShapeRef.new(shape: CreatedTimestamp, location_name: "createdTimeStamp"))
|
155
159
|
DescribeProjectResult.add_member(:stack_id, Shapes::ShapeRef.new(shape: StackId, location_name: "stackId"))
|
156
160
|
DescribeProjectResult.add_member(:project_template_id, Shapes::ShapeRef.new(shape: ProjectTemplateId, location_name: "projectTemplateId"))
|
161
|
+
DescribeProjectResult.add_member(:status, Shapes::ShapeRef.new(shape: ProjectStatus, location_name: "status"))
|
157
162
|
DescribeProjectResult.struct_class = Types::DescribeProjectResult
|
158
163
|
|
159
164
|
DescribeUserProfileRequest.add_member(:user_arn, Shapes::ShapeRef.new(shape: UserArn, required: true, location_name: "userArn"))
|
@@ -216,6 +221,10 @@ module Aws::CodeStar
|
|
216
221
|
ListUserProfilesResult.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
|
217
222
|
ListUserProfilesResult.struct_class = Types::ListUserProfilesResult
|
218
223
|
|
224
|
+
ProjectStatus.add_member(:state, Shapes::ShapeRef.new(shape: State, required: true, location_name: "state"))
|
225
|
+
ProjectStatus.add_member(:reason, Shapes::ShapeRef.new(shape: Reason, location_name: "reason"))
|
226
|
+
ProjectStatus.struct_class = Types::ProjectStatus
|
227
|
+
|
219
228
|
ProjectSummary.add_member(:project_id, Shapes::ShapeRef.new(shape: ProjectId, location_name: "projectId"))
|
220
229
|
ProjectSummary.add_member(:project_arn, Shapes::ShapeRef.new(shape: ProjectArn, location_name: "projectArn"))
|
221
230
|
ProjectSummary.struct_class = Types::ProjectSummary
|
@@ -305,6 +314,7 @@ module Aws::CodeStar
|
|
305
314
|
"protocol" => "json",
|
306
315
|
"serviceAbbreviation" => "CodeStar",
|
307
316
|
"serviceFullName" => "AWS CodeStar",
|
317
|
+
"serviceId" => "CodeStar",
|
308
318
|
"signatureVersion" => "v4",
|
309
319
|
"targetPrefix" => "CodeStar_20170419",
|
310
320
|
"uid" => "codestar-2017-04-19",
|
@@ -77,6 +77,9 @@ module Aws::CodeStar
|
|
77
77
|
# id: "ProjectId", # required
|
78
78
|
# description: "ProjectDescription",
|
79
79
|
# client_request_token: "ClientRequestToken",
|
80
|
+
# tags: {
|
81
|
+
# "TagKey" => "TagValue",
|
82
|
+
# },
|
80
83
|
# }
|
81
84
|
#
|
82
85
|
# @!attribute [rw] name
|
@@ -95,13 +98,18 @@ module Aws::CodeStar
|
|
95
98
|
# Reserved for future use.
|
96
99
|
# @return [String]
|
97
100
|
#
|
101
|
+
# @!attribute [rw] tags
|
102
|
+
# The tags created for the project.
|
103
|
+
# @return [Hash<String,String>]
|
104
|
+
#
|
98
105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/CreateProjectRequest AWS API Documentation
|
99
106
|
#
|
100
107
|
class CreateProjectRequest < Struct.new(
|
101
108
|
:name,
|
102
109
|
:id,
|
103
110
|
:description,
|
104
|
-
:client_request_token
|
111
|
+
:client_request_token,
|
112
|
+
:tags)
|
105
113
|
include Aws::Structure
|
106
114
|
end
|
107
115
|
|
@@ -350,6 +358,10 @@ module Aws::CodeStar
|
|
350
358
|
# project.
|
351
359
|
# @return [String]
|
352
360
|
#
|
361
|
+
# @!attribute [rw] status
|
362
|
+
# The project creation or deletion status.
|
363
|
+
# @return [Types::ProjectStatus]
|
364
|
+
#
|
353
365
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/DescribeProjectResult AWS API Documentation
|
354
366
|
#
|
355
367
|
class DescribeProjectResult < Struct.new(
|
@@ -360,7 +372,8 @@ module Aws::CodeStar
|
|
360
372
|
:client_request_token,
|
361
373
|
:created_time_stamp,
|
362
374
|
:stack_id,
|
363
|
-
:project_template_id
|
375
|
+
:project_template_id,
|
376
|
+
:status)
|
364
377
|
include Aws::Structure
|
365
378
|
end
|
366
379
|
|
@@ -692,6 +705,26 @@ module Aws::CodeStar
|
|
692
705
|
include Aws::Structure
|
693
706
|
end
|
694
707
|
|
708
|
+
# An indication of whether a project creation or deletion is failed or
|
709
|
+
# successful.
|
710
|
+
#
|
711
|
+
# @!attribute [rw] state
|
712
|
+
# The phase of completion for a project creation or deletion.
|
713
|
+
# @return [String]
|
714
|
+
#
|
715
|
+
# @!attribute [rw] reason
|
716
|
+
# In the case of a project creation or deletion failure, a reason for
|
717
|
+
# the failure.
|
718
|
+
# @return [String]
|
719
|
+
#
|
720
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/ProjectStatus AWS API Documentation
|
721
|
+
#
|
722
|
+
class ProjectStatus < Struct.new(
|
723
|
+
:state,
|
724
|
+
:reason)
|
725
|
+
include Aws::Structure
|
726
|
+
end
|
727
|
+
|
695
728
|
# Information about the metadata for a project.
|
696
729
|
#
|
697
730
|
# @!attribute [rw] project_id
|
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.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-09-
|
11
|
+
date: 2018-09-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|