Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for HTTPIngressPath (0.35 sec)

  1. staging/src/k8s.io/api/networking/v1beta1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/networking/v1beta1";
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. pkg/apis/networking/types.go

    	// paths is a collection of paths that map requests to backends.
    	// +listType=atomic
    	Paths []HTTPIngressPath
    	// TODO: Consider adding fields for ingress-type specific global
    	// options usable by a loadbalancer, like http keep-alive.
    }
    
    // PathType represents the type of path referred to by a HTTPIngressPath.
    type PathType string
    
    const (
    	// PathTypeExact matches the URL path exactly and with case sensitivity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1beta1/types_swagger_doc_generated.go

    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_HTTPIngressPath = map[string]string{
    	"":         "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/types.go

    // or '#'.
    type HTTPIngressRuleValue struct {
    	// paths is a collection of paths that map requests to backends.
    	// +listType=atomic
    	Paths []HTTPIngressPath `json:"paths" protobuf:"bytes,1,rep,name=paths"`
    }
    
    // PathType represents the type of path referred to by a HTTPIngressPath.
    // +enum
    type PathType string
    
    const (
    	// PathTypeExact matches the URL path exactly and with case sensitivity.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/networking/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/networking/v1";
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/networking/v1";
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    // path are forwarded to the backend.
    message HTTPIngressPath {
      // path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    func (m *HTTPIngressPath) Reset()      { *m = HTTPIngressPath{} }
    func (*HTTPIngressPath) ProtoMessage() {}
    func (*HTTPIngressPath) Descriptor() ([]byte, []int) {
    	return fileDescriptor_90a532284de28347, []int{13}
    }
    func (m *HTTPIngressPath) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *HTTPIngressPath) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/networking/v1/types_swagger_doc_generated.go

    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_HTTPIngressPath = map[string]string{
    	"":         "HTTPIngressPath associates a path with a backend. Incoming urls matching the path are forwarded to the backend.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/extensions/v1beta1/generated.proto

      // to be.
      // +optional
      optional RollingUpdateDeployment rollingUpdate = 2;
    }
    
    // HTTPIngressPath associates a path with a backend. Incoming urls matching the
    // path are forwarded to the backend.
    message HTTPIngressPath {
      // Path is matched against the path of an incoming request. Currently it can
      // contain characters disallowed from the conventional "path" part of a URL
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// A collection of paths that map requests to backends.
    	// +listType=atomic
    	Paths []HTTPIngressPath `json:"paths" protobuf:"bytes,1,rep,name=paths"`
    	// TODO: Consider adding fields for ingress-type specific global
    	// options usable by a loadbalancer, like http keep-alive.
    }
    
    // PathType represents the type of path referred to by a HTTPIngressPath.
    type PathType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top