Class: Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
- Inherits:
-
Object
- Object
- Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/file_v1/classes.rb,
generated/google/apis/file_v1/representations.rb,
generated/google/apis/file_v1/representations.rb
Overview
Node information for custom per-node SLO implementations. SSA does not support per-node SLO, but producers can populate per-node information in SloMetadata for custom precomputations. SSA Eligibility Exporter will emit per-node metric based on this information.
Instance Attribute Summary collapse
-
#exclusions ⇒ Array<Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>
By default node is eligible if instance is eligible.
-
#location ⇒ String
The location of the node, if different from instance location.
-
#node_id ⇒ String
The id of the node.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
constructor
A new instance of GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata
Returns a new instance of GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata.
700 701 702 |
# File 'generated/google/apis/file_v1/classes.rb', line 700 def initialize(**args) update!(**args) end |
Instance Attribute Details
#exclusions ⇒ Array<Google::Apis::FileV1::GoogleCloudSaasacceleratorManagementProvidersV1SloExclusion>
By default node is eligible if instance is eligible.
But individual node might be excluded from SLO by adding entry here.
For semantic see SloMetadata.exclusions.
If both instance and node level exclusions are present for time period,
the node level's reason will be reported by Eligibility Exporter.
Corresponds to the JSON property exclusions
687 688 689 |
# File 'generated/google/apis/file_v1/classes.rb', line 687 def exclusions @exclusions end |
#location ⇒ String
The location of the node, if different from instance location.
Corresponds to the JSON property location
692 693 694 |
# File 'generated/google/apis/file_v1/classes.rb', line 692 def location @location end |
#node_id ⇒ String
The id of the node.
This should be equal to SaasInstanceNode.node_id.
Corresponds to the JSON property nodeId
698 699 700 |
# File 'generated/google/apis/file_v1/classes.rb', line 698 def node_id @node_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
705 706 707 708 709 |
# File 'generated/google/apis/file_v1/classes.rb', line 705 def update!(**args) @exclusions = args[:exclusions] if args.key?(:exclusions) @location = args[:location] if args.key?(:location) @node_id = args[:node_id] if args.key?(:node_id) end |