com.azure.resourcemanager.storage.fluent.models.OperationInner 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.resourcemanager.storage.models.OperationDisplay;
import com.azure.resourcemanager.storage.models.ServiceSpecification;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Storage REST API operation definition.
*/
@Fluent
public final class OperationInner {
/*
* Operation name: {provider}/{resource}/{operation}
*/
@JsonProperty(value = "name")
private String name;
/*
* Display metadata associated with the operation.
*/
@JsonProperty(value = "display")
private OperationDisplay display;
/*
* The origin of operations.
*/
@JsonProperty(value = "origin")
private String origin;
/*
* Properties of operation, include metric specifications.
*/
@JsonProperty(value = "properties")
private OperationProperties innerOperationProperties;
/**
* Creates an instance of OperationInner class.
*/
public OperationInner() {
}
/**
* Get the name property: Operation name: {provider}/{resource}/{operation}.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: Operation name: {provider}/{resource}/{operation}.
*
* @param name the name value to set.
* @return the OperationInner object itself.
*/
public OperationInner withName(String name) {
this.name = name;
return this;
}
/**
* Get the display property: Display metadata associated with the operation.
*
* @return the display value.
*/
public OperationDisplay display() {
return this.display;
}
/**
* Set the display property: Display metadata associated with the operation.
*
* @param display the display value to set.
* @return the OperationInner object itself.
*/
public OperationInner withDisplay(OperationDisplay display) {
this.display = display;
return this;
}
/**
* Get the origin property: The origin of operations.
*
* @return the origin value.
*/
public String origin() {
return this.origin;
}
/**
* Set the origin property: The origin of operations.
*
* @param origin the origin value to set.
* @return the OperationInner object itself.
*/
public OperationInner withOrigin(String origin) {
this.origin = origin;
return this;
}
/**
* Get the innerOperationProperties property: Properties of operation, include metric specifications.
*
* @return the innerOperationProperties value.
*/
private OperationProperties innerOperationProperties() {
return this.innerOperationProperties;
}
/**
* Get the serviceSpecification property: One property of operation, include metric specifications.
*
* @return the serviceSpecification value.
*/
public ServiceSpecification serviceSpecification() {
return this.innerOperationProperties() == null ? null : this.innerOperationProperties().serviceSpecification();
}
/**
* Set the serviceSpecification property: One property of operation, include metric specifications.
*
* @param serviceSpecification the serviceSpecification value to set.
* @return the OperationInner object itself.
*/
public OperationInner withServiceSpecification(ServiceSpecification serviceSpecification) {
if (this.innerOperationProperties() == null) {
this.innerOperationProperties = new OperationProperties();
}
this.innerOperationProperties().withServiceSpecification(serviceSpecification);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (display() != null) {
display().validate();
}
if (innerOperationProperties() != null) {
innerOperationProperties().validate();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy