class Google::Apis::ContainerV1beta1::ResourceUsageExportConfig
Configuration for exporting cluster resource usages.
Attributes
Parameters for using BigQuery as the destination of resource usage export. Corresponds to the JSON property `bigqueryDestination` @return [Google::Apis::ContainerV1beta1::BigQueryDestination]
Parameters for controlling consumption metering. Corresponds to the JSON property `consumptionMeteringConfig` @return [Google::Apis::ContainerV1beta1::ConsumptionMeteringConfig]
Whether to enable network egress metering for this cluster. If enabled, a daemonset will be created in the cluster to meter network egress traffic. Corresponds to the JSON property `enableNetworkEgressMetering` @return [Boolean]
Whether to enable network egress metering for this cluster. If enabled, a daemonset will be created in the cluster to meter network egress traffic. Corresponds to the JSON property `enableNetworkEgressMetering` @return [Boolean]
Public Class Methods
# File lib/google/apis/container_v1beta1/classes.rb, line 4110 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/container_v1beta1/classes.rb, line 4115 def update!(**args) @bigquery_destination = args[:bigquery_destination] if args.key?(:bigquery_destination) @consumption_metering_config = args[:consumption_metering_config] if args.key?(:consumption_metering_config) @enable_network_egress_metering = args[:enable_network_egress_metering] if args.key?(:enable_network_egress_metering) end