class Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1NodeSloMetadata

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.

Attributes

location[RW]

The location of the node, if different from instance location. Corresponds to the JSON property `location` @return [String]

node_id[RW]

The id of the node. This should be equal to SaasInstanceNode.node_id. Corresponds to the JSON property `nodeId` @return [String]

per_sli_eligibility[RW]

PerSliSloEligibility is a mapping from an SLI name to eligibility. Corresponds to the JSON property `perSliEligibility` @return [Google::Apis::ManagedidentitiesV1alpha1::GoogleCloudSaasacceleratorManagementProvidersV1PerSliSloEligibility]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/managedidentities_v1alpha1/classes.rb, line 897
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/managedidentities_v1alpha1/classes.rb, line 902
def update!(**args)
  @location = args[:location] if args.key?(:location)
  @node_id = args[:node_id] if args.key?(:node_id)
  @per_sli_eligibility = args[:per_sli_eligibility] if args.key?(:per_sli_eligibility)
end