Class: Google::Apis::MonitoringV3::GkeService

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

GKE Service. The "service" here represents a Kubernetes service object (https:/ /kubernetes.io/docs/concepts/services-networking/service). The field names correspond to the resource labels on k8s_service monitored resources (https:// cloud.google.com/monitoring/api/resources#tag_k8s_service).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GkeService

Returns a new instance of GkeService.



1679
1680
1681
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1679

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)


1655
1656
1657
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1655

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)


1660
1661
1662
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1660

def location
  @location
end

#namespace_nameString

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

Returns:

  • (String)


1665
1666
1667
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1665

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)


1672
1673
1674
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1672

def project_id
  @project_id
end

#service_nameString

The name of this service. Corresponds to the JSON property serviceName

Returns:

  • (String)


1677
1678
1679
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1677

def service_name
  @service_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1684
1685
1686
1687
1688
1689
1690
# File 'lib/google/apis/monitoring_v3/classes.rb', line 1684

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)
  @service_name = args[:service_name] if args.key?(:service_name)
end