Class: Google::Apis::ManagedidentitiesV1::OnPremDomainDetails
- Inherits:
-
Object
- Object
- Google::Apis::ManagedidentitiesV1::OnPremDomainDetails
- 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
-
#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.
1727 1728 1729 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 1727 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
1719 1720 1721 |
# File 'lib/google/apis/managedidentities_v1/classes.rb', line 1719 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
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 |