Class: Google::Apis::ManagedidentitiesV1::OnPremDomainDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/managedidentities_v1/classes.rb,
lib/google/apis/managedidentities_v1/representations.rb,
lib/google/apis/managedidentities_v1/representations.rb

Overview

OnPremDomainDetails is the message which contains details of on-prem domain which is trusted and needs to be migrated.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ OnPremDomainDetails

Returns a new instance of OnPremDomainDetails.



1727
1728
1729
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 1727

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#disable_sid_filteringBoolean Also known as: disable_sid_filtering?

Optional. Option to disable SID filtering. Corresponds to the JSON property disableSidFiltering

Returns:

  • (Boolean)


1719
1720
1721
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 1719

def disable_sid_filtering
  @disable_sid_filtering
end

#domain_nameString

Required. FQDN of the on-prem domain being migrated. Corresponds to the JSON property domainName

Returns:

  • (String)


1725
1726
1727
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 1725

def domain_name
  @domain_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1732
1733
1734
1735
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 1732

def update!(**args)
  @disable_sid_filtering = args[:disable_sid_filtering] if args.key?(:disable_sid_filtering)
  @domain_name = args[:domain_name] if args.key?(:domain_name)
end