Class: Google::Apis::ManagedidentitiesV1alpha1::OnPremDomainDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/managedidentities_v1alpha1/classes.rb,
lib/google/apis/managedidentities_v1alpha1/representations.rb,
lib/google/apis/managedidentities_v1alpha1/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.



1749
1750
1751
# File 'lib/google/apis/managedidentities_v1alpha1/classes.rb', line 1749

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)


1741
1742
1743
# File 'lib/google/apis/managedidentities_v1alpha1/classes.rb', line 1741

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)


1747
1748
1749
# File 'lib/google/apis/managedidentities_v1alpha1/classes.rb', line 1747

def domain_name
  @domain_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1754
1755
1756
1757
# File 'lib/google/apis/managedidentities_v1alpha1/classes.rb', line 1754

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