Exemplo n.º 1
0
 def Args(cls, parser):
   cls.HEALTH_CHECK_ARG = flags.HealthCheckArgument(
       'UDP', include_l7_internal_load_balancing=True)
   cls.HEALTH_CHECK_ARG.AddArgument(parser, operation_type='update')
   health_checks_utils.AddUdpRelatedArgs(parser,
                                         request_and_response_required=False)
   health_checks_utils.AddProtocolAgnosticUpdateArgs(parser, 'UDP')
Exemplo n.º 2
0
 def Args(cls, parser):
   parser.display_info.AddFormat(flags.DEFAULT_LIST_FORMAT)
   cls.HEALTH_CHECK_ARG = flags.HealthCheckArgument(
       'UDP', include_l7_internal_load_balancing=True)
   cls.HEALTH_CHECK_ARG.AddArgument(parser, operation_type='create')
   health_checks_utils.AddUdpRelatedArgs(parser)
   health_checks_utils.AddProtocolAgnosticCreationArgs(parser, 'UDP')
Exemplo n.º 3
0
def _Args(parser, include_l7_internal_load_balancing=False):
    parser.display_info.AddFormat(flags.DEFAULT_LIST_FORMAT)
    flags.HealthCheckArgument(
        'UDP',
        include_l7_internal_load_balancing=include_l7_internal_load_balancing
    ).AddArgument(parser, operation_type='create')
    health_checks_utils.AddUdpRelatedArgs(parser)
    health_checks_utils.AddProtocolAgnosticCreationArgs(parser, 'UDP')
Exemplo n.º 4
0
 def Args(cls, parser):
     parser.display_info.AddFormat(flags.DEFAULT_LIST_FORMAT)
     cls.HEALTH_CHECK_ARG = flags.HealthCheckArgument('UDP')
     cls.HEALTH_CHECK_ARG.AddArgument(parser)
     health_checks_utils.AddUdpRelatedArgs(parser)
     health_checks_utils.AddProtocolAgnosticCreationArgs(parser, 'UDP')
Exemplo n.º 5
0
 def Args(parser):
     health_checks_utils.AddUdpRelatedArgs(parser)
     health_checks_utils.AddProtocolAgnosticCreationArgs(parser, 'UDP')
Exemplo n.º 6
0
 def Args(cls, parser):
     cls.HEALTH_CHECK_ARG = flags.HealthCheckArgument('UDP')
     cls.HEALTH_CHECK_ARG.AddArgument(parser)
     health_checks_utils.AddUdpRelatedArgs(
         parser, request_and_response_required=False)
     health_checks_utils.AddProtocolAgnosticUpdateArgs(parser, 'UDP')
Exemplo n.º 7
0
 def Args(cls, parser):
     cls.HEALTH_CHECK_ARG = flags.HealthCheckArgument('UDP')
     cls.HEALTH_CHECK_ARG.AddArgument(parser)
     health_checks_utils.AddUdpRelatedArgs(parser)
     health_checks_utils.AddProtocolAgnosticCreationArgs(parser, 'UDP')
Exemplo n.º 8
0
 def Args(parser):
     health_checks_utils.AddUdpRelatedArgs(
         parser, request_and_response_required=False)
     health_checks_utils.AddProtocolAgnosticUpdateArgs(parser, 'UDP')