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
-
#application_type ⇒ String
Required.
-
#ascs_uri ⇒ 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.
984 985 986 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 984 def initialize(**args) update!(**args) end |
Instance Attribute Details
#application_type ⇒ String
Required. Type of the application. Netweaver, etc.
Corresponds to the JSON property applicationType
971 972 973 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 971 def application_type @application_type end |
#ascs_uri ⇒ String
Optional. Resource URI of the recognized ASCS host of the application.
Corresponds to the JSON property ascsUri
976 977 978 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 976 def ascs_uri @ascs_uri 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
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 |