Class: Google::Apis::ContainerV1::ResourceUsageExportConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb

Overview

Configuration for exporting cluster resource usages.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ResourceUsageExportConfig

Returns a new instance of ResourceUsageExportConfig.



5774
5775
5776
# File 'lib/google/apis/container_v1/classes.rb', line 5774

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bigquery_destinationGoogle::Apis::ContainerV1::BigQueryDestination

Parameters for using BigQuery as the destination of resource usage export. Corresponds to the JSON property bigqueryDestination



5760
5761
5762
# File 'lib/google/apis/container_v1/classes.rb', line 5760

def bigquery_destination
  @bigquery_destination
end

#consumption_metering_configGoogle::Apis::ContainerV1::ConsumptionMeteringConfig

Parameters for controlling consumption metering. Corresponds to the JSON property consumptionMeteringConfig



5765
5766
5767
# File 'lib/google/apis/container_v1/classes.rb', line 5765

def consumption_metering_config
  @consumption_metering_config
end

#enable_network_egress_meteringBoolean Also known as: enable_network_egress_metering?

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

Returns:

  • (Boolean)


5771
5772
5773
# File 'lib/google/apis/container_v1/classes.rb', line 5771

def enable_network_egress_metering
  @enable_network_egress_metering
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5779
5780
5781
5782
5783
# File 'lib/google/apis/container_v1/classes.rb', line 5779

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