com.azure.resourcemanager.storage.fluent.models.FileServicePropertiesInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storage.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.ProxyResource;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.storage.models.CorsRules;
import com.azure.resourcemanager.storage.models.DeleteRetentionPolicy;
import com.azure.resourcemanager.storage.models.ProtocolSettings;
import com.azure.resourcemanager.storage.models.Sku;
import java.io.IOException;
/**
* The properties of File services in storage account.
*/
@Fluent
public final class FileServicePropertiesInner extends ProxyResource {
/*
* The properties of File services in storage account.
*/
private FileServicePropertiesProperties innerFileServiceProperties;
/*
* Sku name and tier.
*/
private Sku sku;
/*
* Fully qualified resource Id for the resource.
*/
private String id;
/*
* The name of the resource.
*/
private String name;
/*
* The type of the resource.
*/
private String type;
/**
* Creates an instance of FileServicePropertiesInner class.
*/
public FileServicePropertiesInner() {
}
/**
* Get the innerFileServiceProperties property: The properties of File services in storage account.
*
* @return the innerFileServiceProperties value.
*/
private FileServicePropertiesProperties innerFileServiceProperties() {
return this.innerFileServiceProperties;
}
/**
* Get the sku property: Sku name and tier.
*
* @return the sku value.
*/
public Sku sku() {
return this.sku;
}
/**
* Get the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
@Override
public String id() {
return this.id;
}
/**
* Get the name property: The name of the resource.
*
* @return the name value.
*/
@Override
public String name() {
return this.name;
}
/**
* Get the type property: The type of the resource.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the cors property: Specifies CORS rules for the File service. You can include up to five CorsRule elements in
* the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS
* will be disabled for the File service.
*
* @return the cors value.
*/
public CorsRules cors() {
return this.innerFileServiceProperties() == null ? null : this.innerFileServiceProperties().cors();
}
/**
* Set the cors property: Specifies CORS rules for the File service. You can include up to five CorsRule elements in
* the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS
* will be disabled for the File service.
*
* @param cors the cors value to set.
* @return the FileServicePropertiesInner object itself.
*/
public FileServicePropertiesInner withCors(CorsRules cors) {
if (this.innerFileServiceProperties() == null) {
this.innerFileServiceProperties = new FileServicePropertiesProperties();
}
this.innerFileServiceProperties().withCors(cors);
return this;
}
/**
* Get the shareDeleteRetentionPolicy property: The file service properties for share soft delete.
*
* @return the shareDeleteRetentionPolicy value.
*/
public DeleteRetentionPolicy shareDeleteRetentionPolicy() {
return this.innerFileServiceProperties() == null
? null
: this.innerFileServiceProperties().shareDeleteRetentionPolicy();
}
/**
* Set the shareDeleteRetentionPolicy property: The file service properties for share soft delete.
*
* @param shareDeleteRetentionPolicy the shareDeleteRetentionPolicy value to set.
* @return the FileServicePropertiesInner object itself.
*/
public FileServicePropertiesInner withShareDeleteRetentionPolicy(DeleteRetentionPolicy shareDeleteRetentionPolicy) {
if (this.innerFileServiceProperties() == null) {
this.innerFileServiceProperties = new FileServicePropertiesProperties();
}
this.innerFileServiceProperties().withShareDeleteRetentionPolicy(shareDeleteRetentionPolicy);
return this;
}
/**
* Get the protocolSettings property: Protocol settings for file service.
*
* @return the protocolSettings value.
*/
public ProtocolSettings protocolSettings() {
return this.innerFileServiceProperties() == null ? null : this.innerFileServiceProperties().protocolSettings();
}
/**
* Set the protocolSettings property: Protocol settings for file service.
*
* @param protocolSettings the protocolSettings value to set.
* @return the FileServicePropertiesInner object itself.
*/
public FileServicePropertiesInner withProtocolSettings(ProtocolSettings protocolSettings) {
if (this.innerFileServiceProperties() == null) {
this.innerFileServiceProperties = new FileServicePropertiesProperties();
}
this.innerFileServiceProperties().withProtocolSettings(protocolSettings);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerFileServiceProperties() != null) {
innerFileServiceProperties().validate();
}
if (sku() != null) {
sku().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("properties", this.innerFileServiceProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of FileServicePropertiesInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of FileServicePropertiesInner 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 FileServicePropertiesInner.
*/
public static FileServicePropertiesInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
FileServicePropertiesInner deserializedFileServicePropertiesInner = new FileServicePropertiesInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedFileServicePropertiesInner.id = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedFileServicePropertiesInner.name = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedFileServicePropertiesInner.type = reader.getString();
} else if ("properties".equals(fieldName)) {
deserializedFileServicePropertiesInner.innerFileServiceProperties
= FileServicePropertiesProperties.fromJson(reader);
} else if ("sku".equals(fieldName)) {
deserializedFileServicePropertiesInner.sku = Sku.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedFileServicePropertiesInner;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy