Class: Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstanceProperties

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

Overview

A set of properties only present for an instance type resource

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SapDiscoveryResourceInstanceProperties

Returns a new instance of SapDiscoveryResourceInstanceProperties.



1793
1794
1795
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1793

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

Instance Attribute Details

#app_instancesArray<Google::Apis::WorkloadmanagerV1::SapDiscoveryResourceInstancePropertiesAppInstance>

Optional. App server instances on the host Corresponds to the JSON property appInstances



1765
1766
1767
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1765

def app_instances
  @app_instances
end

#cluster_instancesArray<String>

Optional. A list of instance URIs that are part of a cluster with this one. Corresponds to the JSON property clusterInstances

Returns:

  • (Array<String>)


1770
1771
1772
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1770

def cluster_instances
  @cluster_instances
end

#instance_numberFixnum

Optional. The VM's instance number. Corresponds to the JSON property instanceNumber

Returns:

  • (Fixnum)


1775
1776
1777
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1775

def instance_number
  @instance_number
end

#instance_roleString

Optional. Bitmask of instance role, a resource may have multiple roles at once. Corresponds to the JSON property instanceRole

Returns:

  • (String)


1780
1781
1782
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1780

def instance_role
  @instance_role
end

#is_dr_siteBoolean Also known as: is_dr_site?

Optional. Instance is part of a DR site. Corresponds to the JSON property isDrSite

Returns:

  • (Boolean)


1785
1786
1787
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1785

def is_dr_site
  @is_dr_site
end

#virtual_hostnameString

Optional. A virtual hostname of the instance if it has one. Corresponds to the JSON property virtualHostname

Returns:

  • (String)


1791
1792
1793
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1791

def virtual_hostname
  @virtual_hostname
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1798
1799
1800
1801
1802
1803
1804
1805
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1798

def update!(**args)
  @app_instances = args[:app_instances] if args.key?(:app_instances)
  @cluster_instances = args[:cluster_instances] if args.key?(:cluster_instances)
  @instance_number = args[:instance_number] if args.key?(:instance_number)
  @instance_role = args[:instance_role] if args.key?(:instance_role)
  @is_dr_site = args[:is_dr_site] if args.key?(:is_dr_site)
  @virtual_hostname = args[:virtual_hostname] if args.key?(:virtual_hostname)
end