aws-sdk-directoryservice 1.41.0 → 1.45.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.
@@ -52,6 +52,9 @@ module Aws::DirectoryService
52
52
  CertificatesInfo = Shapes::ListShape.new(name: 'CertificatesInfo')
53
53
  CidrIp = Shapes::StringShape.new(name: 'CidrIp')
54
54
  CidrIps = Shapes::ListShape.new(name: 'CidrIps')
55
+ ClientAuthenticationSettingInfo = Shapes::StructureShape.new(name: 'ClientAuthenticationSettingInfo')
56
+ ClientAuthenticationSettingsInfo = Shapes::ListShape.new(name: 'ClientAuthenticationSettingsInfo')
57
+ ClientAuthenticationStatus = Shapes::StringShape.new(name: 'ClientAuthenticationStatus')
55
58
  ClientAuthenticationType = Shapes::StringShape.new(name: 'ClientAuthenticationType')
56
59
  ClientCertAuthSettings = Shapes::StructureShape.new(name: 'ClientCertAuthSettings')
57
60
  ClientException = Shapes::StructureShape.new(name: 'ClientException')
@@ -102,6 +105,8 @@ module Aws::DirectoryService
102
105
  DeregisterEventTopicResult = Shapes::StructureShape.new(name: 'DeregisterEventTopicResult')
103
106
  DescribeCertificateRequest = Shapes::StructureShape.new(name: 'DescribeCertificateRequest')
104
107
  DescribeCertificateResult = Shapes::StructureShape.new(name: 'DescribeCertificateResult')
108
+ DescribeClientAuthenticationSettingsRequest = Shapes::StructureShape.new(name: 'DescribeClientAuthenticationSettingsRequest')
109
+ DescribeClientAuthenticationSettingsResult = Shapes::StructureShape.new(name: 'DescribeClientAuthenticationSettingsResult')
105
110
  DescribeConditionalForwardersRequest = Shapes::StructureShape.new(name: 'DescribeConditionalForwardersRequest')
106
111
  DescribeConditionalForwardersResult = Shapes::StructureShape.new(name: 'DescribeConditionalForwardersResult')
107
112
  DescribeDirectoriesRequest = Shapes::StructureShape.new(name: 'DescribeDirectoriesRequest')
@@ -428,6 +433,13 @@ module Aws::DirectoryService
428
433
 
429
434
  CidrIps.member = Shapes::ShapeRef.new(shape: CidrIp)
430
435
 
436
+ ClientAuthenticationSettingInfo.add_member(:type, Shapes::ShapeRef.new(shape: ClientAuthenticationType, location_name: "Type"))
437
+ ClientAuthenticationSettingInfo.add_member(:status, Shapes::ShapeRef.new(shape: ClientAuthenticationStatus, location_name: "Status"))
438
+ ClientAuthenticationSettingInfo.add_member(:last_updated_date_time, Shapes::ShapeRef.new(shape: LastUpdatedDateTime, location_name: "LastUpdatedDateTime"))
439
+ ClientAuthenticationSettingInfo.struct_class = Types::ClientAuthenticationSettingInfo
440
+
441
+ ClientAuthenticationSettingsInfo.member = Shapes::ShapeRef.new(shape: ClientAuthenticationSettingInfo)
442
+
431
443
  ClientCertAuthSettings.add_member(:ocsp_url, Shapes::ShapeRef.new(shape: OCSPUrl, location_name: "OCSPUrl"))
432
444
  ClientCertAuthSettings.struct_class = Types::ClientCertAuthSettings
433
445
 
@@ -582,6 +594,16 @@ module Aws::DirectoryService
582
594
  DescribeCertificateResult.add_member(:certificate, Shapes::ShapeRef.new(shape: Certificate, location_name: "Certificate"))
583
595
  DescribeCertificateResult.struct_class = Types::DescribeCertificateResult
584
596
 
597
+ DescribeClientAuthenticationSettingsRequest.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "DirectoryId"))
598
+ DescribeClientAuthenticationSettingsRequest.add_member(:type, Shapes::ShapeRef.new(shape: ClientAuthenticationType, location_name: "Type"))
599
+ DescribeClientAuthenticationSettingsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
600
+ DescribeClientAuthenticationSettingsRequest.add_member(:limit, Shapes::ShapeRef.new(shape: PageLimit, location_name: "Limit"))
601
+ DescribeClientAuthenticationSettingsRequest.struct_class = Types::DescribeClientAuthenticationSettingsRequest
602
+
603
+ DescribeClientAuthenticationSettingsResult.add_member(:client_authentication_settings_info, Shapes::ShapeRef.new(shape: ClientAuthenticationSettingsInfo, location_name: "ClientAuthenticationSettingsInfo"))
604
+ DescribeClientAuthenticationSettingsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
605
+ DescribeClientAuthenticationSettingsResult.struct_class = Types::DescribeClientAuthenticationSettingsResult
606
+
585
607
  DescribeConditionalForwardersRequest.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, required: true, location_name: "DirectoryId"))
586
608
  DescribeConditionalForwardersRequest.add_member(:remote_domain_names, Shapes::ShapeRef.new(shape: RemoteDomainNames, location_name: "RemoteDomainNames"))
587
609
  DescribeConditionalForwardersRequest.struct_class = Types::DescribeConditionalForwardersRequest
@@ -1542,6 +1564,20 @@ module Aws::DirectoryService
1542
1564
  o.errors << Shapes::ShapeRef.new(shape: ServiceException)
1543
1565
  end)
1544
1566
 
1567
+ api.add_operation(:describe_client_authentication_settings, Seahorse::Model::Operation.new.tap do |o|
1568
+ o.name = "DescribeClientAuthenticationSettings"
1569
+ o.http_method = "POST"
1570
+ o.http_request_uri = "/"
1571
+ o.input = Shapes::ShapeRef.new(shape: DescribeClientAuthenticationSettingsRequest)
1572
+ o.output = Shapes::ShapeRef.new(shape: DescribeClientAuthenticationSettingsResult)
1573
+ o.errors << Shapes::ShapeRef.new(shape: DirectoryDoesNotExistException)
1574
+ o.errors << Shapes::ShapeRef.new(shape: UnsupportedOperationException)
1575
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1576
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
1577
+ o.errors << Shapes::ShapeRef.new(shape: ClientException)
1578
+ o.errors << Shapes::ShapeRef.new(shape: ServiceException)
1579
+ end)
1580
+
1545
1581
  api.add_operation(:describe_conditional_forwarders, Seahorse::Model::Operation.new.tap do |o|
1546
1582
  o.name = "DescribeConditionalForwarders"
1547
1583
  o.http_method = "POST"