Skip to content

Commit

Permalink
chore: generate autoconfigs (#2839)
Browse files Browse the repository at this point in the history
We needed to update the way we compute GOOGLEAPIS_COMMITISH to consider
MONOREPO_TAG when cloning google-cloud-java. In this way, the generated
autoconfigs use the protos matching the googleapis committish from the
config yaml at the specified tag.
  • Loading branch information
diegomarquezp authored May 2, 2024
1 parent 7157231 commit 0ebd889
Show file tree
Hide file tree
Showing 11 changed files with 1,641 additions and 96 deletions.
3 changes: 2 additions & 1 deletion spring-cloud-generator/scripts/generate-steps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ function compute_monorepo_version() {
# $1 - Monorepo version tag (or committish)
function generate_libraries_list(){
monorepo_commitish=$1
git clone --depth=1 https://github.com/googleapis/google-cloud-java.git
git clone --no-single-branch --depth=1 https://github.com/googleapis/google-cloud-java.git
pushd google-cloud-java || { echo "Failure: google-cloud-java folder does not exists."; exit 1; }
git checkout "${MONOREPO_TAG}"
# read googleapis committish used in hermetic build
GOOGLEAPIS_COMMITTISH=$(yq -r ".googleapis_commitish" generation_config.yaml)
popd || { echo "Failure in popd."; exit 1; }
Expand Down
178 changes: 89 additions & 89 deletions spring-cloud-previews/README.md

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,189 @@
/*
* 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 GenAiTuningService client bean */
@Generated("by google-cloud-spring-generator")
@BetaApi("Autogenerated Spring autoconfiguration is not yet stable")
@ConfigurationProperties("com.google.cloud.aiplatform.v1.gen-ai-tuning-service")
public class GenAiTuningServiceSpringProperties 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 createTuningJob. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry createTuningJobRetry;
/**
* Allow override of retry settings at method-level for getTuningJob. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry getTuningJobRetry;
/**
* Allow override of retry settings at method-level for listTuningJobs. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listTuningJobsRetry;
/**
* Allow override of retry settings at method-level for cancelTuningJob. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry cancelTuningJobRetry;
/**
* 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 getCreateTuningJobRetry() {
return this.createTuningJobRetry;
}

public void setCreateTuningJobRetry(Retry createTuningJobRetry) {
this.createTuningJobRetry = createTuningJobRetry;
}

public Retry getGetTuningJobRetry() {
return this.getTuningJobRetry;
}

public void setGetTuningJobRetry(Retry getTuningJobRetry) {
this.getTuningJobRetry = getTuningJobRetry;
}

public Retry getListTuningJobsRetry() {
return this.listTuningJobsRetry;
}

public void setListTuningJobsRetry(Retry listTuningJobsRetry) {
this.listTuningJobsRetry = listTuningJobsRetry;
}

public Retry getCancelTuningJobRetry() {
return this.cancelTuningJobRetry;
}

public void setCancelTuningJobRetry(Retry cancelTuningJobRetry) {
this.cancelTuningJobRetry = cancelTuningJobRetry;
}

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;
}
}
Loading

0 comments on commit 0ebd889

Please sign in to comment.