aws-sdk-directoryservice 1.24.0 → 1.25.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13683781d1023da18e0437b6a571001dbe05ecac
|
4
|
+
data.tar.gz: 8a61f6e7376a5915db053ca5905ec8da5f57ff91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ca4aa67e40f5c4d7317d219ab524c2ebe5da8e3c948c35f60fb44f190538f8145cb5daaeae8461813ec522f29b79964ec7ce107631984d9d585de3da4046747
|
7
|
+
data.tar.gz: 7b1351944e961072e7c1a333b43e669fa7469411ea104366059c8b7db66107c7a4fc30d0f6f9db346477bb47bd96667d90910ca471f3ad9c88e1f9852a0e2c5e
|
@@ -1494,8 +1494,8 @@ module Aws::DirectoryService
|
|
1494
1494
|
# The identifier of the directory.
|
1495
1495
|
#
|
1496
1496
|
# @option params [String] :type
|
1497
|
-
# The type of LDAP security
|
1498
|
-
#
|
1497
|
+
# The type of LDAP security to enable. Currently only the value `Client`
|
1498
|
+
# is supported.
|
1499
1499
|
#
|
1500
1500
|
# @option params [String] :next_token
|
1501
1501
|
# The type of next token used for pagination.
|
@@ -1718,9 +1718,8 @@ module Aws::DirectoryService
|
|
1718
1718
|
# The identifier of the directory.
|
1719
1719
|
#
|
1720
1720
|
# @option params [required, String] :type
|
1721
|
-
# The type of LDAP security
|
1722
|
-
#
|
1723
|
-
# default `Client` is supported.
|
1721
|
+
# The type of LDAP security to enable. Currently only the value `Client`
|
1722
|
+
# is supported.
|
1724
1723
|
#
|
1725
1724
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1726
1725
|
#
|
@@ -1811,9 +1810,8 @@ module Aws::DirectoryService
|
|
1811
1810
|
# The identifier of the directory.
|
1812
1811
|
#
|
1813
1812
|
# @option params [required, String] :type
|
1814
|
-
# The type of LDAP security
|
1815
|
-
#
|
1816
|
-
# `Client` is supported.
|
1813
|
+
# The type of LDAP security to enable. Currently only the value `Client`
|
1814
|
+
# is supported.
|
1817
1815
|
#
|
1818
1816
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1819
1817
|
#
|
@@ -2005,6 +2003,7 @@ module Aws::DirectoryService
|
|
2005
2003
|
# resp.certificates_info[0].certificate_id #=> String
|
2006
2004
|
# resp.certificates_info[0].common_name #=> String
|
2007
2005
|
# resp.certificates_info[0].state #=> String, one of "Registering", "Registered", "RegisterFailed", "Deregistering", "Deregistered", "DeregisterFailed"
|
2006
|
+
# resp.certificates_info[0].expiry_date_time #=> Time
|
2008
2007
|
#
|
2009
2008
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/ListCertificates AWS API Documentation
|
2010
2009
|
#
|
@@ -2760,7 +2759,7 @@ module Aws::DirectoryService
|
|
2760
2759
|
params: params,
|
2761
2760
|
config: config)
|
2762
2761
|
context[:gem_name] = 'aws-sdk-directoryservice'
|
2763
|
-
context[:gem_version] = '1.
|
2762
|
+
context[:gem_version] = '1.25.0'
|
2764
2763
|
Seahorse::Client::Request.new(handlers, context)
|
2765
2764
|
end
|
2766
2765
|
|
@@ -380,6 +380,7 @@ module Aws::DirectoryService
|
|
380
380
|
CertificateInfo.add_member(:certificate_id, Shapes::ShapeRef.new(shape: CertificateId, location_name: "CertificateId"))
|
381
381
|
CertificateInfo.add_member(:common_name, Shapes::ShapeRef.new(shape: CertificateCN, location_name: "CommonName"))
|
382
382
|
CertificateInfo.add_member(:state, Shapes::ShapeRef.new(shape: CertificateState, location_name: "State"))
|
383
|
+
CertificateInfo.add_member(:expiry_date_time, Shapes::ShapeRef.new(shape: CertificateExpiryDateTime, location_name: "ExpiryDateTime"))
|
383
384
|
CertificateInfo.struct_class = Types::CertificateInfo
|
384
385
|
|
385
386
|
CertificateLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ExceptionMessage, location_name: "Message"))
|
@@ -374,12 +374,17 @@ module Aws::DirectoryService
|
|
374
374
|
# The state of the certificate.
|
375
375
|
# @return [String]
|
376
376
|
#
|
377
|
+
# @!attribute [rw] expiry_date_time
|
378
|
+
# The date and time when the certificate will expire.
|
379
|
+
# @return [Time]
|
380
|
+
#
|
377
381
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/CertificateInfo AWS API Documentation
|
378
382
|
#
|
379
383
|
class CertificateInfo < Struct.new(
|
380
384
|
:certificate_id,
|
381
385
|
:common_name,
|
382
|
-
:state
|
386
|
+
:state,
|
387
|
+
:expiry_date_time)
|
383
388
|
include Aws::Structure
|
384
389
|
end
|
385
390
|
|
@@ -1526,8 +1531,8 @@ module Aws::DirectoryService
|
|
1526
1531
|
# @return [String]
|
1527
1532
|
#
|
1528
1533
|
# @!attribute [rw] type
|
1529
|
-
# The type of LDAP security
|
1530
|
-
#
|
1534
|
+
# The type of LDAP security to enable. Currently only the value
|
1535
|
+
# `Client` is supported.
|
1531
1536
|
# @return [String]
|
1532
1537
|
#
|
1533
1538
|
# @!attribute [rw] next_token
|
@@ -2222,9 +2227,8 @@ module Aws::DirectoryService
|
|
2222
2227
|
# @return [String]
|
2223
2228
|
#
|
2224
2229
|
# @!attribute [rw] type
|
2225
|
-
# The type of LDAP security
|
2226
|
-
#
|
2227
|
-
# default `Client` is supported.
|
2230
|
+
# The type of LDAP security to enable. Currently only the value
|
2231
|
+
# `Client` is supported.
|
2228
2232
|
# @return [String]
|
2229
2233
|
#
|
2230
2234
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/DisableLDAPSRequest AWS API Documentation
|
@@ -2406,8 +2410,7 @@ module Aws::DirectoryService
|
|
2406
2410
|
# @return [String]
|
2407
2411
|
#
|
2408
2412
|
# @!attribute [rw] type
|
2409
|
-
# The type of LDAP security
|
2410
|
-
# can be either server or client, but currently only the default
|
2413
|
+
# The type of LDAP security to enable. Currently only the value
|
2411
2414
|
# `Client` is supported.
|
2412
2415
|
# @return [String]
|
2413
2416
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-directoryservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.25.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: 2020-
|
11
|
+
date: 2020-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|