com.capitalone.dashboard.model.QCloudVolumeStorage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.model;
import static com.querydsl.core.types.PathMetadataFactory.*;
import com.querydsl.core.types.dsl.*;
import com.querydsl.core.types.PathMetadata;
import javax.annotation.Generated;
import com.querydsl.core.types.Path;
import com.querydsl.core.types.dsl.PathInits;
/**
* QCloudVolumeStorage is a Querydsl query type for CloudVolumeStorage
*/
@Generated("com.querydsl.codegen.EntitySerializer")
public class QCloudVolumeStorage extends EntityPathBase {
private static final long serialVersionUID = -1707352786L;
private static final PathInits INITS = PathInits.DIRECT2;
public static final QCloudVolumeStorage cloudVolumeStorage = new QCloudVolumeStorage("cloudVolumeStorage");
public final QBaseModel _super;
public final StringPath accountNumber = createString("accountNumber");
public final ListPath attachInstances = this.createList("attachInstances", String.class, StringPath.class, PathInits.DIRECT2);
//inherited
public final StringPath clientReference;
public final NumberPath creationDate = createNumber("creationDate", Long.class);
public final BooleanPath encrypted = createBoolean("encrypted");
// inherited
public final org.bson.types.QObjectId id;
public final NumberPath size = createNumber("size", Integer.class);
public final StringPath status = createString("status");
public final ListPath tags = this.createList("tags", NameValue.class, QNameValue.class, PathInits.DIRECT2);
public final StringPath type = createString("type");
//inherited
public final DateTimePath upsertTime;
public final StringPath volumeId = createString("volumeId");
public final StringPath zone = createString("zone");
public QCloudVolumeStorage(String variable) {
this(CloudVolumeStorage.class, forVariable(variable), INITS);
}
public QCloudVolumeStorage(Path extends CloudVolumeStorage> path) {
this(path.getType(), path.getMetadata(), PathInits.getFor(path.getMetadata(), INITS));
}
public QCloudVolumeStorage(PathMetadata metadata) {
this(metadata, PathInits.getFor(metadata, INITS));
}
public QCloudVolumeStorage(PathMetadata metadata, PathInits inits) {
this(CloudVolumeStorage.class, metadata, inits);
}
public QCloudVolumeStorage(Class extends CloudVolumeStorage> type, PathMetadata metadata, PathInits inits) {
super(type, metadata, inits);
this._super = new QBaseModel(type, metadata, inits);
this.clientReference = _super.clientReference;
this.id = _super.id;
this.upsertTime = _super.upsertTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy