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

com.nutanix.dp1.vmm.dataprotection.v4.common.VendorSpecificProperty Maven / Gradle / Ivy

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

package com.nutanix.dp1.vmm.dataprotection.v4.common;

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.vmm.deserializers.VmmObjectTypeTypedObject;

import javax.validation.constraints.*;

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

import static com.nutanix.dp1.vmm.deserializers.VmmDeserializerUtils.*;


/**
 * Additional metadata provided by the client at the time of Recovery point creation.
 */



@Data
@lombok.extern.slf4j.Slf4j
public class VendorSpecificProperty implements java.io.Serializable, VmmObjectTypeTypedObject {

  

  public VendorSpecificProperty() {

    this.$objectType = this.initialize$objectType();
    this.$reserved = new java.util.LinkedHashMap<>();
    this.$reserved.put("$fqObjectType", this.initialize$fqObjectType());
    this.$unknownFields = new java.util.LinkedHashMap<>();

  }

  @lombok.Builder(builderMethodName = "VendorSpecificPropertyBuilder")
  public VendorSpecificProperty(String vendorId, byte[] vendorMetadata) {
    this.$objectType = this.initialize$objectType();
    this.$reserved = new java.util.LinkedHashMap<>();
    this.$reserved.put("$fqObjectType", this.initialize$fqObjectType());
    this.$unknownFields = new java.util.LinkedHashMap<>();

    this.setVendorId(vendorId);

    this.setVendorMetadata(vendorMetadata);
  }


  protected String initialize$objectType() {
    return "dataprotection.v4.common.VendorSpecificProperty";
  }


  protected String initialize$fqObjectType() {
    return "dataprotection.v4.r0.a2.common.VendorSpecificProperty";
  }

  @JsonAnySetter
  private void setUndeserializedFields(String name, String value) {
    $unknownFields.put(name, value);
  }


  
  

  
    /**
    * The unique identifier of the vendor. It can be a magic number, UUID or vendor name.
    */
    
    @JsonProperty("vendorId")
    public String vendorId = null;
  
  

  
    /**
    * This is an opaque data interpreted only by the respective vendor.
    */
    
    @JsonProperty("vendorMetadata")
    public byte[] vendorMetadata = null;
  
  

  
    
    
    @Getter
    @JsonView({StandardView.class})
    
    protected final Map $reserved;
  
  

  
    
    
    @Getter
    @JsonView({StandardView.class})
    
    protected final String $objectType;
  
  

  
    
    
    @Getter
    @JsonView({StandardView.class})
    
    protected final Map $unknownFields;
  
  

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy