Class: Google::Apis::ContainerV1::ResourceUsageExportConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::ResourceUsageExportConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb
Overview
Configuration for exporting cluster resource usages.
Instance Attribute Summary collapse
-
#bigquery_destination ⇒ Google::Apis::ContainerV1::BigQueryDestination
Parameters for using BigQuery as the destination of resource usage export.
-
#consumption_metering_config ⇒ Google::Apis::ContainerV1::ConsumptionMeteringConfig
Parameters for controlling consumption metering.
-
#enable_network_egress_metering ⇒ Boolean
(also: #enable_network_egress_metering?)
Whether to enable network egress metering for this cluster.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResourceUsageExportConfig
constructor
A new instance of ResourceUsageExportConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ResourceUsageExportConfig
Returns a new instance of ResourceUsageExportConfig.
3067 3068 3069 |
# File 'generated/google/apis/container_v1/classes.rb', line 3067 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigquery_destination ⇒ Google::Apis::ContainerV1::BigQueryDestination
Parameters for using BigQuery as the destination of resource usage export.
Corresponds to the JSON property bigqueryDestination
3053 3054 3055 |
# File 'generated/google/apis/container_v1/classes.rb', line 3053 def bigquery_destination @bigquery_destination end |
#consumption_metering_config ⇒ Google::Apis::ContainerV1::ConsumptionMeteringConfig
Parameters for controlling consumption metering.
Corresponds to the JSON property consumptionMeteringConfig
3058 3059 3060 |
# File 'generated/google/apis/container_v1/classes.rb', line 3058 def consumption_metering_config @consumption_metering_config end |
#enable_network_egress_metering ⇒ Boolean 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
3064 3065 3066 |
# File 'generated/google/apis/container_v1/classes.rb', line 3064 def enable_network_egress_metering @enable_network_egress_metering end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3072 3073 3074 3075 3076 |
# File 'generated/google/apis/container_v1/classes.rb', line 3072 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 |