com.google.cloud.dataplex.v1.spring.DataplexServiceSpringProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-cloud-dataplex-spring-starter Show documentation
Show all versions of google-cloud-dataplex-spring-starter Show documentation
Spring Boot Starter with AutoConfiguration for dataplex
/*
* 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.dataplex.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 DataplexService client bean */
@Generated("by google-cloud-spring-generator")
@BetaApi("Autogenerated Spring autoconfiguration is not yet stable")
@ConfigurationProperties("com.google.cloud.dataplex.v1.dataplex-service")
public class DataplexServiceSpringProperties 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 default transport channel provider to use REST instead of gRPC. */
private boolean useRest = false;
/** 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 listLakes. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listLakesRetry;
/**
* Allow override of retry settings at method-level for getLake. If defined, this takes precedence
* over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry getLakeRetry;
/**
* Allow override of retry settings at method-level for listLakeActions. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listLakeActionsRetry;
/**
* Allow override of retry settings at method-level for listZones. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listZonesRetry;
/**
* Allow override of retry settings at method-level for getZone. If defined, this takes precedence
* over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry getZoneRetry;
/**
* Allow override of retry settings at method-level for listZoneActions. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listZoneActionsRetry;
/**
* Allow override of retry settings at method-level for listAssets. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listAssetsRetry;
/**
* Allow override of retry settings at method-level for getAsset. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry getAssetRetry;
/**
* Allow override of retry settings at method-level for listAssetActions. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listAssetActionsRetry;
/**
* Allow override of retry settings at method-level for listTasks. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listTasksRetry;
/**
* Allow override of retry settings at method-level for getTask. If defined, this takes precedence
* over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry getTaskRetry;
/**
* Allow override of retry settings at method-level for listJobs. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listJobsRetry;
/**
* Allow override of retry settings at method-level for runTask. If defined, this takes precedence
* over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry runTaskRetry;
/**
* Allow override of retry settings at method-level for getJob. If defined, this takes precedence
* over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry getJobRetry;
/**
* Allow override of retry settings at method-level for cancelJob. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry cancelJobRetry;
/**
* Allow override of retry settings at method-level for listEnvironments. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listEnvironmentsRetry;
/**
* Allow override of retry settings at method-level for getEnvironment. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry getEnvironmentRetry;
/**
* Allow override of retry settings at method-level for listSessions. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listSessionsRetry;
/**
* 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;
@Override
public Credentials getCredentials() {
return this.credentials;
}
public String getQuotaProjectId() {
return this.quotaProjectId;
}
public void setQuotaProjectId(String quotaProjectId) {
this.quotaProjectId = quotaProjectId;
}
public boolean getUseRest() {
return this.useRest;
}
public void setUseRest(boolean useRest) {
this.useRest = useRest;
}
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 getListLakesRetry() {
return this.listLakesRetry;
}
public void setListLakesRetry(Retry listLakesRetry) {
this.listLakesRetry = listLakesRetry;
}
public Retry getGetLakeRetry() {
return this.getLakeRetry;
}
public void setGetLakeRetry(Retry getLakeRetry) {
this.getLakeRetry = getLakeRetry;
}
public Retry getListLakeActionsRetry() {
return this.listLakeActionsRetry;
}
public void setListLakeActionsRetry(Retry listLakeActionsRetry) {
this.listLakeActionsRetry = listLakeActionsRetry;
}
public Retry getListZonesRetry() {
return this.listZonesRetry;
}
public void setListZonesRetry(Retry listZonesRetry) {
this.listZonesRetry = listZonesRetry;
}
public Retry getGetZoneRetry() {
return this.getZoneRetry;
}
public void setGetZoneRetry(Retry getZoneRetry) {
this.getZoneRetry = getZoneRetry;
}
public Retry getListZoneActionsRetry() {
return this.listZoneActionsRetry;
}
public void setListZoneActionsRetry(Retry listZoneActionsRetry) {
this.listZoneActionsRetry = listZoneActionsRetry;
}
public Retry getListAssetsRetry() {
return this.listAssetsRetry;
}
public void setListAssetsRetry(Retry listAssetsRetry) {
this.listAssetsRetry = listAssetsRetry;
}
public Retry getGetAssetRetry() {
return this.getAssetRetry;
}
public void setGetAssetRetry(Retry getAssetRetry) {
this.getAssetRetry = getAssetRetry;
}
public Retry getListAssetActionsRetry() {
return this.listAssetActionsRetry;
}
public void setListAssetActionsRetry(Retry listAssetActionsRetry) {
this.listAssetActionsRetry = listAssetActionsRetry;
}
public Retry getListTasksRetry() {
return this.listTasksRetry;
}
public void setListTasksRetry(Retry listTasksRetry) {
this.listTasksRetry = listTasksRetry;
}
public Retry getGetTaskRetry() {
return this.getTaskRetry;
}
public void setGetTaskRetry(Retry getTaskRetry) {
this.getTaskRetry = getTaskRetry;
}
public Retry getListJobsRetry() {
return this.listJobsRetry;
}
public void setListJobsRetry(Retry listJobsRetry) {
this.listJobsRetry = listJobsRetry;
}
public Retry getRunTaskRetry() {
return this.runTaskRetry;
}
public void setRunTaskRetry(Retry runTaskRetry) {
this.runTaskRetry = runTaskRetry;
}
public Retry getGetJobRetry() {
return this.getJobRetry;
}
public void setGetJobRetry(Retry getJobRetry) {
this.getJobRetry = getJobRetry;
}
public Retry getCancelJobRetry() {
return this.cancelJobRetry;
}
public void setCancelJobRetry(Retry cancelJobRetry) {
this.cancelJobRetry = cancelJobRetry;
}
public Retry getListEnvironmentsRetry() {
return this.listEnvironmentsRetry;
}
public void setListEnvironmentsRetry(Retry listEnvironmentsRetry) {
this.listEnvironmentsRetry = listEnvironmentsRetry;
}
public Retry getGetEnvironmentRetry() {
return this.getEnvironmentRetry;
}
public void setGetEnvironmentRetry(Retry getEnvironmentRetry) {
this.getEnvironmentRetry = getEnvironmentRetry;
}
public Retry getListSessionsRetry() {
return this.listSessionsRetry;
}
public void setListSessionsRetry(Retry listSessionsRetry) {
this.listSessionsRetry = listSessionsRetry;
}
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;
}
}