All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nutanix.dp1.pri.prism.v4.config.TaskReferenceInternal Maven / Gradle / Ivy

/*
 * Generated file ..
 *
 * Product version: 4.0.3-alpha-2
 *
 * Part of the Nutanix Prism Versioned APIs
 *
 * (c) 2023 Nutanix Inc.  All rights reserved
 *
 */

package com.nutanix.dp1.pri.prism.v4.config;

import com.fasterxml.jackson.annotation.JsonAnySetter;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import lombok.AccessLevel;
import com.nutanix.devplatform.models.PrettyModeViews.*;
import com.fasterxml.jackson.annotation.JsonView;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.nutanix.dp1.pri.deserializers.PriObjectTypeTypedObject;

import javax.validation.constraints.*;

import java.util.List;
import java.util.Map;

import static com.nutanix.dp1.pri.deserializers.PriDeserializerUtils.*;


/**
 * Reference to the parent task associated with the current task.
 */


@EqualsAndHashCode(callSuper=true)
@Data
@lombok.extern.slf4j.Slf4j
public class TaskReferenceInternal extends com.nutanix.dp1.pri.common.v1.response.ApiLink implements java.io.Serializable, PriObjectTypeTypedObject {

  

  public TaskReferenceInternal() {
    super();
    
  }

  @lombok.Builder(builderMethodName = "TaskReferenceInternalBuilder")
  public TaskReferenceInternal(String href, String rel, String extId) {
    super(href, rel);

    this.setExtId(extId);
  }

  @Override 
  protected String initialize$objectType() {
    return "prism.v4.config.TaskReferenceInternal";
  }

  @Override 
  protected String initialize$fqObjectType() {
    return "prism.v4.r0.a2.config.TaskReferenceInternal";
  }


  

    @javax.validation.constraints.Pattern(regexp="^[a-zA-Z0-9/+]*={0,2}:[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}")
    
    
    
    private String extId = null;
  
    /**
     * A globally unique identifier of the task.
     */
    public void setExtId(String extId) {
      if (this.extId == null) {
        this.extId = extId;
      }
      else {
        log.warn("Read-only property extId already contains a non-null value and cannot be set again");
      }
    }
  
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy