Class: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponentApplicationProperties

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 describing an SAP Application layer.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SapDiscoveryComponentApplicationProperties

Returns a new instance of SapDiscoveryComponentApplicationProperties.



1015
1016
1017
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1015

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

Instance Attribute Details

#abapBoolean Also known as: abap?

Optional. Indicates whether this is a Java or ABAP Netweaver instance. true means it is ABAP, false means it is Java. Corresponds to the JSON property abap

Returns:

  • (Boolean)


991
992
993
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 991

def abap
  @abap
end

#application_typeString

Required. Type of the application. Netweaver, etc. Corresponds to the JSON property applicationType

Returns:

  • (String)


997
998
999
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 997

def application_type
  @application_type
end

#ascs_uriString

Optional. Resource URI of the recognized ASCS host of the application. Corresponds to the JSON property ascsUri

Returns:

  • (String)


1002
1003
1004
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1002

def ascs_uri
  @ascs_uri
end

#kernel_versionString

Optional. Kernel version for Netweaver running in the system. Corresponds to the JSON property kernelVersion

Returns:

  • (String)


1007
1008
1009
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1007

def kernel_version
  @kernel_version
end

#nfs_uriString

Optional. Resource URI of the recognized shared NFS of the application. May be empty if the application server has only a single node. Corresponds to the JSON property nfsUri

Returns:

  • (String)


1013
1014
1015
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1013

def nfs_uri
  @nfs_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1020
1021
1022
1023
1024
1025
1026
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1020

def update!(**args)
  @abap = args[:abap] if args.key?(:abap)
  @application_type = args[:application_type] if args.key?(:application_type)
  @ascs_uri = args[:ascs_uri] if args.key?(:ascs_uri)
  @kernel_version = args[:kernel_version] if args.key?(:kernel_version)
  @nfs_uri = args[:nfs_uri] if args.key?(:nfs_uri)
end