aws-sdk-core 2.11.156 → 2.11.157

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListConferenceProviders": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
3
8
  "ListDeviceEvents": {
4
9
  "input_token": "NextToken",
5
10
  "output_token": "NextToken",
@@ -10,6 +15,21 @@
10
15
  "output_token": "NextToken",
11
16
  "limit_key": "MaxResults"
12
17
  },
18
+ "ListSkillsStoreCategories": {
19
+ "input_token": "NextToken",
20
+ "output_token": "NextToken",
21
+ "limit_key": "MaxResults"
22
+ },
23
+ "ListSkillsStoreSkillsByCategory": {
24
+ "input_token": "NextToken",
25
+ "output_token": "NextToken",
26
+ "limit_key": "MaxResults"
27
+ },
28
+ "ListSmartHomeAppliances": {
29
+ "input_token": "NextToken",
30
+ "output_token": "NextToken",
31
+ "limit_key": "MaxResults"
32
+ },
13
33
  "ListTags": {
14
34
  "input_token": "NextToken",
15
35
  "output_token": "NextToken",
@@ -300,12 +300,50 @@
300
300
  "clientRequestToken":{"shape":"ClientRequestToken"}
301
301
  }
302
302
  },
303
+ "BucketKey":{"type":"string"},
304
+ "BucketName":{
305
+ "type":"string",
306
+ "max":63,
307
+ "min":3
308
+ },
303
309
  "ClientRequestToken":{
304
310
  "type":"string",
305
311
  "max":256,
306
312
  "min":1,
307
313
  "pattern":"^[\\w:/-]+$"
308
314
  },
315
+ "Code":{
316
+ "type":"structure",
317
+ "required":[
318
+ "source",
319
+ "destination"
320
+ ],
321
+ "members":{
322
+ "source":{"shape":"CodeSource"},
323
+ "destination":{"shape":"CodeDestination"}
324
+ }
325
+ },
326
+ "CodeCommitCodeDestination":{
327
+ "type":"structure",
328
+ "required":["name"],
329
+ "members":{
330
+ "name":{"shape":"RepositoryName"}
331
+ }
332
+ },
333
+ "CodeDestination":{
334
+ "type":"structure",
335
+ "members":{
336
+ "codeCommit":{"shape":"CodeCommitCodeDestination"},
337
+ "gitHub":{"shape":"GitHubCodeDestination"}
338
+ }
339
+ },
340
+ "CodeSource":{
341
+ "type":"structure",
342
+ "required":["s3"],
343
+ "members":{
344
+ "s3":{"shape":"S3Location"}
345
+ }
346
+ },
309
347
  "ConcurrentModificationException":{
310
348
  "type":"structure",
311
349
  "members":{
@@ -323,6 +361,8 @@
323
361
  "id":{"shape":"ProjectId"},
324
362
  "description":{"shape":"ProjectDescription"},
325
363
  "clientRequestToken":{"shape":"ClientRequestToken"},
364
+ "sourceCode":{"shape":"SourceCode"},
365
+ "toolchain":{"shape":"Toolchain"},
326
366
  "tags":{"shape":"Tags"}
327
367
  }
328
368
  },
@@ -464,6 +504,31 @@
464
504
  "pattern":"^[\\w-.+]+@[\\w-.+]+$",
465
505
  "sensitive":true
466
506
  },
507
+ "GitHubCodeDestination":{
508
+ "type":"structure",
509
+ "required":[
510
+ "name",
511
+ "type",
512
+ "owner",
513
+ "privateRepository",
514
+ "issuesEnabled",
515
+ "token"
516
+ ],
517
+ "members":{
518
+ "name":{"shape":"RepositoryName"},
519
+ "description":{"shape":"RepositoryDescription"},
520
+ "type":{"shape":"RepositoryType"},
521
+ "owner":{"shape":"RepositoryOwner"},
522
+ "privateRepository":{"shape":"RepositoryIsPrivate"},
523
+ "issuesEnabled":{"shape":"RepositoryEnableIssues"},
524
+ "token":{"shape":"GitHubPersonalToken"}
525
+ }
526
+ },
527
+ "GitHubPersonalToken":{
528
+ "type":"string",
529
+ "min":1,
530
+ "sensitive":true
531
+ },
467
532
  "InvalidNextTokenException":{
468
533
  "type":"structure",
469
534
  "members":{
@@ -665,6 +730,30 @@
665
730
  "pattern":"^$|^\\S(.*\\S)?$"
666
731
  },
667
732
  "RemoteAccessAllowed":{"type":"boolean"},
733
+ "RepositoryDescription":{
734
+ "type":"string",
735
+ "max":1000,
736
+ "min":1,
737
+ "pattern":"^\\S(.*\\S)?$"
738
+ },
739
+ "RepositoryEnableIssues":{"type":"boolean"},
740
+ "RepositoryIsPrivate":{"type":"boolean"},
741
+ "RepositoryName":{
742
+ "type":"string",
743
+ "max":100,
744
+ "min":1,
745
+ "pattern":"^\\S[\\w.-]*$"
746
+ },
747
+ "RepositoryOwner":{
748
+ "type":"string",
749
+ "max":100,
750
+ "min":1,
751
+ "pattern":"^\\S(.*\\S)?$"
752
+ },
753
+ "RepositoryType":{
754
+ "type":"string",
755
+ "pattern":"^(user|organization|User|Organization)$"
756
+ },
668
757
  "Resource":{
669
758
  "type":"structure",
670
759
  "required":["id"],
@@ -685,6 +774,22 @@
685
774
  "type":"string",
686
775
  "pattern":"^(Owner|Viewer|Contributor)$"
687
776
  },
777
+ "RoleArn":{
778
+ "type":"string",
779
+ "max":1224,
780
+ "min":1
781
+ },
782
+ "S3Location":{
783
+ "type":"structure",
784
+ "members":{
785
+ "bucketName":{"shape":"BucketName"},
786
+ "bucketKey":{"shape":"BucketKey"}
787
+ }
788
+ },
789
+ "SourceCode":{
790
+ "type":"list",
791
+ "member":{"shape":"Code"}
792
+ },
688
793
  "SshPublicKey":{
689
794
  "type":"string",
690
795
  "max":16384,
@@ -766,6 +871,41 @@
766
871
  "type":"list",
767
872
  "member":{"shape":"TeamMember"}
768
873
  },
874
+ "TemplateParameterKey":{
875
+ "type":"string",
876
+ "max":30,
877
+ "min":1,
878
+ "pattern":"^\\S(.*\\S)?$"
879
+ },
880
+ "TemplateParameterMap":{
881
+ "type":"map",
882
+ "key":{"shape":"TemplateParameterKey"},
883
+ "value":{"shape":"TemplateParameterValue"},
884
+ "max":25
885
+ },
886
+ "TemplateParameterValue":{
887
+ "type":"string",
888
+ "max":100,
889
+ "min":1,
890
+ "pattern":"^\\S(.*\\S)?$",
891
+ "sensitive":true
892
+ },
893
+ "Toolchain":{
894
+ "type":"structure",
895
+ "required":["source"],
896
+ "members":{
897
+ "source":{"shape":"ToolchainSource"},
898
+ "roleArn":{"shape":"RoleArn"},
899
+ "stackParameters":{"shape":"TemplateParameterMap"}
900
+ }
901
+ },
902
+ "ToolchainSource":{
903
+ "type":"structure",
904
+ "required":["s3"],
905
+ "members":{
906
+ "s3":{"shape":"S3Location"}
907
+ }
908
+ },
769
909
  "UntagProjectRequest":{
770
910
  "type":"structure",
771
911
  "required":[
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.156'
2
+ VERSION = '2.11.157'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.156
4
+ version: 2.11.157
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-10-23 00:00:00.000000000 Z
11
+ date: 2018-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath