Show / Hide Table of Contents

Class IngressBackendArgs

IngressBackend describes all endpoints for a given service and port.

Inheritance
System.Object
InputArgs
ResourceArgs
IngressBackendArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Networking.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class IngressBackendArgs : ResourceArgs

Properties

View Source

Resource

Resource is an ObjectRef to another Kubernetes resource in the namespace of the Ingress object. If resource is specified, serviceName and servicePort must not be specified.

Declaration
public Input<TypedLocalObjectReferenceArgs> Resource { get; set; }
Property Value
Type Description
Input<TypedLocalObjectReferenceArgs>
View Source

ServiceName

Specifies the name of the referenced service.

Declaration
public Input<string> ServiceName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

ServicePort

Specifies the port of the referenced service.

Declaration
public InputUnion<int, string> ServicePort { get; set; }
Property Value
Type Description
InputUnion<System.Int32, System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.