com.google.api.services.healthcare.v1.model.BlobStorageInfo Maven / Gradle / Ivy
The newest version!
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/
package com.google.api.services.healthcare.v1.model;
/**
* BlobStorageInfo contains details about the data stored in Blob Storage for the referenced
* resource. Note: Storage class is only valid for DICOM and hence will only be populated for DICOM
* resources.
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Cloud Healthcare API. For a detailed explanation see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class BlobStorageInfo extends com.google.api.client.json.GenericJson {
/**
* Size in bytes of data stored in Blob Storage.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
private java.lang.Long sizeBytes;
/**
* The storage class in which the Blob data is stored.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String storageClass;
/**
* The time at which the storage class was updated. This is used to compute early deletion fees of
* the resource.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String storageClassUpdateTime;
/**
* Size in bytes of data stored in Blob Storage.
* @return value or {@code null} for none
*/
public java.lang.Long getSizeBytes() {
return sizeBytes;
}
/**
* Size in bytes of data stored in Blob Storage.
* @param sizeBytes sizeBytes or {@code null} for none
*/
public BlobStorageInfo setSizeBytes(java.lang.Long sizeBytes) {
this.sizeBytes = sizeBytes;
return this;
}
/**
* The storage class in which the Blob data is stored.
* @return value or {@code null} for none
*/
public java.lang.String getStorageClass() {
return storageClass;
}
/**
* The storage class in which the Blob data is stored.
* @param storageClass storageClass or {@code null} for none
*/
public BlobStorageInfo setStorageClass(java.lang.String storageClass) {
this.storageClass = storageClass;
return this;
}
/**
* The time at which the storage class was updated. This is used to compute early deletion fees of
* the resource.
* @return value or {@code null} for none
*/
public String getStorageClassUpdateTime() {
return storageClassUpdateTime;
}
/**
* The time at which the storage class was updated. This is used to compute early deletion fees of
* the resource.
* @param storageClassUpdateTime storageClassUpdateTime or {@code null} for none
*/
public BlobStorageInfo setStorageClassUpdateTime(String storageClassUpdateTime) {
this.storageClassUpdateTime = storageClassUpdateTime;
return this;
}
@Override
public BlobStorageInfo set(String fieldName, Object value) {
return (BlobStorageInfo) super.set(fieldName, value);
}
@Override
public BlobStorageInfo clone() {
return (BlobStorageInfo) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy