aws-sdk-codestar 1.39.0 → 1.40.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a97d3466426ef3d75d658a3eb9abbbdc547ddeae2248069236a9e0b42212bbd9
4
- data.tar.gz: 2a662da42a3c126cd8db7d935e11781f1bec451cd8b42224174e17c8dfe40f1e
3
+ metadata.gz: 4a1439cc023d98b5aa41644bc59478acbeda33b91dd608b0bb9eef843c26c25e
4
+ data.tar.gz: 04ec375b02d00093f90c9455f25a237741dcd40d96f96afea993bf45b0c06df2
5
5
  SHA512:
6
- metadata.gz: 738bc713e815ebd010fe68a1114a2f878734d33d04936fc4f083b051dee1c9ac29c645ea45ef38524e4615240ceb35c66264ae2ce2ac8a9057cef1ab710d6616
7
- data.tar.gz: bf161a099beaeaeb618ff1fb116db8a30107d8470fe0f82104c5f9d462d2e95e43ae45033650f485f77197c5797ace4ec5e93d1b59d10e094c505a0c0da2b62c
6
+ metadata.gz: adff84d9244e7597ee2f3521ca0019b180c97755140fbb36ec35497d6013a037f8eac1e842a27ee09dbd048d69d090028e5326c048153a6b0b9f7d0cdbae631a
7
+ data.tar.gz: 0e792e35e503297593d1ce76240cdf105ad05fdf2f1b3d490efe61082751c77f53ad01e2fdc00e83b4bb19c58acbcea3f4ed00784fe8ffcc8e8bf519c97ae455
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.39.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -250,4 +257,4 @@ Unreleased Changes
250
257
  1.0.0.rc1 (2017-04-21)
251
258
  ------------------
252
259
 
253
- * Feature - Initial release of `aws-sdk-codestar`.
260
+ * Feature - Initial release of `aws-sdk-codestar`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.40.0
@@ -1203,7 +1203,7 @@ module Aws::CodeStar
1203
1203
  params: params,
1204
1204
  config: config)
1205
1205
  context[:gem_name] = 'aws-sdk-codestar'
1206
- context[:gem_version] = '1.39.0'
1206
+ context[:gem_version] = '1.40.0'
1207
1207
  Seahorse::Client::Request.new(handlers, context)
1208
1208
  end
1209
1209
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::CodeStar
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://codestar-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://codestar-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://codestar.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://codestar.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2NvZGVzdGFyLWZpcHMue1JlZ2lvbn0ue1Bh
77
- cnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGll
78
- cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNv
79
- bmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUg
80
- ZW5hYmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQg
81
- b25lIG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
82
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
83
- UyJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlv
84
- bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4i
85
- OiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0s
86
- InN1cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3si
87
- Y29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
88
- dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2NvZGVzdGFy
89
- LWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9Iiwi
90
- cHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50
91
- In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFi
92
- bGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMi
93
- LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
94
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1
95
- ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3si
96
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0
97
- dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9y
98
- dHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNv
99
- bmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2NvZGVz
100
- dGFyLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3Vm
101
- Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
102
- bmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3Rh
103
- Y2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3Vw
104
- cG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9u
105
- cyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vY29kZXN0YXIue1Jl
106
- Z2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGll
107
- cyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -10,17 +10,6 @@
10
10
  module Aws::CodeStar
11
11
  module Types
12
12
 
13
- # @note When making an API call, you may pass AssociateTeamMemberRequest
14
- # data as a hash:
15
- #
16
- # {
17
- # project_id: "ProjectId", # required
18
- # client_request_token: "ClientRequestToken",
19
- # user_arn: "UserArn", # required
20
- # project_role: "Role", # required
21
- # remote_access_allowed: false,
22
- # }
23
- #
24
13
  # @!attribute [rw] project_id
25
14
  # The ID of the project to which you will add the IAM user.
26
15
  # @return [String]
@@ -77,32 +66,6 @@ module Aws::CodeStar
77
66
  # provided with the project request. The source code is uploaded to the
78
67
  # new project source repository after project creation.
79
68
  #
