Class IngressBackendArgs
IngressBackend describes all endpoints for a given service and port.
Inherited Members
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 SourceResource
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> |
ServiceName
Specifies the name of the referenced service.
Declaration
public Input<string> ServiceName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |