class Google::Apis::ContainerV1beta1::ResourceUsageExportConfig

Configuration for exporting cluster resource usages.

Attributes

bigquery_destination[RW]

Parameters for using BigQuery as the destination of resource usage export. Corresponds to the JSON property `bigqueryDestination` @return [Google::Apis::ContainerV1beta1::BigQueryDestination]

consumption_metering_config[RW]

Parameters for controlling consumption metering. Corresponds to the JSON property `consumptionMeteringConfig` @return [Google::Apis::ContainerV1beta1::ConsumptionMeteringConfig]

enable_network_egress_metering[RW]

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]

enable_network_egress_metering?[RW]

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

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

Public Instance Methods

update!(**args) click to toggle source

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