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.



2761
2762
2763
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 2761

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

Instance Attribute Details

#abapBoolean Also known as: abap?

Optional. Deprecated: ApplicationType now tells you whether this is ABAP or Java. Corresponds to the JSON property abap

Returns:

  • (Boolean)


2722
2723
2724
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 2722

def abap
  @abap
end

#app_instance_numberString

Optional. Instance number of the SAP application instance. Corresponds to the JSON property appInstanceNumber

Returns:

  • (String)


2728
2729
2730
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 2728

def app_instance_number
  @app_instance_number
end

#application_typeString

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

Returns:

  • (String)


2733
2734
2735
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 2733

def application_type
  @application_type
end

#ascs_instance_numberString

Optional. Instance number of the ASCS instance. Corresponds to the JSON property ascsInstanceNumber

Returns:

  • (String)


2738
2739
2740
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 2738

def ascs_instance_number
  @ascs_instance_number
end

#ascs_uriString

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

Returns:

  • (String)


2743
2744
2745
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 2743

def ascs_uri
  @ascs_uri
end

#ers_instance_numberString

Optional. Instance number of the ERS instance. Corresponds to the JSON property ersInstanceNumber

Returns:

  • (String)


2748
2749
2750
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 2748

def ers_instance_number
  @ers_instance_number
end

#kernel_versionString

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

Returns:

  • (String)


2753
2754
2755
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 2753

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)


2759
2760
2761
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 2759

def nfs_uri
  @nfs_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 2766

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