Class: Google::Cloud::Compute::V1::TargetHttpsProxiesSetQuicOverrideRequest

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/compute/v1/compute.rb

Defined Under Namespace

Modules: QuicOverride

Instance Attribute Summary collapse

Instance Attribute Details

#quic_override::String

Returns QUIC policy for the TargetHttpsProxy resource. Check the QuicOverride enum for the list of possible values.

Returns:

  • (::String)

    QUIC policy for the TargetHttpsProxy resource. Check the QuicOverride enum for the list of possible values.



25389
25390
25391
25392
25393
25394
25395
25396
25397
25398
25399
25400
25401
25402
25403
25404
25405
25406
25407
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 25389

class TargetHttpsProxiesSetQuicOverrideRequest
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # QUIC policy for the TargetHttpsProxy resource.
  module QuicOverride
    # A value indicating that the enum field is not set.
    UNDEFINED_QUIC_OVERRIDE = 0

    # The load balancer will not attempt to negotiate QUIC with clients.
    DISABLE = 241807048

    # The load balancer will attempt to negotiate QUIC with clients.
    ENABLE = 438835587

    # No overrides to the default QUIC policy. This option is implicit if no QUIC override has been specified in the request.
    NONE = 2402104
  end
end