Class: Google::Apis::SaasservicemgmtV1beta1::UnitDependency
- Inherits:
-
Object
- Object
- Google::Apis::SaasservicemgmtV1beta1::UnitDependency
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/saasservicemgmt_v1beta1/classes.rb,
lib/google/apis/saasservicemgmt_v1beta1/representations.rb,
lib/google/apis/saasservicemgmt_v1beta1/representations.rb
Overview
Set of dependencies for this unit. Maximum 10.
Instance Attribute Summary collapse
-
#alias ⇒ String
Output only.
-
#unit ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UnitDependency
constructor
A new instance of UnitDependency.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UnitDependency
Returns a new instance of UnitDependency.
2939 2940 2941 |
# File 'lib/google/apis/saasservicemgmt_v1beta1/classes.rb', line 2939 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alias ⇒ String
Output only. Alias for the name of the dependency.
Corresponds to the JSON property alias
2932 2933 2934 |
# File 'lib/google/apis/saasservicemgmt_v1beta1/classes.rb', line 2932 def alias @alias end |
#unit ⇒ String
Output only. A reference to the Unit object.
Corresponds to the JSON property unit
2937 2938 2939 |
# File 'lib/google/apis/saasservicemgmt_v1beta1/classes.rb', line 2937 def unit @unit end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2944 2945 2946 2947 |
# File 'lib/google/apis/saasservicemgmt_v1beta1/classes.rb', line 2944 def update!(**args) @alias = args[:alias] if args.key?(:alias) @unit = args[:unit] if args.key?(:unit) end |