Пример #1
0
def _Args(parser, include_l7_internal_load_balancing):
  health_check_arg = flags.HealthCheckArgument(
      'SSL',
      include_l7_internal_load_balancing=include_l7_internal_load_balancing)
  health_check_arg.AddArgument(parser, operation_type='update')
  health_checks_utils.AddTcpRelatedUpdateArgs(parser)
  health_checks_utils.AddProtocolAgnosticUpdateArgs(parser, 'SSL')
Пример #2
0
 def Args(cls, parser):
     cls.HEALTH_CHECK_ARG = flags.HealthCheckArgument('SSL')
     cls.HEALTH_CHECK_ARG.AddArgument(parser, operation_type='update')
     health_checks_utils.AddTcpRelatedUpdateArgs(parser)
     health_checks_utils.AddProtocolAgnosticUpdateArgs(parser, 'SSL')
Пример #3
0
 def Args(cls, parser, supports_use_serving_port=False):
   cls.HEALTH_CHECK_ARG = flags.HealthCheckArgument('TCP')
   cls.HEALTH_CHECK_ARG.AddArgument(parser, operation_type='update')
   health_checks_utils.AddTcpRelatedUpdateArgs(parser)
   health_checks_utils.AddProtocolAgnosticUpdateArgs(parser, 'TCP')
Пример #4
0
 def Args(cls, parser):
     cls.HEALTH_CHECK_ARG = flags.HealthCheckArgument('TCP')
     cls.HEALTH_CHECK_ARG.AddArgument(parser)
     health_checks_utils.AddTcpRelatedUpdateArgs(parser)
     health_checks_utils.AddProtocolAgnosticUpdateArgs(parser, 'TCP')
Пример #5
0
 def Args(parser):
     health_checks_utils.AddTcpRelatedUpdateArgs(parser)
     health_checks_utils.AddProtocolAgnosticUpdateArgs(parser, 'SSL')
Пример #6
0
 def Args(cls, parser):
     cls.HEALTH_CHECK_ARG = flags.HealthCheckArgument(
         'SSL', include_l7_internal_load_balancing=True)
     cls.HEALTH_CHECK_ARG.AddArgument(parser, operation_type='update')
     health_checks_utils.AddTcpRelatedUpdateArgs(parser)
     health_checks_utils.AddProtocolAgnosticUpdateArgs(parser, 'SSL')
Пример #7
0
 def Args(cls, parser):
   cls.HEALTH_CHECK_ARG = flags.HealthCheckArgument('SSL', include_alpha=True)
   cls.HEALTH_CHECK_ARG.AddArgument(parser, operation_type='update')
   health_checks_utils.AddTcpRelatedUpdateArgs(parser, use_serving_port=True)
   health_checks_utils.AddProtocolAgnosticUpdateArgs(parser, 'SSL')