Interface ApiObjectMetadata
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ApiObjectMetadata.Jsii$Proxy
@Generated(value="jsii-pacmak/1.73.0 (build 6faeda3)", date="2023-01-13T00:10:07.483Z") @Stability(Stable) public interface ApiObjectMetadata extends software.amazon.jsii.JsiiSerializable
Metadata associated with this object.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ApiObjectMetadata.Builder
A builder forApiObjectMetadata
static class
ApiObjectMetadata.Jsii$Proxy
An implementation forApiObjectMetadata
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static ApiObjectMetadata.Builder
builder()
default Map<String,String>
getAnnotations()
Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata.default List<String>
getFinalizers()
Namespaced keys that tell Kubernetes to wait until specific conditions are met before it fully deletes resources marked for deletion.default Map<String,String>
getLabels()
Map of string keys and values that can be used to organize and categorize (scope and select) objects.default String
getName()
The unique, namespace-global, name of this object inside the Kubernetes cluster.default String
getNamespace()
Namespace defines the space within each name must be unique.default List<OwnerReference>
getOwnerReferences()
List of objects depended by this object.
-
-
-
Method Detail
-
getAnnotations
@Stability(Stable) @Nullable default Map<String,String> getAnnotations()
Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata.They are not queryable and should be preserved when modifying objects.
Default: - No annotations.
-
getFinalizers
@Stability(Stable) @Nullable default List<String> getFinalizers()
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.
-
getLabels
@Stability(Stable) @Nullable default Map<String,String> getLabels()
Map of string keys and values that can be used to organize and categorize (scope and select) objects.May match selectors of replication controllers and services.
Default: - No labels.
-
getName
@Stability(Stable) @Nullable default String getName()
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
-
getNamespace
@Stability(Stable) @Nullable default String getNamespace()
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)
-
getOwnerReferences
@Stability(Stable) @Nullable default List<OwnerReference> getOwnerReferences()
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
-
builder
@Stability(Stable) static ApiObjectMetadata.Builder builder()
- Returns:
- a
ApiObjectMetadata.Builder
ofApiObjectMetadata
-
-