Class: Google::Apis::MonitoringV3::GkeWorkload

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

Overview

A GKE Workload (Deployment, StatefulSet, etc). The field names correspond to the metadata labels on monitored resources that fall under a workload (for example, k8s_container or k8s_pod).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GkeWorkload

Returns a new instance of GkeWorkload.



1723
1724
1725
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1723

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

Instance Attribute Details

#cluster_nameString

The name of the parent cluster. Corresponds to the JSON property clusterName

Returns:

  • (String)


1694
1695
1696
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1694

def cluster_name
  @cluster_name
end

#locationString

The location of the parent cluster. This may be a zone or region. Corresponds to the JSON property location

Returns:

  • (String)


1699
1700
1701
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1699

def location
  @location
end

#namespace_nameString

The name of the parent namespace. Corresponds to the JSON property namespaceName

Returns:

  • (String)


1704
1705
1706
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1704

def namespace_name
  @namespace_name
end

#project_idString

Output only. The project this resource lives in. For legacy services migrated from the Custom type, this may be a distinct project from the one parenting the service itself. Corresponds to the JSON property projectId

Returns:

  • (String)


1711
1712
1713
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1711

def project_id
  @project_id
end

#top_level_controller_nameString

The name of this workload. Corresponds to the JSON property topLevelControllerName

Returns:

  • (String)


1716
1717
1718
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1716

def top_level_controller_name
  @top_level_controller_name
end

#top_level_controller_typeString

The type of this workload (for example, "Deployment" or "DaemonSet") Corresponds to the JSON property topLevelControllerType

Returns:

  • (String)


1721
1722
1723
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1721

def top_level_controller_type
  @top_level_controller_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1728
1729
1730
1731
1732
1733
1734
1735
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1728

def update!(**args)
  @cluster_name = args[:cluster_name] if args.key?(:cluster_name)
  @location = args[:location] if args.key?(:location)
  @namespace_name = args[:namespace_name] if args.key?(:namespace_name)
  @project_id = args[:project_id] if args.key?(:project_id)
  @top_level_controller_name = args[:top_level_controller_name] if args.key?(:top_level_controller_name)
  @top_level_controller_type = args[:top_level_controller_type] if args.key?(:top_level_controller_type)
end