PutRepositoryTagDetails

class oci.devops.models.PutRepositoryTagDetails(**kwargs)

Bases: oci.devops.models.put_repository_ref_details.PutRepositoryRefDetails

The information needed to create a lightweight tag.

Attributes

REF_TYPE_BRANCH str(object=’’) -> str
REF_TYPE_TAG str(object=’’) -> str
object_id [Required] Gets the object_id of this PutRepositoryTagDetails.
ref_type [Required] Gets the ref_type of this PutRepositoryRefDetails.

Methods

__init__(**kwargs) Initializes a new PutRepositoryTagDetails object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
REF_TYPE_BRANCH = 'BRANCH'
REF_TYPE_TAG = 'TAG'
__init__(**kwargs)

Initializes a new PutRepositoryTagDetails object with values from keyword arguments. The default value of the ref_type attribute of this class is TAG and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • ref_type (str) – The value to assign to the ref_type property of this PutRepositoryTagDetails. Allowed values for this property are: “BRANCH”, “TAG”
  • object_id (str) – The value to assign to the object_id property of this PutRepositoryTagDetails.
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

object_id

[Required] Gets the object_id of this PutRepositoryTagDetails. SHA-1 hash value of the object pointed to by the tag.

Returns:The object_id of this PutRepositoryTagDetails.
Return type:str
ref_type

[Required] Gets the ref_type of this PutRepositoryRefDetails. The type of reference (BRANCH or TAG).

Allowed values for this property are: “BRANCH”, “TAG”

Returns:The ref_type of this PutRepositoryRefDetails.
Return type:str