Interface ManagedFieldsEntry
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ManagedFieldsEntry.Jsii$Proxy
@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-05T02:57:36.664Z") @Stability(Stable) public interface ManagedFieldsEntry extends software.amazon.jsii.JsiiSerializable
ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
ManagedFieldsEntry.Builder
A builder forManagedFieldsEntry
static class
ManagedFieldsEntry.Jsii$Proxy
An implementation forManagedFieldsEntry
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static ManagedFieldsEntry.Builder
builder()
default String
getApiVersion()
APIVersion defines the version of this resource that this field set applies to.default String
getFieldsType()
FieldsType is the discriminator for the different fields format and version.default Object
getFieldsV1()
FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.default String
getManager()
Manager is an identifier of the workflow managing these fields.default String
getOperation()
Operation is the type of operation which lead to this ManagedFieldsEntry being created.default String
getSubresource()
Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource.default Instant
getTime()
Time is the timestamp of when the ManagedFields entry was added.
-
-
-
Method Detail
-
getApiVersion
@Stability(Stable) @Nullable default String getApiVersion()
APIVersion defines the version of this resource that this field set applies to.The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
-
getFieldsType
@Stability(Stable) @Nullable default String getFieldsType()
FieldsType is the discriminator for the different fields format and version.There is currently only one possible value: "FieldsV1"
-
getFieldsV1
@Stability(Stable) @Nullable default Object getFieldsV1()
FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
-
getManager
@Stability(Stable) @Nullable default String getManager()
Manager is an identifier of the workflow managing these fields.
-
getOperation
@Stability(Stable) @Nullable default String getOperation()
Operation is the type of operation which lead to this ManagedFieldsEntry being created.The only valid values for this field are 'Apply' and 'Update'.
-
getSubresource
@Stability(Stable) @Nullable default String getSubresource()
Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource.The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource.
-
getTime
@Stability(Stable) @Nullable default Instant getTime()
Time is the timestamp of when the ManagedFields entry was added.The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over.
-
builder
@Stability(Stable) static ManagedFieldsEntry.Builder builder()
- Returns:
- a
ManagedFieldsEntry.Builder
ofManagedFieldsEntry
-
-