aws-sdk-core 2.11.162 → 2.11.163

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4233a69668cf203fd44c21add7a8d3d917047ae1
4
- data.tar.gz: d85db8068db8ffe6a1ac7d15a970abde9a6767db
3
+ metadata.gz: 2223ca0930e6a4b93ba227b941303833f422027a
4
+ data.tar.gz: e3b0d397adc38eb798946dd9a22a2ab11009a5f4
5
5
  SHA512:
6
- metadata.gz: 4eb091d79fcd3f9f1ce49c45bf027c23ed078f15c3542f06e2c54b13cedb728a55a67bb170e646da7f898952b0f6b1542ac0578d7f5e44572a4b2fc1fd78dc96
7
- data.tar.gz: fd0392b89918ec922b0763f7bb0d9acfbaefdf48cb3e25400bb87448c7ddcf8a0615c0251c6314ea8a33dbbfdd5b7d286697bdc11798619ef0e29924eade7ce8
6
+ metadata.gz: 6dc1934000240906b2df3e3b0f6d94312f5f86ae2536d961a74ebd6ee4a1fedeff150aa2df78052c0217201b0371102de85fc5295e7ef0725b465d50bf967cf6
7
+ data.tar.gz: 1c01e25eab590ad34bd708a2f02026b24cd643744354bfaf1c262f8616bbee1401ed235f8bb8050605ab46cd936687a85deecc5f3f5ac34f4c64d8cc3637ad1e
@@ -5,6 +5,7 @@
5
5
  "endpointPrefix":"clouddirectory",
6
6
  "protocol":"rest-json",
7
7
  "serviceFullName":"Amazon CloudDirectory",
8
+ "serviceId":"CloudDirectory",
8
9
  "signatureVersion":"v4",
9
10
  "signingName":"clouddirectory",
10
11
  "uid":"clouddirectory-2017-01-11"
@@ -1579,9 +1580,9 @@
1579
1580
  },
1580
1581
  "AttributeName":{
1581
1582
  "type":"string",
1582
- "max":64,
1583
+ "max":230,
1583
1584
  "min":1,
1584
- "pattern":"^[a-zA-Z0-9._-]*$"
1585
+ "pattern":"^[a-zA-Z0-9._:-]*$"
1585
1586
  },
1586
1587
  "AttributeNameAndValue":{
1587
1588
  "type":"structure",
@@ -1958,6 +1959,22 @@
1958
1959
  "NextToken":{"shape":"NextToken"}
1959
1960
  }
1960
1961
  },
1962
+ "BatchListObjectParents":{
1963
+ "type":"structure",
1964
+ "required":["ObjectReference"],
1965
+ "members":{
1966
+ "ObjectReference":{"shape":"ObjectReference"},
1967
+ "NextToken":{"shape":"NextToken"},
1968
+ "MaxResults":{"shape":"NumberResults"}
1969
+ }
1970
+ },
1971
+ "BatchListObjectParentsResponse":{
1972
+ "type":"structure",
1973
+ "members":{
1974
+ "ParentLinks":{"shape":"ObjectIdentifierAndLinkNameList"},
1975
+ "NextToken":{"shape":"NextToken"}
1976
+ }
1977
+ },
1961
1978
  "BatchListObjectPolicies":{
1962
1979
  "type":"structure",
1963
1980
  "required":["ObjectReference"],
@@ -2059,6 +2076,7 @@
2059
2076
  "ListObjectParentPaths":{"shape":"BatchListObjectParentPaths"},
2060
2077
  "GetObjectInformation":{"shape":"BatchGetObjectInformation"},
2061
2078
  "GetObjectAttributes":{"shape":"BatchGetObjectAttributes"},
2079
+ "ListObjectParents":{"shape":"BatchListObjectParents"},
2062
2080
  "ListObjectPolicies":{"shape":"BatchListObjectPolicies"},
2063
2081
  "ListPolicyAttachments":{"shape":"BatchListPolicyAttachments"},
2064
2082
  "LookupPolicy":{"shape":"BatchLookupPolicy"},
@@ -2124,7 +2142,8 @@
2124
2142
  "ListIndex":{"shape":"BatchListIndexResponse"},
2125
2143
  "ListOutgoingTypedLinks":{"shape":"BatchListOutgoingTypedLinksResponse"},
2126
2144
  "ListIncomingTypedLinks":{"shape":"BatchListIncomingTypedLinksResponse"},
2127
- "GetLinkAttributes":{"shape":"BatchGetLinkAttributesResponse"}
2145
+ "GetLinkAttributes":{"shape":"BatchGetLinkAttributesResponse"},
2146
+ "ListObjectParents":{"shape":"BatchListObjectParentsResponse"}
2128
2147
  }
2129
2148
  },
2130
2149
  "BatchReferenceName":{"type":"string"},
@@ -3424,14 +3443,16 @@
3424
3443
  "shape":"ConsistencyLevel",
3425
3444
  "location":"header",
3426
3445
  "locationName":"x-amz-consistency-level"
3427
- }
3446
+ },
3447
+ "IncludeAllLinksToEachParent":{"shape":"Bool"}
3428
3448
  }
3429
3449
  },
3430
3450
  "ListObjectParentsResponse":{
3431
3451
  "type":"structure",
3432
3452
  "members":{
3433
3453
  "Parents":{"shape":"ObjectIdentifierToLinkNameMap"},
3434
- "NextToken":{"shape":"NextToken"}
3454
+ "NextToken":{"shape":"NextToken"},
3455
+ "ParentLinks":{"shape":"ObjectIdentifierAndLinkNameList"}
3435
3456
  }
3436
3457
  },
3437
3458
  "ListObjectPoliciesRequest":{
@@ -3686,6 +3707,17 @@
3686
3707
  "member":{"shape":"ObjectAttributeUpdate"}
3687
3708
  },
3688
3709
  "ObjectIdentifier":{"type":"string"},
3710
+ "ObjectIdentifierAndLinkNameList":{
3711
+ "type":"list",
3712
+ "member":{"shape":"ObjectIdentifierAndLinkNameTuple"}
3713
+ },
3714
+ "ObjectIdentifierAndLinkNameTuple":{
3715
+ "type":"structure",
3716
+ "members":{
3717
+ "ObjectIdentifier":{"shape":"ObjectIdentifier"},
3718
+ "LinkName":{"shape":"LinkName"}
3719
+ }
3720
+ },
3689
3721
  "ObjectIdentifierList":{
3690
3722
  "type":"list",
3691
3723
  "member":{"shape":"ObjectIdentifier"}
@@ -976,7 +976,8 @@
976
976
  "type":"structure",
977
977
  "members":{
978
978
  "Labels":{"shape":"Labels"},
979
- "OrientationCorrection":{"shape":"OrientationCorrection"}
979
+ "OrientationCorrection":{"shape":"OrientationCorrection"},
980
+ "LabelModelVersion":{"shape":"String"}
980
981
  }
981
982
  },
982
983
  "DetectModerationLabelsRequest":{
@@ -1370,6 +1371,17 @@
1370
1371
  "UnindexedFaces":{"shape":"UnindexedFaces"}
1371
1372
  }
1372
1373
  },
1374
+ "Instance":{
1375
+ "type":"structure",
1376
+ "members":{
1377
+ "BoundingBox":{"shape":"BoundingBox"},
1378
+ "Confidence":{"shape":"Percent"}
1379
+ }
1380
+ },
1381
+ "Instances":{
1382
+ "type":"list",
1383
+ "member":{"shape":"Instance"}
1384
+ },
1373
1385
  "InternalServerError":{
1374
1386
  "type":"structure",
1375
1387
  "members":{
@@ -1437,7 +1449,9 @@
1437
1449
  "type":"structure",
1438
1450
  "members":{
1439
1451
  "Name":{"shape":"String"},
1440
- "Confidence":{"shape":"Percent"}
1452
+ "Confidence":{"shape":"Percent"},
1453
+ "Instances":{"shape":"Instances"},
1454
+ "Parents":{"shape":"Parents"}
1441
1455
  }
1442
1456
  },
1443
1457
  "LabelDetection":{
@@ -1624,6 +1638,16 @@
1624
1638
  "type":"string",
1625
1639
  "max":255
1626
1640
  },
1641
+ "Parent":{
1642
+ "type":"structure",
1643
+ "members":{
1644
+ "Name":{"shape":"String"}
1645
+ }
1646
+ },
1647
+ "Parents":{
1648
+ "type":"list",
1649
+ "member":{"shape":"Parent"}
1650
+ },
1627
1651
  "Percent":{
1628
1652
  "type":"float",
1629
1653
  "max":100,
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.162'
2
+ VERSION = '2.11.163'
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.162
4
+ version: 2.11.163
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-11-01 00:00:00.000000000 Z
11
+ date: 2018-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath