aws-sdk-directoryservice 1.11.0 → 1.12.0

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: cc7433cf6e92ab4a59a6d103918a9b04175fc148
4
- data.tar.gz: b4b31a2373f86afe325278540a2861210c08b243
3
+ metadata.gz: 909988c72fd5442aa1aa575ba6b26d7c156a46c4
4
+ data.tar.gz: '081c74fc14ed01dcd14b609bb7d3777cef86c117'
5
5
  SHA512:
6
- metadata.gz: 56f05d501e64167a52526c84f330800242547be75f810bd3a527f832ca8e1e7a2477ba5f917684d380f75645bd8bd4cdf484d8e56c4248f216dbf503557b7fb9
7
- data.tar.gz: 526910fcdcab57d9d2158eb573d21fe384cbc18ae48921167eaca4f50fe445489507d59a63095b4581f8ad9270f3fecb00eebe01f97eee4603517973c9aef93f
6
+ metadata.gz: f57cfc7867d0ba8a6cde1c41d3cb38da01aa8e7084d2aa8cb950103bc533c3cf84d26ae725f9d4ff425d23cd9714a455c9717b357550cd5ac5d6c3cf11adc4ed
7
+ data.tar.gz: 3263401430cf3e0cf9dbed98d4c922a3ed87168fd502f34f3cf98177d1c285cc6bfe3fb27e052acaa027ba117067b519b2ed853521366db69f249128940e28c3
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-directoryservice/customizations'
42
42
  # @service
43
43
  module Aws::DirectoryService
44
44
 
45
- GEM_VERSION = '1.11.0'
45
+ GEM_VERSION = '1.12.0'
46
46
 
47
47
  end
@@ -452,6 +452,9 @@ module Aws::DirectoryService
452
452
  # A DirectoryConnectSettings object that contains additional information
453
453
  # for the operation.
454
454
  #
455
+ # @option params [Array<Types::Tag>] :tags
456
+ # The tags to be assigned to AD Connector.
457
+ #
455
458
  # @return [Types::ConnectDirectoryResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
456
459
  #
457
460
  # * {Types::ConnectDirectoryResult#directory_id #directory_id} => String
@@ -470,6 +473,12 @@ module Aws::DirectoryService
470
473
  # customer_dns_ips: ["IpAddr"], # required
471
474
  # customer_user_name: "UserName", # required
472
475
  # },
476
+ # tags: [
477
+ # {
478
+ # key: "TagKey", # required
479
+ # value: "TagValue", # required
480
+ # },
481
+ # ],
473
482
  # })
474
483
  #
475
484
  # @example Response structure
@@ -657,6 +666,9 @@ module Aws::DirectoryService
657
666
  # A DirectoryVpcSettings object that contains additional information for
658
667
  # the operation.
659
668
  #
669
+ # @option params [Array<Types::Tag>] :tags
670
+ # The tags to be assigned to the Simple AD directory.
671
+ #
660
672
  # @return [Types::CreateDirectoryResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
661
673
  #
662
674
  # * {Types::CreateDirectoryResult#directory_id #directory_id} => String
@@ -673,6 +685,12 @@ module Aws::DirectoryService
673
685
  # vpc_id: "VpcId", # required
674
686
  # subnet_ids: ["SubnetId"], # required
675
687
  # },
688
+ # tags: [
689
+ # {
690
+ # key: "TagKey", # required
691
+ # value: "TagValue", # required
692
+ # },
693
+ # ],
676
694
  # })
677
695
  #
678
696
  # @example Response structure
@@ -756,6 +774,9 @@ module Aws::DirectoryService
756
774
  # AWS Managed Microsoft AD is available in two editions: Standard and
757
775
  # Enterprise. Enterprise is the default.
758
776
  #
777
+ # @option params [Array<Types::Tag>] :tags
778
+ # The tags to be assigned to the AWS Managed Microsoft AD directory.
779
+ #
759
780
  # @return [Types::CreateMicrosoftADResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
760
781
  #
761
782
  # * {Types::CreateMicrosoftADResult#directory_id #directory_id} => String
@@ -772,6 +793,12 @@ module Aws::DirectoryService
772
793
  # subnet_ids: ["SubnetId"], # required
773
794
  # },
774
795
  # edition: "Enterprise", # accepts Enterprise, Standard
796
+ # tags: [
797
+ # {
798
+ # key: "TagKey", # required
799
+ # value: "TagValue", # required
800
+ # },
801
+ # ],
775
802
  # })
776
803
  #
777
804
  # @example Response structure
@@ -2408,7 +2435,7 @@ module Aws::DirectoryService
2408
2435
  params: params,
2409
2436
  config: config)
2410
2437
  context[:gem_name] = 'aws-sdk-directoryservice'
2411
- context[:gem_version] = '1.11.0'
2438
+ context[:gem_version] = '1.12.0'
2412
2439
  Seahorse::Client::Request.new(handlers, context)
2413
2440
  end
2414
2441
 
@@ -331,6 +331,7 @@ module Aws::DirectoryService
331
331
  ConnectDirectoryRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
332
332
  ConnectDirectoryRequest.add_member(:size, Shapes::ShapeRef.new(shape: DirectorySize, required: true, location_name: "Size"))
333
333
  ConnectDirectoryRequest.add_member(:connect_settings, Shapes::ShapeRef.new(shape: DirectoryConnectSettings, required: true, location_name: "ConnectSettings"))
334
+ ConnectDirectoryRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
334
335
  ConnectDirectoryRequest.struct_class = Types::ConnectDirectoryRequest
335
336
 
336
337
  ConnectDirectoryResult.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "DirectoryId"))
@@ -367,6 +368,7 @@ module Aws::DirectoryService
367
368
  CreateDirectoryRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
368
369
  CreateDirectoryRequest.add_member(:size, Shapes::ShapeRef.new(shape: DirectorySize, required: true, location_name: "Size"))
369
370
  CreateDirectoryRequest.add_member(:vpc_settings, Shapes::ShapeRef.new(shape: DirectoryVpcSettings, location_name: "VpcSettings"))
371
+ CreateDirectoryRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
370
372
  CreateDirectoryRequest.struct_class = Types::CreateDirectoryRequest
371
373
 
372
374
  CreateDirectoryResult.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "DirectoryId"))
@@ -384,6 +386,7 @@ module Aws::DirectoryService
384
386
  CreateMicrosoftADRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
385
387
  CreateMicrosoftADRequest.add_member(:vpc_settings, Shapes::ShapeRef.new(shape: DirectoryVpcSettings, required: true, location_name: "VpcSettings"))
386
388
  CreateMicrosoftADRequest.add_member(:edition, Shapes::ShapeRef.new(shape: DirectoryEdition, location_name: "Edition"))
389
+ CreateMicrosoftADRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
387
390
  CreateMicrosoftADRequest.struct_class = Types::CreateMicrosoftADRequest
388
391
 
389
392
  CreateMicrosoftADResult.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "DirectoryId"))
@@ -301,6 +301,12 @@ module Aws::DirectoryService
301
301
  # customer_dns_ips: ["IpAddr"], # required
302
302
  # customer_user_name: "UserName", # required
303
303
  # },
304
+ # tags: [
305
+ # {
306
+ # key: "TagKey", # required
307
+ # value: "TagValue", # required
308
+ # },
309
+ # ],
304
310
  # }
305
311
  #
306
312
  # @!attribute [rw] name
@@ -329,6 +335,10 @@ module Aws::DirectoryService
329
335
  # information for the operation.
330
336
  # @return [Types::DirectoryConnectSettings]
331
337
  #
338
+ # @!attribute [rw] tags
339
+ # The tags to be assigned to AD Connector.
340
+ # @return [Array<Types::Tag>]
341
+ #
332
342
  # @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/ConnectDirectoryRequest AWS API Documentation
333
343
  #
334
344
  class ConnectDirectoryRequest < Struct.new(
@@ -337,7 +347,8 @@ module Aws::DirectoryService
337
347
  :password,
338
348
  :description,
339
349
  :size,
340
- :connect_settings)
350
+ :connect_settings,
351
+ :tags)
341
352
  include Aws::Structure
342
353
  end
343
354
 
@@ -528,6 +539,12 @@ module Aws::DirectoryService
528
539
  # vpc_id: "VpcId", # required
529
540
  # subnet_ids: ["SubnetId"], # required
530
541
  # },
542
+ # tags: [
543
+ # {
544
+ # key: "TagKey", # required
545
+ # value: "TagValue", # required
546
+ # },
547
+ # ],
531
548
  # }
532
549
  #
533
550
  # @!attribute [rw] name
@@ -558,6 +575,10 @@ module Aws::DirectoryService
558
575
  # for the operation.
559
576
  # @return [Types::DirectoryVpcSettings]
560
577
  #
578
+ # @!attribute [rw] tags
579
+ # The tags to be assigned to the Simple AD directory.
580
+ # @return [Array<Types::Tag>]
581
+ #
561
582
  # @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/CreateDirectoryRequest AWS API Documentation
562
583
  #
563
584
  class CreateDirectoryRequest < Struct.new(
@@ -566,7 +587,8 @@ module Aws::DirectoryService
566
587
  :password,
567
588
  :description,
568
589
  :size,
569
- :vpc_settings)
590
+ :vpc_settings,
591
+ :tags)
570
592
  include Aws::Structure
571
593
  end
572
594
 
@@ -628,6 +650,12 @@ module Aws::DirectoryService
628
650
  # subnet_ids: ["SubnetId"], # required
629
651
  # },
630
652
  # edition: "Enterprise", # accepts Enterprise, Standard
653
+ # tags: [
654
+ # {
655
+ # key: "TagKey", # required
656
+ # value: "TagValue", # required
657
+ # },
658
+ # ],
631
659
  # }
632
660
  #
633
661
  # @!attribute [rw] name
@@ -663,6 +691,10 @@ module Aws::DirectoryService
663
691
  # Enterprise. Enterprise is the default.
664
692
  # @return [String]
665
693
  #
694
+ # @!attribute [rw] tags
695
+ # The tags to be assigned to the AWS Managed Microsoft AD directory.
696
+ # @return [Array<Types::Tag>]
697
+ #
666
698
  # @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/CreateMicrosoftADRequest AWS API Documentation
667
699
  #
668
700
  class CreateMicrosoftADRequest < Struct.new(
@@ -671,7 +703,8 @@ module Aws::DirectoryService
671
703
  :password,
672
704
  :description,
673
705
  :vpc_settings,
674
- :edition)
706
+ :edition,
707
+ :tags)
675
708
  include Aws::Structure
676
709
  end
677
710
 
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.11.0
4
+ version: 1.12.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: 2018-11-20 00:00:00.000000000 Z
11
+ date: 2019-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core