All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blazebit.expression.azure.subscription.model.OperationListResult2 Maven / Gradle / Ivy

/*
 * SubscriptionClient
 * All resource groups and resources exist within subscriptions. These operation enable you get information about your subscriptions and tenants. A tenant is a dedicated instance of Azure Active Directory (Azure AD) for your organization.
 *
 * The version of the OpenAPI document: 2022-12-01
 * 
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */


package com.blazebit.expression.azure.subscription.model;

import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.blazebit.expression.azure.subscription.model.Operation2;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.net.URI;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.blazebit.expression.azure.invoker.JSON;


/**
 * A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results.
 */
@JsonPropertyOrder({
  OperationListResult2.JSON_PROPERTY_VALUE,
  OperationListResult2.JSON_PROPERTY_NEXT_LINK
})
@JsonTypeName("OperationListResult_2")
@com.blazebit.domain.declarative.DomainType
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-12-27T17:30:38.203241700+01:00[Europe/Berlin]", comments = "Generator version: 7.5.0")
public class OperationListResult2 {
  public static final String JSON_PROPERTY_VALUE = "value";
  private List value = new ArrayList<>();

  public static final String JSON_PROPERTY_NEXT_LINK = "nextLink";
  private URI nextLink;

  public OperationListResult2() { 
  }

  @JsonCreator
  public OperationListResult2(
    @JsonProperty(JSON_PROPERTY_VALUE) List value, 
    @JsonProperty(JSON_PROPERTY_NEXT_LINK) URI nextLink
  ) {
    this();
    this.value = value;
    this.nextLink = nextLink;
  }

   /**
   * List of operations supported by the resource provider
   * @return value
  **/
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_VALUE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public List getValue() {
    return value;
  }




   /**
   * URL to get the next set of operation list results (if there are any).
   * @return nextLink
  **/
  @jakarta.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_NEXT_LINK)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public URI getNextLink() {
    return nextLink;
  }




  /**
   * Return true if this OperationListResult_2 object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    OperationListResult2 operationListResult2 = (OperationListResult2) o;
    return Objects.equals(this.value, operationListResult2.value) &&
        Objects.equals(this.nextLink, operationListResult2.nextLink);
  }

  @Override
  public int hashCode() {
    return Objects.hash(value, nextLink);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class OperationListResult2 {\n");
    sb.append("    value: ").append(toIndentedString(value)).append("\n");
    sb.append("    nextLink: ").append(toIndentedString(nextLink)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces
   * (except the first line).
   */
  private String toIndentedString(Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy