PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::StorageGateway::JoinDomain; use Moose; has DomainControllers => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); has DomainName => (is => 'ro', isa => 'Str', required => 1); has GatewayARN => (is => 'ro', isa => 'Str', required => 1); has OrganizationalUnit => (is => 'ro', isa => 'Str'); has Password => (is => 'ro', isa => 'Str', required => 1); has TimeoutInSeconds => (is => 'ro', isa => 'Int'); has UserName => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'JoinDomain'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::StorageGateway::JoinDomainOutput'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::StorageGateway::JoinDomain - Arguments for method JoinDomain on L =head1 DESCRIPTION This class represents the parameters used for calling the method JoinDomain on the L service. Use the attributes of this class as arguments to method JoinDomain. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to JoinDomain. =head1 SYNOPSIS my $storagegateway = Paws->service('StorageGateway'); my $JoinDomainOutput = $storagegateway->JoinDomain( DomainName => 'MyDomainName', GatewayARN => 'MyGatewayARN', Password => 'MyDomainUserPassword', UserName => 'MyDomainUserName', DomainControllers => [ 'MyHost', ... # min: 6, max: 1024 ], # OPTIONAL OrganizationalUnit => 'MyOrganizationalUnit', # OPTIONAL TimeoutInSeconds => 1, # OPTIONAL ); # Results: my $ActiveDirectoryStatus = $JoinDomainOutput->ActiveDirectoryStatus; my $GatewayARN = $JoinDomainOutput->GatewayARN; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 DomainControllers => ArrayRef[Str|Undef] 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 (E:E). For example, C. =head2 B DomainName => Str The name of the domain that you want the gateway to join. =head2 B GatewayARN => Str The Amazon Resource Name (ARN) of the gateway. Use the C operation to return a list of gateways for your account and AWS Region. =head2 OrganizationalUnit => Str 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. =head2 B Password => Str Sets the password of the user who has permission to add the gateway to the Active Directory domain. =head2 TimeoutInSeconds => Int Specifies the time in seconds, in which the C operation must complete. The default is 20 seconds. =head2 B UserName => Str 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. =head1 SEE ALSO This class forms part of L, documenting arguments for method JoinDomain in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut