com.google.cloud.devtools.cloudbuild.v2.spring.RepositoryManagerSpringProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-cloud-build-spring-starter Show documentation
Show all versions of google-cloud-build-spring-starter Show documentation
Spring Boot Starter with AutoConfiguration for cloudbuild
The 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.devtools.cloudbuild.v2.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 RepositoryManager client bean */
@Generated("by google-cloud-spring-generator")
@BetaApi("Autogenerated Spring autoconfiguration is not yet stable")
@ConfigurationProperties("com.google.cloud.devtools.cloudbuild.v2.repository-manager")
public class RepositoryManagerSpringProperties 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 getConnection. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry getConnectionRetry;
/**
* Allow override of retry settings at method-level for listConnections. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listConnectionsRetry;
/**
* Allow override of retry settings at method-level for getRepository. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry getRepositoryRetry;
/**
* Allow override of retry settings at method-level for listRepositories. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listRepositoriesRetry;
/**
* Allow override of retry settings at method-level for fetchReadWriteToken. If defined, this
* takes precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry fetchReadWriteTokenRetry;
/**
* Allow override of retry settings at method-level for fetchReadToken. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry fetchReadTokenRetry;
/**
* Allow override of retry settings at method-level for fetchLinkableRepositories. If defined,
* this takes precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry fetchLinkableRepositoriesRetry;
/**
* Allow override of retry settings at method-level for fetchGitRefs. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry fetchGitRefsRetry;
/**
* 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 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 getGetConnectionRetry() {
return this.getConnectionRetry;
}
public void setGetConnectionRetry(Retry getConnectionRetry) {
this.getConnectionRetry = getConnectionRetry;
}
public Retry getListConnectionsRetry() {
return this.listConnectionsRetry;
}
public void setListConnectionsRetry(Retry listConnectionsRetry) {
this.listConnectionsRetry = listConnectionsRetry;
}
public Retry getGetRepositoryRetry() {
return this.getRepositoryRetry;
}
public void setGetRepositoryRetry(Retry getRepositoryRetry) {
this.getRepositoryRetry = getRepositoryRetry;
}
public Retry getListRepositoriesRetry() {
return this.listRepositoriesRetry;
}
public void setListRepositoriesRetry(Retry listRepositoriesRetry) {
this.listRepositoriesRetry = listRepositoriesRetry;
}
public Retry getFetchReadWriteTokenRetry() {
return this.fetchReadWriteTokenRetry;
}
public void setFetchReadWriteTokenRetry(Retry fetchReadWriteTokenRetry) {
this.fetchReadWriteTokenRetry = fetchReadWriteTokenRetry;
}
public Retry getFetchReadTokenRetry() {
return this.fetchReadTokenRetry;
}
public void setFetchReadTokenRetry(Retry fetchReadTokenRetry) {
this.fetchReadTokenRetry = fetchReadTokenRetry;
}
public Retry getFetchLinkableRepositoriesRetry() {
return this.fetchLinkableRepositoriesRetry;
}
public void setFetchLinkableRepositoriesRetry(Retry fetchLinkableRepositoriesRetry) {
this.fetchLinkableRepositoriesRetry = fetchLinkableRepositoriesRetry;
}
public Retry getFetchGitRefsRetry() {
return this.fetchGitRefsRetry;
}
public void setFetchGitRefsRetry(Retry fetchGitRefsRetry) {
this.fetchGitRefsRetry = fetchGitRefsRetry;
}
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;
}
}