80
- # @note When making an API call, you may pass Code
81
- # data as a hash:
82
- #
83
- # {
84
- # source: { # required
85
- # s3: { # required
86
- # bucket_name: "BucketName",
87
- # bucket_key: "BucketKey",
88
- # },
89
- # },
90
- # destination: { # required
91
- # code_commit: {
92
- # name: "RepositoryName", # required
93
- # },
94
- # git_hub: {
95
- # name: "RepositoryName", # required
96
- # description: "RepositoryDescription",
97
- # type: "RepositoryType", # required
98
- # owner: "RepositoryOwner", # required
99
- # private_repository: false, # required
100
- # issues_enabled: false, # required
101
- # token: "GitHubPersonalToken", # required
102
- # },
103
- # },
104
- # }
105
- #
106
69
  # @!attribute [rw] source
107
70
  # The location where the source code files provided with the project
108
71
  # request are stored. AWS CodeStar retrieves the files during project
@@ -129,13 +92,6 @@ module Aws::CodeStar
129
92
  # CodeStar. This is where the source code files provided with the
130
93
  # project request will be uploaded after project creation.
131
94
  #
132
- # @note When making an API call, you may pass CodeCommitCodeDestination
133
- # data as a hash:
134
- #
135
- # {
136
- # name: "RepositoryName", # required
137
- # }
138
- #
139
95
  # @!attribute [rw] name
140
96
  # The name of the AWS CodeCommit repository to be created in AWS
141
97
  # CodeStar.
@@ -154,24 +110,6 @@ module Aws::CodeStar
154
110
  # repository, the source code files provided with the project request
155
111
  # are placed in the repository.
156
112
  #
157
- # @note When making an API call, you may pass CodeDestination
158
- # data as a hash:
159
- #
160
- # {
161
- # code_commit: {
162
- # name: "RepositoryName", # required
163
- # },
164
- # git_hub: {
165
- # name: "RepositoryName", # required
166
- # description: "RepositoryDescription",
167
- # type: "RepositoryType", # required
168
- # owner: "RepositoryOwner", # required
169
- # private_repository: false, # required
170
- # issues_enabled: false, # required
171
- # token: "GitHubPersonalToken", # required
172
- # },
173
- # }
174
- #
175
113
  # @!attribute [rw] code_commit
176
114
  # Information about the AWS CodeCommit repository to be created in AWS
177
115
  # CodeStar. This is where the source code files provided with the
@@ -197,16 +135,6 @@ module Aws::CodeStar
197
135
  # request are stored. AWS CodeStar retrieves the files during project
198
136
  # creation.
199
137
  #
200
- # @note When making an API call, you may pass CodeSource
201
- # data as a hash:
202
- #
203
- # {
204
- # s3: { # required
205
- # bucket_name: "BucketName",
206
- # bucket_key: "BucketKey",
207
- # },
208
- # }
209
- #
210
138
  # @!attribute [rw] s3
211
139
  # Information about the Amazon S3 location where the source code files
212
140
  # provided with the project request are stored.
@@ -227,55 +155,6 @@ module Aws::CodeStar
227
155
  #
228
156
  class ConcurrentModificationException < Aws::EmptyStructure; end
229
157
 
230
- # @note When making an API call, you may pass CreateProjectRequest
231
- # data as a hash:
232
- #
233
- # {
234
- # name: "ProjectName", # required
235
- # id: "ProjectId", # required
236
- # description: "ProjectDescription",
237
- # client_request_token: "ClientRequestToken",
238
- # source_code: [
239
- # {
240
- # source: { # required
241
- # s3: { # required
242
- # bucket_name: "BucketName",
243
- # bucket_key: "BucketKey",
244
- # },
245
- # },
246
- # destination: { # required
247
- # code_commit: {
248
- # name: "RepositoryName", # required
249
- # },
250
- # git_hub: {
251
- # name: "RepositoryName", # required
252
- # description: "RepositoryDescription",
253
- # type: "RepositoryType", # required
254
- # owner: "RepositoryOwner", # required
255
- # private_repository: false, # required
256
- # issues_enabled: false, # required
257
- # token: "GitHubPersonalToken", # required
258
- # },
259
- # },
260
- # },
261
- # ],
262
- # toolchain: {
263
- # source: { # required
264
- # s3: { # required
265
- # bucket_name: "BucketName",
266
- # bucket_key: "BucketKey",
267
- # },
268
- # },
269
- # role_arn: "RoleArn",
270
- # stack_parameters: {
271
- # "TemplateParameterKey" => "TemplateParameterValue",
272
- # },
273
- # },
274
- # tags: {
275
- # "TagKey" => "TagValue",
276
- # },
277
- # }
278
- #
279
158
  # @!attribute [rw] name
280
159
  # The display name for the project to be created in AWS CodeStar.
281
160
  # @return [String]
@@ -352,16 +231,6 @@ module Aws::CodeStar
352
231
  include Aws::Structure
353
232
  end
354
233
 
355
- # @note When making an API call, you may pass CreateUserProfileRequest
356
- # data as a hash:
357
- #
358
- # {
359
- # user_arn: "UserArn", # required
360
- # display_name: "UserProfileDisplayName", # required
361
- # email_address: "Email", # required
362
- # ssh_public_key: "SshPublicKey",
363
- # }
364
- #
365
234
  # @!attribute [rw] user_arn
366
235
  # The Amazon Resource Name (ARN) of the user in IAM.
367
236
  # @return [String]
@@ -436,15 +305,6 @@ module Aws::CodeStar
436
305
  include Aws::Structure
437
306
  end
438
307
 
439
- # @note When making an API call, you may pass DeleteProjectRequest
440
- # data as a hash:
441
- #
442
- # {
443
- # id: "ProjectId", # required
444
- # client_request_token: "ClientRequestToken",
445
- # delete_stack: false,
446
- # }
447
- #
448
308
  # @!attribute [rw] id
449
309
  # The ID of the project to be deleted in AWS CodeStar.
450
310
  # @return [String]
@@ -491,13 +351,6 @@ module Aws::CodeStar
491
351
  include Aws::Structure
492
352
  end
493
353
 
494
- # @note When making an API call, you may pass DeleteUserProfileRequest
495
- # data as a hash:
496
- #
497
- # {
498
- # user_arn: "UserArn", # required
499
- # }
500
- #
501
354
  # @!attribute [rw] user_arn
502
355
  # The Amazon Resource Name (ARN) of the user to delete from AWS
503
356
  # CodeStar.
@@ -524,13 +377,6 @@ module Aws::CodeStar
524
377
  include Aws::Structure
525
378
  end
526
379
 
527
- # @note When making an API call, you may pass DescribeProjectRequest
528
- # data as a hash:
529
- #
530
- # {
531
- # id: "ProjectId", # required
532
- # }
533
- #
534
380
  # @!attribute [rw] id
535
381
  # The ID of the project.
536
382
  # @return [String]
@@ -598,13 +444,6 @@ module Aws::CodeStar
598
444
  include Aws::Structure
599
445
  end
600
446
 
601
- # @note When making an API call, you may pass DescribeUserProfileRequest
602
- # data as a hash:
603
- #
604
- # {
605
- # user_arn: "UserArn", # required
606
- # }
607
- #
608
447
  # @!attribute [rw] user_arn
609
448
  # The Amazon Resource Name (ARN) of the user.
610
449
  # @return [String]
@@ -670,14 +509,6 @@ module Aws::CodeStar
670
509
  include Aws::Structure
671
510
  end
672
511
 
673
- # @note When making an API call, you may pass DisassociateTeamMemberRequest
674
- # data as a hash:
675
- #
676
- # {
677
- # project_id: "ProjectId", # required
678
- # user_arn: "UserArn", # required
679
- # }
680
- #
681
512
  # @!attribute [rw] project_id
682
513
  # The ID of the AWS CodeStar project from which you want to remove a
683
514
  # team member.
@@ -705,19 +536,6 @@ module Aws::CodeStar
705
536
  # This is where the source code files provided with the project request
706
537
  # will be uploaded after project creation.
707
538
  #
708
- # @note When making an API call, you may pass GitHubCodeDestination
709
- # data as a hash:
710
- #
711
- # {
712
- # name: "RepositoryName", # required
713
- # description: "RepositoryDescription",
714
- # type: "RepositoryType", # required
715
- # owner: "RepositoryOwner", # required
716
- # private_repository: false, # required
717
- # issues_enabled: false, # required
718
- # token: "GitHubPersonalToken", # required
719
- # }
720
- #
721
539
  # @!attribute [rw] name
722
540
  # Name of the GitHub repository to be created in AWS CodeStar.
723
541
  # @return [String]
@@ -782,14 +600,6 @@ module Aws::CodeStar
782
600
  #
783
601
  class LimitExceededException < Aws::EmptyStructure; end
784
602
 
785
- # @note When making an API call, you may pass ListProjectsRequest
786
- # data as a hash:
787
- #
788
- # {
789
- # next_token: "PaginationToken",
790
- # max_results: 1,
791
- # }
792
- #
793
603
  # @!attribute [rw] next_token
794
604
  # The continuation token to be used to return the next set of results,
795
605
  # if the results cannot be returned in one response.
@@ -827,15 +637,6 @@ module Aws::CodeStar
827
637
  include Aws::Structure
828
638
  end
829
639
 
830
- # @note When making an API call, you may pass ListResourcesRequest
831
- # data as a hash:
832
- #
833
- # {
834
- # project_id: "ProjectId", # required
835
- # next_token: "PaginationToken",
836
- # max_results: 1,
837
- # }
838
- #
839
640
  # @!attribute [rw] project_id
840
641
  # The ID of the project.
841
642
  # @return [String]
@@ -878,15 +679,6 @@ module Aws::CodeStar
878
679
  include Aws::Structure
879
680
  end
880
681
 
881
- # @note When making an API call, you may pass ListTagsForProjectRequest
882
- # data as a hash:
883
- #
884
- # {
885
- # id: "ProjectId", # required
886
- # next_token: "PaginationToken",
887
- # max_results: 1,
888
- # }
889
- #
890
682
  # @!attribute [rw] id
891
683
  # The ID of the project to get tags for.
892
684
  # @return [String]
@@ -926,15 +718,6 @@ module Aws::CodeStar
926
718
  include Aws::Structure
927
719
  end
928
720
 
929
- # @note When making an API call, you may pass ListTeamMembersRequest
930
- # data as a hash:
931
- #
932
- # {
933
- # project_id: "ProjectId", # required
934
- # next_token: "PaginationToken",
935
- # max_results: 1,
936
- # }
937
- #
938
721
  # @!attribute [rw] project_id
939
722
  # The ID of the project for which you want to list team members.
940
723
  # @return [String]
@@ -976,14 +759,6 @@ module Aws::CodeStar
976
759
  include Aws::Structure
977
760
  end
978
761
 
979
- # @note When making an API call, you may pass ListUserProfilesRequest
980
- # data as a hash:
981
- #
982
- # {
983
- # next_token: "PaginationToken",
984
- # max_results: 1,
985
- # }
986
- #
987
762
  # @!attribute [rw] next_token
988
763
  # The continuation token for the next set of results, if the results
989
764
  # cannot be returned in one response.
@@ -1105,14 +880,6 @@ module Aws::CodeStar
1105
880
  # The Amazon S3 location where the source code files provided with the
1106
881
  # project request are stored.
1107
882
  #
1108
- # @note When making an API call, you may pass S3Location
1109
- # data as a hash:
1110
- #
1111
- # {
1112
- # bucket_name: "BucketName",
1113
- # bucket_key: "BucketKey",
1114
- # }
1115
- #
1116
883
  # @!attribute [rw] bucket_name
1117
884
  # The Amazon S3 bucket name where the source code files provided with
1118
885
  # the project request are stored.
@@ -1132,16 +899,6 @@ module Aws::CodeStar
1132
899
  include Aws::Structure
1133
900
  end
1134
901
 
1135
- # @note When making an API call, you may pass TagProjectRequest
1136
- # data as a hash:
1137
- #
1138
- # {
1139
- # id: "ProjectId", # required
1140
- # tags: { # required
1141
- # "TagKey" => "TagValue",
1142
- # },
1143
- # }
1144
- #
1145
902
  # @!attribute [rw] id
1146
903
  # The ID of the project you want to add a tag to.
1147
904
  # @return [String]
@@ -1218,22 +975,6 @@ module Aws::CodeStar
1218
975
  # CodeStar uses the template to provision the toolchain stack in AWS
1219
976
  # CloudFormation.
1220
977
  #
1221
- # @note When making an API call, you may pass Toolchain
1222
- # data as a hash:
1223
- #
1224
- # {
1225
- # source: { # required
1226
- # s3: { # required
1227
- # bucket_name: "BucketName",
1228
- # bucket_key: "BucketKey",
1229
- # },
1230
- # },
1231
- # role_arn: "RoleArn",
1232
- # stack_parameters: {
1233
- # "TemplateParameterKey" => "TemplateParameterValue",
1234
- # },
1235
- # }
1236
- #
1237
978
  # @!attribute [rw] source
1238
979
  # The Amazon S3 location where the toolchain template file provided
1239
980
  # with the project request is stored. AWS CodeStar retrieves the file
@@ -1264,16 +1005,6 @@ module Aws::CodeStar
1264
1005
  # the project request is stored. AWS CodeStar retrieves the file during
1265
1006
  # project creation.
1266
1007
  #
1267
- # @note When making an API call, you may pass ToolchainSource
1268
- # data as a hash:
1269
- #
1270
- # {
1271
- # s3: { # required
1272
- # bucket_name: "BucketName",
1273
- # bucket_key: "BucketKey",
1274
- # },
1275
- # }
1276
- #
1277
1008
  # @!attribute [rw] s3
1278
1009
  # The Amazon S3 bucket where the toolchain template file provided with
1279
1010
  # the project request is stored.
@@ -1287,14 +1018,6 @@ module Aws::CodeStar
1287
1018
  include Aws::Structure
1288
1019
  end
1289
1020
 
1290
- # @note When making an API call, you may pass UntagProjectRequest
1291
- # data as a hash:
1292
- #
1293
- # {
1294
- # id: "ProjectId", # required
1295
- # tags: ["TagKey"], # required
1296
- # }
1297
- #
1298
1021
  # @!attribute [rw] id
1299
1022
  # The ID of the project to remove tags from.
1300
1023
  # @return [String]
@@ -1316,15 +1039,6 @@ module Aws::CodeStar
1316
1039
  #
1317
1040
  class UntagProjectResult < Aws::EmptyStructure; end
1318
1041
 
1319
- # @note When making an API call, you may pass UpdateProjectRequest
1320
- # data as a hash:
1321
- #
1322
- # {
1323
- # id: "ProjectId", # required
1324
- # name: "ProjectName",
1325
- # description: "ProjectDescription",
1326
- # }
1327
- #
1328
1042
  # @!attribute [rw] id
1329
1043
  # The ID of the project you want to update.
1330
1044
  # @return [String]
@@ -1351,16 +1065,6 @@ module Aws::CodeStar
1351
1065
  #
1352
1066
  class UpdateProjectResult < Aws::EmptyStructure; end
1353
1067
 
1354
- # @note When making an API call, you may pass UpdateTeamMemberRequest
1355
- # data as a hash:
1356
- #
1357
- # {
1358
- # project_id: "ProjectId", # required
1359
- # user_arn: "UserArn", # required
1360
- # project_role: "Role",
1361
- # remote_access_allowed: false,
1362
- # }
1363
- #
1364
1068
  # @!attribute [rw] project_id
1365
1069
  # The ID of the project.
1366
1070
  # @return [String]
@@ -1423,16 +1127,6 @@ module Aws::CodeStar
1423
1127
  include Aws::Structure
1424
1128
  end
1425
1129
 
1426
- # @note When making an API call, you may pass UpdateUserProfileRequest
1427
- # data as a hash:
1428
- #
1429
- # {
1430
- # user_arn: "UserArn", # required
1431
- # display_name: "UserProfileDisplayName",
1432
- # email_address: "Email",
1433
- # ssh_public_key: "SshPublicKey",
1434
- # }
1435
- #
1436
1130
  # @!attribute [rw] user_arn
1437
1131
  # The name that will be displayed as the friendly name for the user in
1438
1132
  # AWS CodeStar.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-codestar/customizations'
52
52
  # @!group service
53
53
  module Aws::CodeStar
54
54
 
55
- GEM_VERSION = '1.39.0'
55
+ GEM_VERSION = '1.40.0'
56
56
 
57
57
  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.39.0
4
+ version: 1.40.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: 2022-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core