Class: Aws::StorageGateway::Types::JoinDomainInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-storagegateway/types.rb

Overview

Note:

When making an API call, you may pass JoinDomainInput data as a hash:

{
  gateway_arn: "GatewayARN", # required
  domain_name: "DomainName", # required
  organizational_unit: "OrganizationalUnit",
  domain_controllers: ["Host"],
  timeout_in_seconds: 1,
  user_name: "DomainUserName", # required
  password: "DomainUserPassword", # required
}

JoinDomainInput

Constant Summary collapse

SENSITIVE =
[:password]

Instance Attribute Summary collapse

Instance Attribute Details

#domain_controllersArray<String>

List of IPv4 addresses, NetBIOS names, or host names of your domain server. If you need to specify the port number include it after the colon (“:”). For example, ‘mydc.mydomain.com:389`.

Returns:

  • (Array<String>)


4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
# File 'lib/aws-sdk-storagegateway/types.rb', line 4237

class JoinDomainInput < Struct.new(
  :gateway_arn,
  :domain_name,
  :organizational_unit,
  :domain_controllers,
  :timeout_in_seconds,
  :user_name,
  :password)
  SENSITIVE = [:password]
  include Aws::Structure
end

#domain_nameString

The name of the domain that you want the gateway to join.

Returns:

  • (String)


4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
# File 'lib/aws-sdk-storagegateway/types.rb', line 4237

class JoinDomainInput < Struct.new(
  :gateway_arn,
  :domain_name,
  :organizational_unit,
  :domain_controllers,
  :timeout_in_seconds,
  :user_name,
  :password)
  SENSITIVE = [:password]
  include Aws::Structure
end

#gateway_arnString

The Amazon Resource Name (ARN) of the gateway. Use the ‘ListGateways` operation to return a list of gateways for your account and AWS Region.

Returns:

  • (String)


4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
# File 'lib/aws-sdk-storagegateway/types.rb', line 4237

class JoinDomainInput < Struct.new(
  :gateway_arn,
  :domain_name,
  :organizational_unit,
  :domain_controllers,
  :timeout_in_seconds,
  :user_name,
  :password)
  SENSITIVE = [:password]
  include Aws::Structure
end

#organizational_unitString

The organizational unit (OU) is a container in an Active Directory that can hold users, groups, computers, and other OUs and this parameter specifies the OU that the gateway will join within the AD domain.

Returns:

  • (String)


4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
# File 'lib/aws-sdk-storagegateway/types.rb', line 4237

class JoinDomainInput < Struct.new(
  :gateway_arn,
  :domain_name,
  :organizational_unit,
  :domain_controllers,
  :timeout_in_seconds,
  :user_name,
  :password)
  SENSITIVE = [:password]
  include Aws::Structure
end

#passwordString

Sets the password of the user who has permission to add the gateway to the Active Directory domain.

Returns:

  • (String)


4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
# File 'lib/aws-sdk-storagegateway/types.rb', line 4237

class JoinDomainInput < Struct.new(
  :gateway_arn,
  :domain_name,
  :organizational_unit,
  :domain_controllers,
  :timeout_in_seconds,
  :user_name,
  :password)
  SENSITIVE = [:password]
  include Aws::Structure
end

#timeout_in_secondsInteger

Specifies the time in seconds, in which the ‘JoinDomain` operation must complete. The default is 20 seconds.

Returns:

  • (Integer)


4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
# File 'lib/aws-sdk-storagegateway/types.rb', line 4237

class JoinDomainInput < Struct.new(
  :gateway_arn,
  :domain_name,
  :organizational_unit,
  :domain_controllers,
  :timeout_in_seconds,
  :user_name,
  :password)
  SENSITIVE = [:password]
  include Aws::Structure
end

#user_nameString

Sets the user name of user who has permission to add the gateway to the Active Directory domain. The domain user account should be enabled to join computers to the domain. For example, you can use the domain administrator account or an account with delegated permissions to join computers to the domain.

Returns:

  • (String)


4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
# File 'lib/aws-sdk-storagegateway/types.rb', line 4237

class JoinDomainInput < Struct.new(
  :gateway_arn,
  :domain_name,
  :organizational_unit,
  :domain_controllers,
  :timeout_in_seconds,
  :user_name,
  :password)
  SENSITIVE = [:password]
  include Aws::Structure
end