cis tagging category: update spec

The update_spec structure describes the updates to be made to an existing category.

Use the update operation to modify a category. When you call the operation, specify the category identifier. You obtain the category identifier when you call the create operation. You can also retrieve an identifier by using the list operation.

Representation:

{
    "associable_types"[
        "string",
        "string"
    ],
    "cardinality""SINGLE",
    "description""string",
    "name""string"
}

Attributes:

Name Type Description
Optional
name string The display name of the category.

Optional. If unset the name will not be modified.

description string The description of the category.

Optional. If unset the description will not be modified.

cardinality string The associated cardinality (SINGLE, MULTIPLE) of the category.

Optional. If unset the cardinality will not be modified.

associable_types string[] Object types to which this category's tags can be attached.

The set of associable types cannot be updated incrementally. For example, if cis.tagging.category.update_spec.associable_types originally contains {A,B,C} and you want to add D, then you need to pass {A,B,C,D} in your update specification. You also cannot remove any item from this set. For example, if you have {A,B,C}, then you cannot remove say {A} from it. Similarly, if you start with an empty set, then that implies that you can tag any object and hence you cannot later pass say {A}, because that would be restricting the type of objects you want to tag. Thus, associable types can only grow and not shrink.

Optional. If unset the associable types will not be modified.