aws-sdk-core 2.11.338 → 2.11.339

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
  SHA1:
3
- metadata.gz: 65ab1a64aedf71bd9fe23f52c2332061e8bd3870
4
- data.tar.gz: c0449386b412ceca9a5c2aafc4b1b7d97a10af62
3
+ metadata.gz: 05ad7f4bd47bd6a526dad94be23f0642cc93e5cf
4
+ data.tar.gz: 7024a8c200734078bd946121031bdb923c4145e4
5
5
  SHA512:
6
- metadata.gz: 71db8d098a8739d3f0caa7abdc22dd5ac3f50e7c2ae00df22c322d46568b42f4539f79bcc613c15653797ca501f3877a57060a7f9bb54539012851aee2b23182
7
- data.tar.gz: a44318162f8e8edbcbbfe5bdbd92b2be2b8da29f2140e03da1baa2bdb0f9f3242dfc31a39493f9d03ddd6f8687a0c12424f056969e9b25f14a7230c8c8a7e2e0
6
+ metadata.gz: 35649831d7df247479bd0e5600dc22cce617f9af6c964488d6abb26f696e7518e62c3895e968cf028274fde4d54efa1e012e2547f970b2781751157936eb664b
7
+ data.tar.gz: 03bb91ed4c34c87cafcb330051ad7b90daa0aedb4a61a8cab17e39604c827ca90ae4000da2abb4cf549494192953de54535f79c43b4831423ea989bc4c7ead98
@@ -79,6 +79,19 @@
79
79
  {"shape":"InternalException"}
80
80
  ]
81
81
  },
82
+ "CreateLocationSmb":{
83
+ "name":"CreateLocationSmb",
84
+ "http":{
85
+ "method":"POST",
86
+ "requestUri":"/"
87
+ },
88
+ "input":{"shape":"CreateLocationSmbRequest"},
89
+ "output":{"shape":"CreateLocationSmbResponse"},
90
+ "errors":[
91
+ {"shape":"InvalidRequestException"},
92
+ {"shape":"InternalException"}
93
+ ]
94
+ },
82
95
  "CreateTask":{
83
96
  "name":"CreateTask",
84
97
  "http":{
@@ -183,6 +196,19 @@
183
196
  {"shape":"InternalException"}
184
197
  ]
185
198
  },
199
+ "DescribeLocationSmb":{
200
+ "name":"DescribeLocationSmb",
201
+ "http":{
202
+ "method":"POST",
203
+ "requestUri":"/"
204
+ },
205
+ "input":{"shape":"DescribeLocationSmbRequest"},
206
+ "output":{"shape":"DescribeLocationSmbResponse"},
207
+ "errors":[
208
+ {"shape":"InvalidRequestException"},
209
+ {"shape":"InternalException"}
210
+ ]
211
+ },
186
212
  "DescribeTask":{
187
213
  "name":"DescribeTask",
188
214
  "http":{
@@ -476,6 +502,32 @@
476
502
  "LocationArn":{"shape":"LocationArn"}
477
503
  }
478
504
  },
505
+ "CreateLocationSmbRequest":{
506
+ "type":"structure",
507
+ "required":[
508
+ "Subdirectory",
509
+ "ServerHostname",
510
+ "User",
511
+ "Password",
512
+ "AgentArns"
513
+ ],
514
+ "members":{
515
+ "Subdirectory":{"shape":"NonEmptySubdirectory"},
516
+ "ServerHostname":{"shape":"ServerHostname"},
517
+ "User":{"shape":"SmbUser"},
518
+ "Domain":{"shape":"SmbDomain"},
519
+ "Password":{"shape":"SmbPassword"},
520
+ "AgentArns":{"shape":"AgentArnList"},
521
+ "MountOptions":{"shape":"SmbMountOptions"},
522
+ "Tags":{"shape":"TagList"}
523
+ }
524
+ },
525
+ "CreateLocationSmbResponse":{
526
+ "type":"structure",
527
+ "members":{
528
+ "LocationArn":{"shape":"LocationArn"}
529
+ }
530
+ },
479
531
  "CreateTaskRequest":{
480
532
  "type":"structure",
481
533
  "required":[
@@ -602,6 +654,25 @@
602
654
  "CreationTime":{"shape":"Time"}
603
655
  }
604
656
  },
657
+ "DescribeLocationSmbRequest":{
658
+ "type":"structure",
659
+ "required":["LocationArn"],
660
+ "members":{
661
+ "LocationArn":{"shape":"LocationArn"}
662
+ }
663
+ },
664
+ "DescribeLocationSmbResponse":{
665
+ "type":"structure",
666
+ "members":{
667
+ "LocationArn":{"shape":"LocationArn"},
668
+ "LocationUri":{"shape":"LocationUri"},
669
+ "AgentArns":{"shape":"AgentArnList"},
670
+ "User":{"shape":"SmbUser"},
671
+ "Domain":{"shape":"SmbDomain"},
672
+ "MountOptions":{"shape":"SmbMountOptions"},
673
+ "CreationTime":{"shape":"Time"}
674
+ }
675
+ },
605
676
  "DescribeTaskExecutionRequest":{
606
677
  "type":"structure",
607
678
  "required":["TaskExecutionArn"],
@@ -851,7 +922,8 @@
851
922
  },
852
923
  "LocationUri":{
853
924
  "type":"string",
854
- "pattern":"(efs|nfs|s3)://[a-zA-Z0-9.\\-]+"
925
+ "max":4355,
926
+ "pattern":"^(efs|nfs|s3|smb)://[a-zA-Z0-9.\\-]+$"
855
927
  },
856
928
  "LogGroupArn":{
857
929
  "type":"string",
@@ -989,6 +1061,35 @@
989
1061
  "max":255,
990
1062
  "pattern":"^(([a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9\\-]*[A-Za-z0-9])$"
991
1063
  },
1064
+ "SmbDomain":{
1065
+ "type":"string",
1066
+ "max":253,
1067
+ "pattern":"^([A-Za-z0-9]+[A-Za-z0-9-.]*)*[A-Za-z0-9-]*[A-Za-z0-9]$"
1068
+ },
1069
+ "SmbMountOptions":{
1070
+ "type":"structure",
1071
+ "members":{
1072
+ "Version":{"shape":"SmbVersion"}
1073
+ }
1074
+ },
1075
+ "SmbPassword":{
1076
+ "type":"string",
1077
+ "max":104,
1078
+ "pattern":"^.{0,104}$"
1079
+ },
1080
+ "SmbUser":{
1081
+ "type":"string",
1082
+ "max":104,
1083
+ "pattern":"^[^\\\\x5B\\\\x5D\\\\/:;|=,+*?]{1,104}$"
1084
+ },
1085
+ "SmbVersion":{
1086
+ "type":"string",
1087
+ "enum":[
1088
+ "AUTOMATIC",
1089
+ "SMB2",
1090
+ "SMB3"
1091
+ ]
1092
+ },
992
1093
  "SourceNetworkInterfaceArns":{
993
1094
  "type":"list",
994
1095
  "member":{"shape":"NetworkInterfaceArn"}
@@ -2385,6 +2385,7 @@
2385
2385
  "ScalingConfiguration":{"shape":"ScalingConfiguration"},
2386
2386
  "DeletionProtection":{"shape":"BooleanOptional"},
2387
2387
  "GlobalClusterIdentifier":{"shape":"String"},
2388
+ "EnableHttpEndpoint":{"shape":"BooleanOptional"},
2388
2389
  "CopyTagsToSnapshot":{"shape":"BooleanOptional"}
2389
2390
  }
2390
2391
  },
@@ -1994,6 +1994,7 @@
1994
1994
  "ap-southeast-1" : { },
1995
1995
  "ap-southeast-2" : { },
1996
1996
  "eu-central-1" : { },
1997
+ "eu-north-1" : { },
1997
1998
  "eu-west-1" : { },
1998
1999
  "eu-west-2" : { },
1999
2000
  "eu-west-3" : { },
@@ -4339,6 +4340,12 @@
4339
4340
  },
4340
4341
  "neptune" : {
4341
4342
  "endpoints" : {
4343
+ "us-gov-east-1" : {
4344
+ "credentialScope" : {
4345
+ "region" : "us-gov-east-1"
4346
+ },
4347
+ "hostname" : "rds.us-gov-east-1.amazonaws.com"
4348
+ },
4342
4349
  "us-gov-west-1" : {
4343
4350
  "credentialScope" : {
4344
4351
  "region" : "us-gov-west-1"
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.338'
2
+ VERSION = '2.11.339'
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.338
4
+ version: 2.11.339
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: 2019-08-21 00:00:00.000000000 Z
11
+ date: 2019-08-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath