aws-sdk-directoryservice 1.0.0 → 1.1.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: cbfc45edbd5f29646d7227bccc44b082d0b81f43
4
- data.tar.gz: 2c711b4f50afa6336b95a8fd7c5a764fc061d418
3
+ metadata.gz: ff6aef931bd03017f137390eabdc7aed597f9e67
4
+ data.tar.gz: c3eb73ef26aad8c11a779216dc2c042e1b6d6269
5
5
  SHA512:
6
- metadata.gz: 8a063450f73eac56cde33944a9f8fecc1c36030cc40e40a05bcb06360777e2aa709cb1bb3f2ef28e53cb209d7da7976225da7542a4f5ab3e04390c47afe61fc2
7
- data.tar.gz: 09b3fd3e68de90434e350966bc8b95ff0d7a11e97296d839c47264bc83754a079be4ee5839e62b6d5871d39eb3610bc527ec1e74c46744b4f462a23f3524bffe
6
+ metadata.gz: d1e2a1a2f2616dec3e0a606b9529903fb6d8dfbf6f59f59547f48ccbde788147c370baa5eba924593b657165209d9f0d8e7078b999f6a3e8f3ae3d902e99ed42
7
+ data.tar.gz: 59a98fd8650de425a56bdd54671e2cd34e2ae917e84ad12d3062d15c705720e4bd6604a3a458f8a928cecfbaf87bcae24c51e5b6a6d8728137a3bd02560c2644
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-directoryservice/customizations'
42
42
  # @service
43
43
  module Aws::DirectoryService
44
44
 
45
- GEM_VERSION = '1.0.0'
45
+ GEM_VERSION = '1.1.0'
46
46
 
47
47
  end
@@ -624,6 +624,10 @@ module Aws::DirectoryService
624
624
  # Contains VPC information for the CreateDirectory or CreateMicrosoftAD
625
625
  # operation.
626
626
  #
627
+ # @option params [String] :edition
628
+ # AWS Microsoft AD is available in two editions: Standard and
629
+ # Enterprise. Enterprise is the default.
630
+ #
627
631
  # @return [Types::CreateMicrosoftADResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
628
632
  #
629
633
  # * {Types::CreateMicrosoftADResult#directory_id #directory_id} => String
@@ -639,6 +643,7 @@ module Aws::DirectoryService
639
643
  # vpc_id: "VpcId", # required
640
644
  # subnet_ids: ["SubnetId"], # required
641
645
  # },
646
+ # edition: "Enterprise", # accepts Enterprise, Standard
642
647
  # })
643
648
  #
644
649
  # @example Response structure
@@ -1002,6 +1007,7 @@ module Aws::DirectoryService
1002
1007
  # resp.directory_descriptions[0].name #=> String
1003
1008
  # resp.directory_descriptions[0].short_name #=> String
1004
1009
  # resp.directory_descriptions[0].size #=> String, one of "Small", "Large"
1010
+ # resp.directory_descriptions[0].edition #=> String, one of "Enterprise", "Standard"
1005
1011
  # resp.directory_descriptions[0].alias #=> String
1006
1012
  # resp.directory_descriptions[0].access_url #=> String
1007
1013
  # resp.directory_descriptions[0].description #=> String
@@ -1919,7 +1925,7 @@ module Aws::DirectoryService
1919
1925
  params: params,
1920
1926
  config: config)
1921
1927
  context[:gem_name] = 'aws-sdk-directoryservice'
1922
- context[:gem_version] = '1.0.0'
1928
+ context[:gem_version] = '1.1.0'
1923
1929
  Seahorse::Client::Request.new(handlers, context)
1924
1930
  end
1925
1931
 
@@ -85,6 +85,7 @@ module Aws::DirectoryService
85
85
  DirectoryConnectSettingsDescription = Shapes::StructureShape.new(name: 'DirectoryConnectSettingsDescription')
86
86
  DirectoryDescription = Shapes::StructureShape.new(name: 'DirectoryDescription')
87
87
  DirectoryDescriptions = Shapes::ListShape.new(name: 'DirectoryDescriptions')
88
+ DirectoryEdition = Shapes::StringShape.new(name: 'DirectoryEdition')
88
89
  DirectoryId = Shapes::StringShape.new(name: 'DirectoryId')
89
90
  DirectoryIds = Shapes::ListShape.new(name: 'DirectoryIds')
90
91
  DirectoryLimitExceededException = Shapes::StructureShape.new(name: 'DirectoryLimitExceededException')
@@ -324,6 +325,7 @@ module Aws::DirectoryService
324
325
  CreateMicrosoftADRequest.add_member(:password, Shapes::ShapeRef.new(shape: Password, required: true, location_name: "Password"))
325
326
  CreateMicrosoftADRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
326
327
  CreateMicrosoftADRequest.add_member(:vpc_settings, Shapes::ShapeRef.new(shape: DirectoryVpcSettings, required: true, location_name: "VpcSettings"))
328
+ CreateMicrosoftADRequest.add_member(:edition, Shapes::ShapeRef.new(shape: DirectoryEdition, location_name: "Edition"))
327
329
  CreateMicrosoftADRequest.struct_class = Types::CreateMicrosoftADRequest
328
330
 
329
331
  CreateMicrosoftADResult.add_member(:directory_id, Shapes::ShapeRef.new(shape: DirectoryId, location_name: "DirectoryId"))
@@ -449,6 +451,7 @@ module Aws::DirectoryService
449
451
  DirectoryDescription.add_member(:name, Shapes::ShapeRef.new(shape: DirectoryName, location_name: "Name"))
450
452
  DirectoryDescription.add_member(:short_name, Shapes::ShapeRef.new(shape: DirectoryShortName, location_name: "ShortName"))
451
453
  DirectoryDescription.add_member(:size, Shapes::ShapeRef.new(shape: DirectorySize, location_name: "Size"))
454
+ DirectoryDescription.add_member(:edition, Shapes::ShapeRef.new(shape: DirectoryEdition, location_name: "Edition"))
452
455
  DirectoryDescription.add_member(:alias, Shapes::ShapeRef.new(shape: AliasName, location_name: "Alias"))
453
456
  DirectoryDescription.add_member(:access_url, Shapes::ShapeRef.new(shape: AccessUrl, location_name: "AccessUrl"))
454
457
  DirectoryDescription.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
@@ -566,6 +566,7 @@ module Aws::DirectoryService
566
566
  # vpc_id: "VpcId", # required
567
567
  # subnet_ids: ["SubnetId"], # required
568
568
  # },
569
+ # edition: "Enterprise", # accepts Enterprise, Standard
569
570
  # }
570
571
  #
571
572
  # @!attribute [rw] name
@@ -596,6 +597,11 @@ module Aws::DirectoryService
596
597
  # CreateMicrosoftAD operation.
597
598
  # @return [Types::DirectoryVpcSettings]
598
599
  #
600
+ # @!attribute [rw] edition
601
+ # AWS Microsoft AD is available in two editions: Standard and
602
+ # Enterprise. Enterprise is the default.
603
+ # @return [String]
604
+ #
599
605
  # @see http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/CreateMicrosoftADRequest AWS API Documentation
600
606
  #
601
607
  class CreateMicrosoftADRequest < Struct.new(
@@ -603,7 +609,8 @@ module Aws::DirectoryService
603
609
  :short_name,
604
610
  :password,
605
611
  :description,
606
- :vpc_settings)
612
+ :vpc_settings,
613
+ :edition)
607
614
  include Aws::Structure
608
615
  end
609
616
 
@@ -1364,6 +1371,10 @@ module Aws::DirectoryService
1364
1371
  # The directory size.
1365
1372
  # @return [String]
1366
1373
  #
1374
+ # @!attribute [rw] edition
1375
+ # The edition associated with this directory.
1376
+ # @return [String]
1377
+ #
1367
1378
  # @!attribute [rw] alias
1368
1379
  # The alias for the directory. If no alias has been created for the
1369
1380
  # directory, the alias is the directory identifier, such as
@@ -1448,6 +1459,7 @@ module Aws::DirectoryService
1448
1459
  :name,
1449
1460
  :short_name,
1450
1461
  :size,
1462
+ :edition,
1451
1463
  :alias,
1452
1464
  :access_url,
1453
1465
  :description,
@@ -1561,11 +1573,7 @@ module Aws::DirectoryService
1561
1573
  # @return [Array<String>]
1562
1574
  #
1563
1575
  # @!attribute [rw] security_group_id
1564
- # The security group identifier for the directory. If the directory
1565
- # was created before 8/1/2014, this is the identifier of the directory
1566
- # members security group that was created when the directory was
1567
- # created. If the directory was created after this date, this value is
1568
- # null.
1576
+ # The domain controller security group identifier for the directory.
1569
1577
  # @return [String]
1570
1578
  #
1571
1579
  # @!attribute [rw] availability_zones
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.0.0
4
+ version: 1.1.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: 2017-08-29 00:00:00.000000000 Z
11
+ date: 2018-01-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -56,7 +56,9 @@ files:
56
56
  homepage: http://github.com/aws/aws-sdk-ruby
57
57
  licenses:
58
58
  - Apache-2.0
59
- metadata: {}
59
+ metadata:
60
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-directoryservice
61
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-directoryservice/CHANGELOG.md
60
62
  post_install_message:
61
63
  rdoc_options: []
62
64
  require_paths: