Package org.cdk8s

Class ApiObjectMetadata.Jsii$Proxy

    • Constructor Detail

      • Jsii$Proxy

        protected Jsii$Proxy​(software.amazon.jsii.JsiiObjectRef objRef)
        Constructor that initializes the object based on values retrieved from the JsiiObject.
        Parameters:
        objRef - Reference to the JSII managed object.
    • Method Detail

      • getFinalizers

        public final List<String> getFinalizers()
        Description copied from interface: ApiObjectMetadata
        Namespaced keys that tell Kubernetes to wait until specific conditions are met before it fully deletes resources marked for deletion.

        Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.

        Default: - No finalizers.

        Specified by:
        getFinalizers in interface ApiObjectMetadata
        See Also:
        https://kubernetes.io/docs/concepts/overview/working-with-objects/finalizers/
      • getName

        public final String getName()
        Description copied from interface: ApiObjectMetadata
        The unique, namespace-global, name of this object inside the Kubernetes cluster.

        Normally, you shouldn't specify names for objects and let the CDK generate a name for you that is application-unique. The names CDK generates are composed from the construct path components, separated by dots and a suffix that is based on a hash of the entire path, to ensure uniqueness.

        You can supply custom name allocation logic by overriding the chart.generateObjectName method.

        If you use an explicit name here, bear in mind that this reduces the composability of your construct because it won't be possible to include more than one instance in any app. Therefore it is highly recommended to leave this unspecified.

        Default: - an app-unique name generated by the chart

        Specified by:
        getName in interface ApiObjectMetadata
      • getNamespace

        public final String getNamespace()
        Description copied from interface: ApiObjectMetadata
        Namespace defines the space within each name must be unique.

        An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty. Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces

        Default: undefined (will be assigned to the 'default' namespace)

        Specified by:
        getNamespace in interface ApiObjectMetadata
      • getOwnerReferences

        public final List<OwnerReference> getOwnerReferences()
        Description copied from interface: ApiObjectMetadata
        List of objects depended by this object.

        If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.

        Kubernetes sets the value of this field automatically for objects that are dependents of other objects like ReplicaSets, DaemonSets, Deployments, Jobs and CronJobs, and ReplicationControllers. You can also configure these relationships manually by changing the value of this field. However, you usually don't need to and can allow Kubernetes to automatically manage the relationships.

        Default: - automatically set by Kubernetes

        Specified by:
        getOwnerReferences in interface ApiObjectMetadata
        See Also:
        https://kubernetes.io/docs/concepts/overview/working-with-objects/owners-dependents/
      • $jsii$toJson

        @Internal
        public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
        Specified by:
        $jsii$toJson in interface software.amazon.jsii.JsiiSerializable
      • hashCode

        public final int hashCode()
        Overrides:
        hashCode in class Object