TypedObjectReferenceV1
Class sealed net10.0
Represents a reference to a Kubernetes object with a specified kind and API group.
namespace Aspire.Hosting.Kubernetes.Resources;
public sealed class TypedObjectReferenceV1{ // ...} 5 members
Remarks
Section titled Remarks This class is typically used to define a reference to another resource in the Kubernetes API. It includes information about the object's kind, name, namespace, and API group.
Constructors1
Section titled ConstructorsProperties4
Section titled PropertiesApiGroupget; setstring Gets or sets the API group for the referenced resource. This typically specifies the group under which the Kubernetes resource is classified, for example, "apps", "core", or other custom API groups.
Kindget; setstring Represents the type of the Kubernetes resource referenced. This property denotes the kind of the resource (e.g., Pod, Service, Deployment) being referred to, allowing identification of the specific resource type.
Nameget; setstring Gets or sets the name of the Kubernetes resource.
Namespaceget; setstring Gets or sets the namespace in which the Kubernetes object resides.