Class: Google::Apis::WorkloadmanagerV1::SapDiscoveryMetadata
- Inherits:
-
Object
- Object
- Google::Apis::WorkloadmanagerV1::SapDiscoveryMetadata
- 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
Message describing SAP discovery system metadata
Instance Attribute Summary collapse
-
#customer_region ⇒ String
Customer region string for customer's use.
-
#defined_system ⇒ String
Customer defined, something like "E-commerce pre prod" Corresponds to the JSON property
definedSystem. -
#environment_type ⇒ String
Should be "prod", "QA", "dev", "staging", etc.
-
#sap_product ⇒ String
This sap product name Corresponds to the JSON property
sapProduct.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SapDiscoveryMetadata
constructor
A new instance of SapDiscoveryMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SapDiscoveryMetadata
Returns a new instance of SapDiscoveryMetadata.
988 989 990 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 988 def initialize(**args) update!(**args) end |
Instance Attribute Details
#customer_region ⇒ String
Customer region string for customer's use. Does not represent GCP region.
Corresponds to the JSON property customerRegion
971 972 973 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 971 def customer_region @customer_region end |
#defined_system ⇒ String
Customer defined, something like "E-commerce pre prod"
Corresponds to the JSON property definedSystem
976 977 978 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 976 def defined_system @defined_system end |
#environment_type ⇒ String
Should be "prod", "QA", "dev", "staging", etc.
Corresponds to the JSON property environmentType
981 982 983 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 981 def environment_type @environment_type end |
#sap_product ⇒ String
This sap product name
Corresponds to the JSON property sapProduct
986 987 988 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 986 def sap_product @sap_product end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
993 994 995 996 997 998 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 993 def update!(**args) @customer_region = args[:customer_region] if args.key?(:customer_region) @defined_system = args[:defined_system] if args.key?(:defined_system) @environment_type = args[:environment_type] if args.key?(:environment_type) @sap_product = args[:sap_product] if args.key?(:sap_product) end |