Class: Google::Apis::ManagedidentitiesV1beta1::OnPremDomainDetails
- Inherits:
-
Object
- Object
- Google::Apis::ManagedidentitiesV1beta1::OnPremDomainDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/managedidentities_v1beta1/classes.rb,
lib/google/apis/managedidentities_v1beta1/representations.rb,
lib/google/apis/managedidentities_v1beta1/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
-
#disable_sid_filtering ⇒ Boolean
(also: #disable_sid_filtering?)
Optional.
-
#domain_name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OnPremDomainDetails
constructor
A new instance of OnPremDomainDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OnPremDomainDetails
Returns a new instance of OnPremDomainDetails.
1745 1746 1747 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 1745 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disable_sid_filtering ⇒ Boolean Also known as: disable_sid_filtering?
Optional. Option to disable SID filtering.
Corresponds to the JSON property disableSidFiltering
1737 1738 1739 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 1737 def disable_sid_filtering @disable_sid_filtering end |
#domain_name ⇒ String
Required. FQDN of the on-prem domain being migrated.
Corresponds to the JSON property domainName
1743 1744 1745 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 1743 def domain_name @domain_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1750 1751 1752 1753 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 1750 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 |