Class: Google::Apis::WorkloadmanagerV1::SapDiscoveryComponentApplicationProperties
- Inherits:
-
Object
- Object
- Google::Apis::WorkloadmanagerV1::SapDiscoveryComponentApplicationProperties
- 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
-
#abap ⇒ Boolean
(also: #abap?)
Optional.
-
#app_instance_number ⇒ String
Optional.
-
#application_type ⇒ String
Required.
-
#ascs_instance_number ⇒ String
Optional.
-
#ascs_uri ⇒ String
Optional.
-
#ers_instance_number ⇒ String
Optional.
-
#kernel_version ⇒ String
Optional.
-
#nfs_uri ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SapDiscoveryComponentApplicationProperties
constructor
A new instance of SapDiscoveryComponentApplicationProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SapDiscoveryComponentApplicationProperties
Returns a new instance of SapDiscoveryComponentApplicationProperties.
1409 1410 1411 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1409 def initialize(**args) update!(**args) end |
Instance Attribute Details
#abap ⇒ Boolean 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
1370 1371 1372 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1370 def abap @abap end |
#app_instance_number ⇒ String
Optional. Instance number of the SAP application instance.
Corresponds to the JSON property appInstanceNumber
1376 1377 1378 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1376 def app_instance_number @app_instance_number end |
#application_type ⇒ String
Required. Type of the application. Netweaver, etc.
Corresponds to the JSON property applicationType
1381 1382 1383 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1381 def application_type @application_type end |
#ascs_instance_number ⇒ String
Optional. Instance number of the ASCS instance.
Corresponds to the JSON property ascsInstanceNumber
1386 1387 1388 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1386 def ascs_instance_number @ascs_instance_number end |
#ascs_uri ⇒ String
Optional. Resource URI of the recognized ASCS host of the application.
Corresponds to the JSON property ascsUri
1391 1392 1393 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1391 def ascs_uri @ascs_uri end |
#ers_instance_number ⇒ String
Optional. Instance number of the ERS instance.
Corresponds to the JSON property ersInstanceNumber
1396 1397 1398 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1396 def ers_instance_number @ers_instance_number end |
#kernel_version ⇒ String
Optional. Kernel version for Netweaver running in the system.
Corresponds to the JSON property kernelVersion
1401 1402 1403 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1401 def kernel_version @kernel_version end |
#nfs_uri ⇒ String
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
1407 1408 1409 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1407 def nfs_uri @nfs_uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1414 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 |