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

com.google.cloud.aiplatform.v1.spring.ModelServiceSpringProperties Maven / Gradle / Ivy

There is a newer version: 5.6.1-preview
Show newest version
/*
 * Copyright 2024 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.cloud.aiplatform.v1.spring;

import com.google.api.core.BetaApi;
import com.google.cloud.spring.core.Credentials;
import com.google.cloud.spring.core.CredentialsSupplier;
import com.google.cloud.spring.core.Retry;
import javax.annotation.Generated;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.NestedConfigurationProperty;

// AUTO-GENERATED DOCUMENTATION AND CLASS.
/** Provides default property values for ModelService client bean */
@Generated("by google-cloud-spring-generator")
@BetaApi("Autogenerated Spring autoconfiguration is not yet stable")
@ConfigurationProperties("com.google.cloud.aiplatform.v1.model-service")
public class ModelServiceSpringProperties implements CredentialsSupplier {
  /** OAuth2 credentials to authenticate and authorize calls to Google Cloud Client Libraries. */
  @NestedConfigurationProperty
  private final Credentials credentials =
      new Credentials("https://www.googleapis.com/auth/cloud-platform");
  /** Quota project to use for billing. */
  private String quotaProjectId;
  /** Number of threads used for executors. */
  private Integer executorThreadCount;
  /** Allow override of retry settings at service level, applying to all of its RPC methods. */
  @NestedConfigurationProperty private Retry retry;
  /**
   * Allow override of retry settings at method-level for getModel. If defined, this takes
   * precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry getModelRetry;
  /**
   * Allow override of retry settings at method-level for listModels. If defined, this takes
   * precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry listModelsRetry;
  /**
   * Allow override of retry settings at method-level for listModelVersions. If defined, this takes
   * precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry listModelVersionsRetry;
  /**
   * Allow override of retry settings at method-level for updateModel. If defined, this takes
   * precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry updateModelRetry;
  /**
   * Allow override of retry settings at method-level for mergeVersionAliases. If defined, this
   * takes precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry mergeVersionAliasesRetry;
  /**
   * Allow override of retry settings at method-level for importModelEvaluation. If defined, this
   * takes precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry importModelEvaluationRetry;
  /**
   * Allow override of retry settings at method-level for batchImportModelEvaluationSlices. If
   * defined, this takes precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry batchImportModelEvaluationSlicesRetry;
  /**
   * Allow override of retry settings at method-level for batchImportEvaluatedAnnotations. If
   * defined, this takes precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry batchImportEvaluatedAnnotationsRetry;
  /**
   * Allow override of retry settings at method-level for getModelEvaluation. If defined, this takes
   * precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry getModelEvaluationRetry;
  /**
   * Allow override of retry settings at method-level for listModelEvaluations. If defined, this
   * takes precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry listModelEvaluationsRetry;
  /**
   * Allow override of retry settings at method-level for getModelEvaluationSlice. If defined, this
   * takes precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry getModelEvaluationSliceRetry;
  /**
   * Allow override of retry settings at method-level for listModelEvaluationSlices. If defined,
   * this takes precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry listModelEvaluationSlicesRetry;
  /**
   * Allow override of retry settings at method-level for listLocations. If defined, this takes
   * precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry listLocationsRetry;
  /**
   * Allow override of retry settings at method-level for getLocation. If defined, this takes
   * precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry getLocationRetry;
  /**
   * Allow override of retry settings at method-level for setIamPolicy. If defined, this takes
   * precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry setIamPolicyRetry;
  /**
   * Allow override of retry settings at method-level for getIamPolicy. If defined, this takes
   * precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry getIamPolicyRetry;
  /**
   * Allow override of retry settings at method-level for testIamPermissions. If defined, this takes
   * precedence over service-level retry configurations for that RPC method.
   */
  @NestedConfigurationProperty private Retry testIamPermissionsRetry;

  @Override
  public Credentials getCredentials() {
    return this.credentials;
  }

  public String getQuotaProjectId() {
    return this.quotaProjectId;
  }

  public void setQuotaProjectId(String quotaProjectId) {
    this.quotaProjectId = quotaProjectId;
  }

  public Integer getExecutorThreadCount() {
    return this.executorThreadCount;
  }

  public void setExecutorThreadCount(Integer executorThreadCount) {
    this.executorThreadCount = executorThreadCount;
  }

  public Retry getRetry() {
    return this.retry;
  }

  public void setRetry(Retry retry) {
    this.retry = retry;
  }

  public Retry getGetModelRetry() {
    return this.getModelRetry;
  }

  public void setGetModelRetry(Retry getModelRetry) {
    this.getModelRetry = getModelRetry;
  }

  public Retry getListModelsRetry() {
    return this.listModelsRetry;
  }

  public void setListModelsRetry(Retry listModelsRetry) {
    this.listModelsRetry = listModelsRetry;
  }

  public Retry getListModelVersionsRetry() {
    return this.listModelVersionsRetry;
  }

  public void setListModelVersionsRetry(Retry listModelVersionsRetry) {
    this.listModelVersionsRetry = listModelVersionsRetry;
  }

  public Retry getUpdateModelRetry() {
    return this.updateModelRetry;
  }

  public void setUpdateModelRetry(Retry updateModelRetry) {
    this.updateModelRetry = updateModelRetry;
  }

  public Retry getMergeVersionAliasesRetry() {
    return this.mergeVersionAliasesRetry;
  }

  public void setMergeVersionAliasesRetry(Retry mergeVersionAliasesRetry) {
    this.mergeVersionAliasesRetry = mergeVersionAliasesRetry;
  }

  public Retry getImportModelEvaluationRetry() {
    return this.importModelEvaluationRetry;
  }

  public void setImportModelEvaluationRetry(Retry importModelEvaluationRetry) {
    this.importModelEvaluationRetry = importModelEvaluationRetry;
  }

  public Retry getBatchImportModelEvaluationSlicesRetry() {
    return this.batchImportModelEvaluationSlicesRetry;
  }

  public void setBatchImportModelEvaluationSlicesRetry(
      Retry batchImportModelEvaluationSlicesRetry) {
    this.batchImportModelEvaluationSlicesRetry = batchImportModelEvaluationSlicesRetry;
  }

  public Retry getBatchImportEvaluatedAnnotationsRetry() {
    return this.batchImportEvaluatedAnnotationsRetry;
  }

  public void setBatchImportEvaluatedAnnotationsRetry(Retry batchImportEvaluatedAnnotationsRetry) {
    this.batchImportEvaluatedAnnotationsRetry = batchImportEvaluatedAnnotationsRetry;
  }

  public Retry getGetModelEvaluationRetry() {
    return this.getModelEvaluationRetry;
  }

  public void setGetModelEvaluationRetry(Retry getModelEvaluationRetry) {
    this.getModelEvaluationRetry = getModelEvaluationRetry;
  }

  public Retry getListModelEvaluationsRetry() {
    return this.listModelEvaluationsRetry;
  }

  public void setListModelEvaluationsRetry(Retry listModelEvaluationsRetry) {
    this.listModelEvaluationsRetry = listModelEvaluationsRetry;
  }

  public Retry getGetModelEvaluationSliceRetry() {
    return this.getModelEvaluationSliceRetry;
  }

  public void setGetModelEvaluationSliceRetry(Retry getModelEvaluationSliceRetry) {
    this.getModelEvaluationSliceRetry = getModelEvaluationSliceRetry;
  }

  public Retry getListModelEvaluationSlicesRetry() {
    return this.listModelEvaluationSlicesRetry;
  }

  public void setListModelEvaluationSlicesRetry(Retry listModelEvaluationSlicesRetry) {
    this.listModelEvaluationSlicesRetry = listModelEvaluationSlicesRetry;
  }

  public Retry getListLocationsRetry() {
    return this.listLocationsRetry;
  }

  public void setListLocationsRetry(Retry listLocationsRetry) {
    this.listLocationsRetry = listLocationsRetry;
  }

  public Retry getGetLocationRetry() {
    return this.getLocationRetry;
  }

  public void setGetLocationRetry(Retry getLocationRetry) {
    this.getLocationRetry = getLocationRetry;
  }

  public Retry getSetIamPolicyRetry() {
    return this.setIamPolicyRetry;
  }

  public void setSetIamPolicyRetry(Retry setIamPolicyRetry) {
    this.setIamPolicyRetry = setIamPolicyRetry;
  }

  public Retry getGetIamPolicyRetry() {
    return this.getIamPolicyRetry;
  }

  public void setGetIamPolicyRetry(Retry getIamPolicyRetry) {
    this.getIamPolicyRetry = getIamPolicyRetry;
  }

  public Retry getTestIamPermissionsRetry() {
    return this.testIamPermissionsRetry;
  }

  public void setTestIamPermissionsRetry(Retry testIamPermissionsRetry) {
    this.testIamPermissionsRetry = testIamPermissionsRetry;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy