File: //snap/google-cloud-cli/current/lib/surface/compute/target_pools/add_health_checks.py
# -*- coding: utf-8 -*- #
# Copyright 2014 Google LLC. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Command for adding health checks to target pools."""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from googlecloudsdk.api_lib.compute import base_classes
from googlecloudsdk.calliope import base
from googlecloudsdk.command_lib.compute import flags as compute_flags
from googlecloudsdk.command_lib.compute.http_health_checks import (
flags as http_health_check_flags)
from googlecloudsdk.command_lib.compute.target_pools import flags
class AddHealthChecks(base.SilentCommand):
"""Add a legacy HTTP health check to a target pool.
*{command}* is used to add a legacy HTTP health check
to a target pool. Legacy health checks are used to determine
the health status of instances in the target pool. Only one
health check can be attached to a target pool, so this command
will fail if there as already a health check attached to the target
pool. For more information on health checks and load balancing, see
[](https://cloud.google.com/compute/docs/load-balancing-and-autoscaling/)
"""
HEALTH_CHECK_ARG = None
TARGET_POOL_ARG = None
@classmethod
def Args(cls, parser):
cls.HEALTH_CHECK_ARG = (
http_health_check_flags.HttpHealthCheckArgumentForTargetPool('add to'))
cls.HEALTH_CHECK_ARG.AddArgument(parser)
cls.TARGET_POOL_ARG = flags.TargetPoolArgument(
help_suffix=' to which to add the health check.')
cls.TARGET_POOL_ARG.AddArgument(
parser, operation_type='add health checks to')
def Run(self, args):
holder = base_classes.ComputeApiHolder(self.ReleaseTrack())
client = holder.client
health_check_ref = self.HEALTH_CHECK_ARG.ResolveAsResource(
args, holder.resources)
target_pool_ref = self.TARGET_POOL_ARG.ResolveAsResource(
args,
holder.resources,
scope_lister=compute_flags.GetDefaultScopeLister(client))
request = client.messages.ComputeTargetPoolsAddHealthCheckRequest(
region=target_pool_ref.region,
project=target_pool_ref.project,
targetPool=target_pool_ref.Name(),
targetPoolsAddHealthCheckRequest=(
client.messages.TargetPoolsAddHealthCheckRequest(
healthChecks=[client.messages.HealthCheckReference(
healthCheck=health_check_ref.SelfLink())])))
return client.MakeRequests([(client.apitools_client.targetPools,
'AddHealthCheck', request)])