Class: Google::Apis::ManagedidentitiesV1alpha1::OnPremDomainDetails
- Inherits:
-
Object
- Object
- Google::Apis::ManagedidentitiesV1alpha1::OnPremDomainDetails
- 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
-
#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.
1749 1750 1751 |
# File 'lib/google/apis/managedidentities_v1alpha1/classes.rb', line 1749 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
1741 1742 1743 |
# File 'lib/google/apis/managedidentities_v1alpha1/classes.rb', line 1741 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
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 |