aws-sdk-codecommit 1.0.0.rc2 → 1.0.0.rc3
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-codecommit.rb +1 -1
- data/lib/aws-sdk-codecommit/client.rb +37 -1
- data/lib/aws-sdk-codecommit/types.rb +78 -0
- 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: accfbd8866b1304c30ab64a43b47699e99dfbba7
|
4
|
+
data.tar.gz: 0997797cbd0d6646b47b2097ae5789dbeca0a21f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a5694d841c8f1b53b73633ad33c333021fca66ab85184a006852b2061c0445f60db4c8d2e594aa83a37f56368e6612014cb4c0805e40e4074d0c06a1bec14725
|
7
|
+
data.tar.gz: ac11d6cde455e2d1322c4166ddbd8214f50913d34965d6207697064bf2446268af541b8406294001fbd87198ce1c528c9a7356267dfa85c12a752bfdbe10f413
|
data/lib/aws-sdk-codecommit.rb
CHANGED
@@ -18,6 +18,7 @@ require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
|
18
18
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
19
19
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
20
20
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
21
|
+
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
21
22
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
22
23
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
23
24
|
|
@@ -45,6 +46,7 @@ module Aws::CodeCommit
|
|
45
46
|
add_plugin(Aws::Plugins::ResponsePaging)
|
46
47
|
add_plugin(Aws::Plugins::StubResponses)
|
47
48
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
49
|
+
add_plugin(Aws::Plugins::JsonvalueConverter)
|
48
50
|
add_plugin(Aws::Plugins::SignatureV4)
|
49
51
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
50
52
|
|
@@ -194,6 +196,8 @@ module Aws::CodeCommit
|
|
194
196
|
# resp.repositories_not_found #=> Array
|
195
197
|
# resp.repositories_not_found[0] #=> String
|
196
198
|
#
|
199
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchGetRepositories AWS API Documentation
|
200
|
+
#
|
197
201
|
# @overload batch_get_repositories(params = {})
|
198
202
|
# @param [Hash] params ({})
|
199
203
|
def batch_get_repositories(params = {}, options = {})
|
@@ -228,6 +232,8 @@ module Aws::CodeCommit
|
|
228
232
|
# commit_id: "CommitId", # required
|
229
233
|
# })
|
230
234
|
#
|
235
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateBranch AWS API Documentation
|
236
|
+
#
|
231
237
|
# @overload create_branch(params = {})
|
232
238
|
# @param [Hash] params ({})
|
233
239
|
def create_branch(params = {}, options = {})
|
@@ -288,6 +294,8 @@ module Aws::CodeCommit
|
|
288
294
|
# resp.repository_metadata.clone_url_ssh #=> String
|
289
295
|
# resp.repository_metadata.arn #=> String
|
290
296
|
#
|
297
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateRepository AWS API Documentation
|
298
|
+
#
|
291
299
|
# @overload create_repository(params = {})
|
292
300
|
# @param [Hash] params ({})
|
293
301
|
def create_repository(params = {}, options = {})
|
@@ -319,6 +327,8 @@ module Aws::CodeCommit
|
|
319
327
|
#
|
320
328
|
# resp.repository_id #=> String
|
321
329
|
#
|
330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteRepository AWS API Documentation
|
331
|
+
#
|
322
332
|
# @overload delete_repository(params = {})
|
323
333
|
# @param [Hash] params ({})
|
324
334
|
def delete_repository(params = {}, options = {})
|
@@ -350,6 +360,8 @@ module Aws::CodeCommit
|
|
350
360
|
#
|
351
361
|
# resp.content #=> String
|
352
362
|
#
|
363
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBlob AWS API Documentation
|
364
|
+
#
|
353
365
|
# @overload get_blob(params = {})
|
354
366
|
# @param [Hash] params ({})
|
355
367
|
def get_blob(params = {}, options = {})
|
@@ -383,6 +395,8 @@ module Aws::CodeCommit
|
|
383
395
|
# resp.branch.branch_name #=> String
|
384
396
|
# resp.branch.commit_id #=> String
|
385
397
|
#
|
398
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBranch AWS API Documentation
|
399
|
+
#
|
386
400
|
# @overload get_branch(params = {})
|
387
401
|
# @param [Hash] params ({})
|
388
402
|
def get_branch(params = {}, options = {})
|
@@ -424,6 +438,8 @@ module Aws::CodeCommit
|
|
424
438
|
# resp.commit.committer.date #=> String
|
425
439
|
# resp.commit.additional_data #=> String
|
426
440
|
#
|
441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommit AWS API Documentation
|
442
|
+
#
|
427
443
|
# @overload get_commit(params = {})
|
428
444
|
# @param [Hash] params ({})
|
429
445
|
def get_commit(params = {}, options = {})
|
@@ -497,6 +513,8 @@ module Aws::CodeCommit
|
|
497
513
|
# resp.differences[0].change_type #=> String, one of "A", "M", "D"
|
498
514
|
# resp.next_token #=> String
|
499
515
|
#
|
516
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetDifferences AWS API Documentation
|
517
|
+
#
|
500
518
|
# @overload get_differences(params = {})
|
501
519
|
# @param [Hash] params ({})
|
502
520
|
def get_differences(params = {}, options = {})
|
@@ -541,6 +559,8 @@ module Aws::CodeCommit
|
|
541
559
|
# resp.repository_metadata.clone_url_ssh #=> String
|
542
560
|
# resp.repository_metadata.arn #=> String
|
543
561
|
#
|
562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepository AWS API Documentation
|
563
|
+
#
|
544
564
|
# @overload get_repository(params = {})
|
545
565
|
# @param [Hash] params ({})
|
546
566
|
def get_repository(params = {}, options = {})
|
@@ -576,6 +596,8 @@ module Aws::CodeCommit
|
|
576
596
|
# resp.triggers[0].events #=> Array
|
577
597
|
# resp.triggers[0].events[0] #=> String, one of "all", "updateReference", "createReference", "deleteReference"
|
578
598
|
#
|
599
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepositoryTriggers AWS API Documentation
|
600
|
+
#
|
579
601
|
# @overload get_repository_triggers(params = {})
|
580
602
|
# @param [Hash] params ({})
|
581
603
|
def get_repository_triggers(params = {}, options = {})
|
@@ -609,6 +631,8 @@ module Aws::CodeCommit
|
|
609
631
|
# resp.branches[0] #=> String
|
610
632
|
# resp.next_token #=> String
|
611
633
|
#
|
634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListBranches AWS API Documentation
|
635
|
+
#
|
612
636
|
# @overload list_branches(params = {})
|
613
637
|
# @param [Hash] params ({})
|
614
638
|
def list_branches(params = {}, options = {})
|
@@ -652,6 +676,8 @@ module Aws::CodeCommit
|
|
652
676
|
# resp.repositories[0].repository_id #=> String
|
653
677
|
# resp.next_token #=> String
|
654
678
|
#
|
679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListRepositories AWS API Documentation
|
680
|
+
#
|
655
681
|
# @overload list_repositories(params = {})
|
656
682
|
# @param [Hash] params ({})
|
657
683
|
def list_repositories(params = {}, options = {})
|
@@ -692,6 +718,8 @@ module Aws::CodeCommit
|
|
692
718
|
#
|
693
719
|
# resp.configuration_id #=> String
|
694
720
|
#
|
721
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PutRepositoryTriggers AWS API Documentation
|
722
|
+
#
|
695
723
|
# @overload put_repository_triggers(params = {})
|
696
724
|
# @param [Hash] params ({})
|
697
725
|
def put_repository_triggers(params = {}, options = {})
|
@@ -738,6 +766,8 @@ module Aws::CodeCommit
|
|
738
766
|
# resp.failed_executions[0].trigger #=> String
|
739
767
|
# resp.failed_executions[0].failure_message #=> String
|
740
768
|
#
|
769
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/TestRepositoryTriggers AWS API Documentation
|
770
|
+
#
|
741
771
|
# @overload test_repository_triggers(params = {})
|
742
772
|
# @param [Hash] params ({})
|
743
773
|
def test_repository_triggers(params = {}, options = {})
|
@@ -768,6 +798,8 @@ module Aws::CodeCommit
|
|
768
798
|
# default_branch_name: "BranchName", # required
|
769
799
|
# })
|
770
800
|
#
|
801
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateDefaultBranch AWS API Documentation
|
802
|
+
#
|
771
803
|
# @overload update_default_branch(params = {})
|
772
804
|
# @param [Hash] params ({})
|
773
805
|
def update_default_branch(params = {}, options = {})
|
@@ -803,6 +835,8 @@ module Aws::CodeCommit
|
|
803
835
|
# repository_description: "RepositoryDescription",
|
804
836
|
# })
|
805
837
|
#
|
838
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateRepositoryDescription AWS API Documentation
|
839
|
+
#
|
806
840
|
# @overload update_repository_description(params = {})
|
807
841
|
# @param [Hash] params ({})
|
808
842
|
def update_repository_description(params = {}, options = {})
|
@@ -836,6 +870,8 @@ module Aws::CodeCommit
|
|
836
870
|
# new_name: "RepositoryName", # required
|
837
871
|
# })
|
838
872
|
#
|
873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateRepositoryName AWS API Documentation
|
874
|
+
#
|
839
875
|
# @overload update_repository_name(params = {})
|
840
876
|
# @param [Hash] params ({})
|
841
877
|
def update_repository_name(params = {}, options = {})
|
@@ -856,7 +892,7 @@ module Aws::CodeCommit
|
|
856
892
|
params: params,
|
857
893
|
config: config)
|
858
894
|
context[:gem_name] = 'aws-sdk-codecommit'
|
859
|
-
context[:gem_version] = '1.0.0.
|
895
|
+
context[:gem_version] = '1.0.0.rc3'
|
860
896
|
Seahorse::Client::Request.new(handlers, context)
|
861
897
|
end
|
862
898
|
|
@@ -21,6 +21,8 @@ module Aws::CodeCommit
|
|
21
21
|
# The names of the repositories to get information about.
|
22
22
|
# @return [Array<String>]
|
23
23
|
#
|
24
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchGetRepositoriesInput AWS API Documentation
|
25
|
+
#
|
24
26
|
class BatchGetRepositoriesInput < Struct.new(
|
25
27
|
:repository_names)
|
26
28
|
include Aws::Structure
|
@@ -38,6 +40,8 @@ module Aws::CodeCommit
|
|
38
40
|
# be found.
|
39
41
|
# @return [Array<String>]
|
40
42
|
#
|
43
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchGetRepositoriesOutput AWS API Documentation
|
44
|
+
#
|
41
45
|
class BatchGetRepositoriesOutput < Struct.new(
|
42
46
|
:repositories,
|
43
47
|
:repositories_not_found)
|
@@ -67,6 +71,8 @@ module Aws::CodeCommit
|
|
67
71
|
# * `120000` indicates a symlink
|
68
72
|
# @return [String]
|
69
73
|
#
|
74
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BlobMetadata AWS API Documentation
|
75
|
+
#
|
70
76
|
class BlobMetadata < Struct.new(
|
71
77
|
:blob_id,
|
72
78
|
:path,
|
@@ -84,6 +90,8 @@ module Aws::CodeCommit
|
|
84
90
|
# The ID of the last commit made to the branch.
|
85
91
|
# @return [String]
|
86
92
|
#
|
93
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BranchInfo AWS API Documentation
|
94
|
+
#
|
87
95
|
class BranchInfo < Struct.new(
|
88
96
|
:branch_name,
|
89
97
|
:commit_id)
|
@@ -130,6 +138,8 @@ module Aws::CodeCommit
|
|
130
138
|
# Any additional data associated with the specified commit.
|
131
139
|
# @return [String]
|
132
140
|
#
|
141
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/Commit AWS API Documentation
|
142
|
+
#
|
133
143
|
class Commit < Struct.new(
|
134
144
|
:tree_id,
|
135
145
|
:parents,
|
@@ -164,6 +174,8 @@ module Aws::CodeCommit
|
|
164
174
|
# The ID of the commit to point the new branch to.
|
165
175
|
# @return [String]
|
166
176
|
#
|
177
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateBranchInput AWS API Documentation
|
178
|
+
#
|
167
179
|
class CreateBranchInput < Struct.new(
|
168
180
|
:repository_name,
|
169
181
|
:branch_name,
|
@@ -211,6 +223,8 @@ module Aws::CodeCommit
|
|
211
223
|
# </note>
|
212
224
|
# @return [String]
|
213
225
|
#
|
226
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateRepositoryInput AWS API Documentation
|
227
|
+
#
|
214
228
|
class CreateRepositoryInput < Struct.new(
|
215
229
|
:repository_name,
|
216
230
|
:repository_description)
|
@@ -223,6 +237,8 @@ module Aws::CodeCommit
|
|
223
237
|
# Information about the newly created repository.
|
224
238
|
# @return [Types::RepositoryMetadata]
|
225
239
|
#
|
240
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateRepositoryOutput AWS API Documentation
|
241
|
+
#
|
226
242
|
class CreateRepositoryOutput < Struct.new(
|
227
243
|
:repository_metadata)
|
228
244
|
include Aws::Structure
|
@@ -241,6 +257,8 @@ module Aws::CodeCommit
|
|
241
257
|
# The name of the repository to delete.
|
242
258
|
# @return [String]
|
243
259
|
#
|
260
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteRepositoryInput AWS API Documentation
|
261
|
+
#
|
244
262
|
class DeleteRepositoryInput < Struct.new(
|
245
263
|
:repository_name)
|
246
264
|
include Aws::Structure
|
@@ -252,6 +270,8 @@ module Aws::CodeCommit
|
|
252
270
|
# The ID of the repository that was deleted.
|
253
271
|
# @return [String]
|
254
272
|
#
|
273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteRepositoryOutput AWS API Documentation
|
274
|
+
#
|
255
275
|
class DeleteRepositoryOutput < Struct.new(
|
256
276
|
:repository_id)
|
257
277
|
include Aws::Structure
|
@@ -274,6 +294,8 @@ module Aws::CodeCommit
|
|
274
294
|
# deletion (D), or modification (M).
|
275
295
|
# @return [String]
|
276
296
|
#
|
297
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/Difference AWS API Documentation
|
298
|
+
#
|
277
299
|
class Difference < Struct.new(
|
278
300
|
:before_blob,
|
279
301
|
:after_blob,
|
@@ -299,6 +321,8 @@ module Aws::CodeCommit
|
|
299
321
|
# The ID of the blob, which is its SHA-1 pointer.
|
300
322
|
# @return [String]
|
301
323
|
#
|
324
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBlobInput AWS API Documentation
|
325
|
+
#
|
302
326
|
class GetBlobInput < Struct.new(
|
303
327
|
:repository_name,
|
304
328
|
:blob_id)
|
@@ -311,6 +335,8 @@ module Aws::CodeCommit
|
|
311
335
|
# The content of the blob, usually a file.
|
312
336
|
# @return [String]
|
313
337
|
#
|
338
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBlobOutput AWS API Documentation
|
339
|
+
#
|
314
340
|
class GetBlobOutput < Struct.new(
|
315
341
|
:content)
|
316
342
|
include Aws::Structure
|
@@ -335,6 +361,8 @@ module Aws::CodeCommit
|
|
335
361
|
# The name of the branch for which you want to retrieve information.
|
336
362
|
# @return [String]
|
337
363
|
#
|
364
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBranchInput AWS API Documentation
|
365
|
+
#
|
338
366
|
class GetBranchInput < Struct.new(
|
339
367
|
:repository_name,
|
340
368
|
:branch_name)
|
@@ -347,6 +375,8 @@ module Aws::CodeCommit
|
|
347
375
|
# The name of the branch.
|
348
376
|
# @return [Types::BranchInfo]
|
349
377
|
#
|
378
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBranchOutput AWS API Documentation
|
379
|
+
#
|
350
380
|
class GetBranchOutput < Struct.new(
|
351
381
|
:branch)
|
352
382
|
include Aws::Structure
|
@@ -370,6 +400,8 @@ module Aws::CodeCommit
|
|
370
400
|
# The commit ID.
|
371
401
|
# @return [String]
|
372
402
|
#
|
403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommitInput AWS API Documentation
|
404
|
+
#
|
373
405
|
class GetCommitInput < Struct.new(
|
374
406
|
:repository_name,
|
375
407
|
:commit_id)
|
@@ -383,6 +415,8 @@ module Aws::CodeCommit
|
|
383
415
|
# specified commit.
|
384
416
|
# @return [Types::Commit]
|
385
417
|
#
|
418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommitOutput AWS API Documentation
|
419
|
+
#
|
386
420
|
class GetCommitOutput < Struct.new(
|
387
421
|
:commit)
|
388
422
|
include Aws::Structure
|
@@ -441,6 +475,8 @@ module Aws::CodeCommit
|
|
441
475
|
# next batch of the results.
|
442
476
|
# @return [String]
|
443
477
|
#
|
478
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetDifferencesInput AWS API Documentation
|
479
|
+
#
|
444
480
|
class GetDifferencesInput < Struct.new(
|
445
481
|
:repository_name,
|
446
482
|
:before_commit_specifier,
|
@@ -463,6 +499,8 @@ module Aws::CodeCommit
|
|
463
499
|
# next batch of the results.
|
464
500
|
# @return [String]
|
465
501
|
#
|
502
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetDifferencesOutput AWS API Documentation
|
503
|
+
#
|
466
504
|
class GetDifferencesOutput < Struct.new(
|
467
505
|
:differences,
|
468
506
|
:next_token)
|
@@ -482,6 +520,8 @@ module Aws::CodeCommit
|
|
482
520
|
# The name of the repository to get information about.
|
483
521
|
# @return [String]
|
484
522
|
#
|
523
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepositoryInput AWS API Documentation
|
524
|
+
#
|
485
525
|
class GetRepositoryInput < Struct.new(
|
486
526
|
:repository_name)
|
487
527
|
include Aws::Structure
|
@@ -493,6 +533,8 @@ module Aws::CodeCommit
|
|
493
533
|
# Information about the repository.
|
494
534
|
# @return [Types::RepositoryMetadata]
|
495
535
|
#
|
536
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepositoryOutput AWS API Documentation
|
537
|
+
#
|
496
538
|
class GetRepositoryOutput < Struct.new(
|
497
539
|
:repository_metadata)
|
498
540
|
include Aws::Structure
|
@@ -511,6 +553,8 @@ module Aws::CodeCommit
|
|
511
553
|
# The name of the repository for which the trigger is configured.
|
512
554
|
# @return [String]
|
513
555
|
#
|
556
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepositoryTriggersInput AWS API Documentation
|
557
|
+
#
|
514
558
|
class GetRepositoryTriggersInput < Struct.new(
|
515
559
|
:repository_name)
|
516
560
|
include Aws::Structure
|
@@ -526,6 +570,8 @@ module Aws::CodeCommit
|
|
526
570
|
# The JSON block of configuration information for each trigger.
|
527
571
|
# @return [Array<Types::RepositoryTrigger>]
|
528
572
|
#
|
573
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepositoryTriggersOutput AWS API Documentation
|
574
|
+
#
|
529
575
|
class GetRepositoryTriggersOutput < Struct.new(
|
530
576
|
:configuration_id,
|
531
577
|
:triggers)
|
@@ -550,6 +596,8 @@ module Aws::CodeCommit
|
|
550
596
|
# An enumeration token that allows the operation to batch the results.
|
551
597
|
# @return [String]
|
552
598
|
#
|
599
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListBranchesInput AWS API Documentation
|
600
|
+
#
|
553
601
|
class ListBranchesInput < Struct.new(
|
554
602
|
:repository_name,
|
555
603
|
:next_token)
|
@@ -566,6 +614,8 @@ module Aws::CodeCommit
|
|
566
614
|
# An enumeration token that returns the batch of the results.
|
567
615
|
# @return [String]
|
568
616
|
#
|
617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListBranchesOutput AWS API Documentation
|
618
|
+
#
|
569
619
|
class ListBranchesOutput < Struct.new(
|
570
620
|
:branches,
|
571
621
|
:next_token)
|
@@ -600,6 +650,8 @@ module Aws::CodeCommit
|
|
600
650
|
# operation.
|
601
651
|
# @return [String]
|
602
652
|
#
|
653
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListRepositoriesInput AWS API Documentation
|
654
|
+
#
|
603
655
|
class ListRepositoriesInput < Struct.new(
|
604
656
|
:next_token,
|
605
657
|
:sort_by,
|
@@ -620,6 +672,8 @@ module Aws::CodeCommit
|
|
620
672
|
# another page of 1,000 records is retrieved.
|
621
673
|
# @return [String]
|
622
674
|
#
|
675
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListRepositoriesOutput AWS API Documentation
|
676
|
+
#
|
623
677
|
class ListRepositoriesOutput < Struct.new(
|
624
678
|
:repositories,
|
625
679
|
:next_token)
|
@@ -653,6 +707,8 @@ module Aws::CodeCommit
|
|
653
707
|
# The JSON block of configuration information for each trigger.
|
654
708
|
# @return [Array<Types::RepositoryTrigger>]
|
655
709
|
#
|
710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PutRepositoryTriggersInput AWS API Documentation
|
711
|
+
#
|
656
712
|
class PutRepositoryTriggersInput < Struct.new(
|
657
713
|
:repository_name,
|
658
714
|
:triggers)
|
@@ -665,6 +721,8 @@ module Aws::CodeCommit
|
|
665
721
|
# The system-generated unique ID for the create or update operation.
|
666
722
|
# @return [String]
|
667
723
|
#
|
724
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PutRepositoryTriggersOutput AWS API Documentation
|
725
|
+
#
|
668
726
|
class PutRepositoryTriggersOutput < Struct.new(
|
669
727
|
:configuration_id)
|
670
728
|
include Aws::Structure
|
@@ -713,6 +771,8 @@ module Aws::CodeCommit
|
|
713
771
|
# The Amazon Resource Name (ARN) of the repository.
|
714
772
|
# @return [String]
|
715
773
|
#
|
774
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/RepositoryMetadata AWS API Documentation
|
775
|
+
#
|
716
776
|
class RepositoryMetadata < Struct.new(
|
717
777
|
:account_id,
|
718
778
|
:repository_id,
|
@@ -737,6 +797,8 @@ module Aws::CodeCommit
|
|
737
797
|
# The ID associated with the repository.
|
738
798
|
# @return [String]
|
739
799
|
#
|
800
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/RepositoryNameIdPair AWS API Documentation
|
801
|
+
#
|
740
802
|
class RepositoryNameIdPair < Struct.new(
|
741
803
|
:repository_name,
|
742
804
|
:repository_id)
|
@@ -786,6 +848,8 @@ module Aws::CodeCommit
|
|
786
848
|
# </note>
|
787
849
|
# @return [Array<String>]
|
788
850
|
#
|
851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/RepositoryTrigger AWS API Documentation
|
852
|
+
#
|
789
853
|
class RepositoryTrigger < Struct.new(
|
790
854
|
:name,
|
791
855
|
:destination_arn,
|
@@ -805,6 +869,8 @@ module Aws::CodeCommit
|
|
805
869
|
# Additional message information about the trigger that did not run.
|
806
870
|
# @return [String]
|
807
871
|
#
|
872
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/RepositoryTriggerExecutionFailure AWS API Documentation
|
873
|
+
#
|
808
874
|
class RepositoryTriggerExecutionFailure < Struct.new(
|
809
875
|
:trigger,
|
810
876
|
:failure_message)
|
@@ -837,6 +903,8 @@ module Aws::CodeCommit
|
|
837
903
|
# The list of triggers to test.
|
838
904
|
# @return [Array<Types::RepositoryTrigger>]
|
839
905
|
#
|
906
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/TestRepositoryTriggersInput AWS API Documentation
|
907
|
+
#
|
840
908
|
class TestRepositoryTriggersInput < Struct.new(
|
841
909
|
:repository_name,
|
842
910
|
:triggers)
|
@@ -857,6 +925,8 @@ module Aws::CodeCommit
|
|
857
925
|
# separated by commas.
|
858
926
|
# @return [Array<Types::RepositoryTriggerExecutionFailure>]
|
859
927
|
#
|
928
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/TestRepositoryTriggersOutput AWS API Documentation
|
929
|
+
#
|
860
930
|
class TestRepositoryTriggersOutput < Struct.new(
|
861
931
|
:successful_executions,
|
862
932
|
:failed_executions)
|
@@ -881,6 +951,8 @@ module Aws::CodeCommit
|
|
881
951
|
# The name of the branch to set as the default.
|
882
952
|
# @return [String]
|
883
953
|
#
|
954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateDefaultBranchInput AWS API Documentation
|
955
|
+
#
|
884
956
|
class UpdateDefaultBranchInput < Struct.new(
|
885
957
|
:repository_name,
|
886
958
|
:default_branch_name)
|
@@ -907,6 +979,8 @@ module Aws::CodeCommit
|
|
907
979
|
# Repository descriptions are limited to 1,000 characters.
|
908
980
|
# @return [String]
|
909
981
|
#
|
982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateRepositoryDescriptionInput AWS API Documentation
|
983
|
+
#
|
910
984
|
class UpdateRepositoryDescriptionInput < Struct.new(
|
911
985
|
:repository_name,
|
912
986
|
:repository_description)
|
@@ -931,6 +1005,8 @@ module Aws::CodeCommit
|
|
931
1005
|
# The new name for the repository.
|
932
1006
|
# @return [String]
|
933
1007
|
#
|
1008
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateRepositoryNameInput AWS API Documentation
|
1009
|
+
#
|
934
1010
|
class UpdateRepositoryNameInput < Struct.new(
|
935
1011
|
:old_name,
|
936
1012
|
:new_name)
|
@@ -952,6 +1028,8 @@ module Aws::CodeCommit
|
|
952
1028
|
# The date when the specified commit was pushed to the repository.
|
953
1029
|
# @return [String]
|
954
1030
|
#
|
1031
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UserInfo AWS API Documentation
|
1032
|
+
#
|
955
1033
|
class UserInfo < Struct.new(
|
956
1034
|
:name,
|
957
1035
|
:email,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-codecommit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc3
|
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: 2017-
|
11
|
+
date: 2017-04-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|