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.



984
985
986
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 984

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

Instance Attribute Details

#application_typeString

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

Returns:

  • (String)


971
972
973
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 971

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)


976
977
978
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 976

def ascs_uri
  @ascs_uri
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)


982
983
984
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 982

def nfs_uri
  @nfs_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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