com.azure.resourcemanager.databoxedge.fluent.models.ShareInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-databoxedge Show documentation
Show all versions of azure-resourcemanager-databoxedge Show documentation
This package contains Microsoft Azure SDK for DataBoxEdge Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2019-08.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.databoxedge.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.databoxedge.models.ArmBaseModel;
import com.azure.resourcemanager.databoxedge.models.AzureContainerInfo;
import com.azure.resourcemanager.databoxedge.models.ClientAccessRight;
import com.azure.resourcemanager.databoxedge.models.DataPolicy;
import com.azure.resourcemanager.databoxedge.models.MonitoringStatus;
import com.azure.resourcemanager.databoxedge.models.MountPointMap;
import com.azure.resourcemanager.databoxedge.models.RefreshDetails;
import com.azure.resourcemanager.databoxedge.models.ShareAccessProtocol;
import com.azure.resourcemanager.databoxedge.models.ShareStatus;
import com.azure.resourcemanager.databoxedge.models.UserAccessRight;
import java.io.IOException;
import java.util.List;
/**
* Represents a share on the Data Box Edge/Gateway device.
*/
@Fluent
public final class ShareInner extends ArmBaseModel {
/*
* The share properties.
*/
private ShareProperties innerProperties = new ShareProperties();
/*
* The type of the resource.
*/
private String type;
/*
* The name of the resource.
*/
private String name;
/*
* Fully qualified resource Id for the resource.
*/
private String id;
/**
* Creates an instance of ShareInner class.
*/
public ShareInner() {
}
/**
* Get the innerProperties property: The share properties.
*
* @return the innerProperties value.
*/
private ShareProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the type property: The type of the resource.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the name property: The name of the resource.
*
* @return the name value.
*/
@Override
public String name() {
return this.name;
}
/**
* Get the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
@Override
public String id() {
return this.id;
}
/**
* Get the description property: Description for the share.
*
* @return the description value.
*/
public String description() {
return this.innerProperties() == null ? null : this.innerProperties().description();
}
/**
* Set the description property: Description for the share.
*
* @param description the description value to set.
* @return the ShareInner object itself.
*/
public ShareInner withDescription(String description) {
if (this.innerProperties() == null) {
this.innerProperties = new ShareProperties();
}
this.innerProperties().withDescription(description);
return this;
}
/**
* Get the shareStatus property: Current status of the share.
*
* @return the shareStatus value.
*/
public ShareStatus shareStatus() {
return this.innerProperties() == null ? null : this.innerProperties().shareStatus();
}
/**
* Set the shareStatus property: Current status of the share.
*
* @param shareStatus the shareStatus value to set.
* @return the ShareInner object itself.
*/
public ShareInner withShareStatus(ShareStatus shareStatus) {
if (this.innerProperties() == null) {
this.innerProperties = new ShareProperties();
}
this.innerProperties().withShareStatus(shareStatus);
return this;
}
/**
* Get the monitoringStatus property: Current monitoring status of the share.
*
* @return the monitoringStatus value.
*/
public MonitoringStatus monitoringStatus() {
return this.innerProperties() == null ? null : this.innerProperties().monitoringStatus();
}
/**
* Set the monitoringStatus property: Current monitoring status of the share.
*
* @param monitoringStatus the monitoringStatus value to set.
* @return the ShareInner object itself.
*/
public ShareInner withMonitoringStatus(MonitoringStatus monitoringStatus) {
if (this.innerProperties() == null) {
this.innerProperties = new ShareProperties();
}
this.innerProperties().withMonitoringStatus(monitoringStatus);
return this;
}
/**
* Get the azureContainerInfo property: Azure container mapping for the share.
*
* @return the azureContainerInfo value.
*/
public AzureContainerInfo azureContainerInfo() {
return this.innerProperties() == null ? null : this.innerProperties().azureContainerInfo();
}
/**
* Set the azureContainerInfo property: Azure container mapping for the share.
*
* @param azureContainerInfo the azureContainerInfo value to set.
* @return the ShareInner object itself.
*/
public ShareInner withAzureContainerInfo(AzureContainerInfo azureContainerInfo) {
if (this.innerProperties() == null) {
this.innerProperties = new ShareProperties();
}
this.innerProperties().withAzureContainerInfo(azureContainerInfo);
return this;
}
/**
* Get the accessProtocol property: Access protocol to be used by the share.
*
* @return the accessProtocol value.
*/
public ShareAccessProtocol accessProtocol() {
return this.innerProperties() == null ? null : this.innerProperties().accessProtocol();
}
/**
* Set the accessProtocol property: Access protocol to be used by the share.
*
* @param accessProtocol the accessProtocol value to set.
* @return the ShareInner object itself.
*/
public ShareInner withAccessProtocol(ShareAccessProtocol accessProtocol) {
if (this.innerProperties() == null) {
this.innerProperties = new ShareProperties();
}
this.innerProperties().withAccessProtocol(accessProtocol);
return this;
}
/**
* Get the userAccessRights property: Mapping of users and corresponding access rights on the share (required for
* SMB protocol).
*
* @return the userAccessRights value.
*/
public List userAccessRights() {
return this.innerProperties() == null ? null : this.innerProperties().userAccessRights();
}
/**
* Set the userAccessRights property: Mapping of users and corresponding access rights on the share (required for
* SMB protocol).
*
* @param userAccessRights the userAccessRights value to set.
* @return the ShareInner object itself.
*/
public ShareInner withUserAccessRights(List userAccessRights) {
if (this.innerProperties() == null) {
this.innerProperties = new ShareProperties();
}
this.innerProperties().withUserAccessRights(userAccessRights);
return this;
}
/**
* Get the clientAccessRights property: List of IP addresses and corresponding access rights on the share(required
* for NFS protocol).
*
* @return the clientAccessRights value.
*/
public List clientAccessRights() {
return this.innerProperties() == null ? null : this.innerProperties().clientAccessRights();
}
/**
* Set the clientAccessRights property: List of IP addresses and corresponding access rights on the share(required
* for NFS protocol).
*
* @param clientAccessRights the clientAccessRights value to set.
* @return the ShareInner object itself.
*/
public ShareInner withClientAccessRights(List clientAccessRights) {
if (this.innerProperties() == null) {
this.innerProperties = new ShareProperties();
}
this.innerProperties().withClientAccessRights(clientAccessRights);
return this;
}
/**
* Get the refreshDetails property: Details of the refresh job on this share.
*
* @return the refreshDetails value.
*/
public RefreshDetails refreshDetails() {
return this.innerProperties() == null ? null : this.innerProperties().refreshDetails();
}
/**
* Set the refreshDetails property: Details of the refresh job on this share.
*
* @param refreshDetails the refreshDetails value to set.
* @return the ShareInner object itself.
*/
public ShareInner withRefreshDetails(RefreshDetails refreshDetails) {
if (this.innerProperties() == null) {
this.innerProperties = new ShareProperties();
}
this.innerProperties().withRefreshDetails(refreshDetails);
return this;
}
/**
* Get the shareMappings property: Share mount point to the role.
*
* @return the shareMappings value.
*/
public List shareMappings() {
return this.innerProperties() == null ? null : this.innerProperties().shareMappings();
}
/**
* Get the dataPolicy property: Data policy of the share.
*
* @return the dataPolicy value.
*/
public DataPolicy dataPolicy() {
return this.innerProperties() == null ? null : this.innerProperties().dataPolicy();
}
/**
* Set the dataPolicy property: Data policy of the share.
*
* @param dataPolicy the dataPolicy value to set.
* @return the ShareInner object itself.
*/
public ShareInner withDataPolicy(DataPolicy dataPolicy) {
if (this.innerProperties() == null) {
this.innerProperties = new ShareProperties();
}
this.innerProperties().withDataPolicy(dataPolicy);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
if (innerProperties() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property innerProperties in model ShareInner"));
} else {
innerProperties().validate();
}
}
private static final ClientLogger LOGGER = new ClientLogger(ShareInner.class);
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of ShareInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of ShareInner if the JsonReader was pointing to an instance of it, or null if it was pointing
* to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the ShareInner.
*/
public static ShareInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
ShareInner deserializedShareInner = new ShareInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedShareInner.id = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedShareInner.name = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedShareInner.type = reader.getString();
} else if ("properties".equals(fieldName)) {
deserializedShareInner.innerProperties = ShareProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedShareInner;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy