Skip to content

Commit

Permalink
chore: updating auto-generated modules for spring-cloud-gcp release (#…
Browse files Browse the repository at this point in the history
…2117)

* chore: empty commit

* chore: update starter modules in spring-cloud-previews

* empty commit to trigger ci

---------

Co-authored-by: Cloud Java Bot <cloud-java-bot@google.com>
  • Loading branch information
JoeWang1127 and cloud-java-bot authored Aug 10, 2023
1 parent 0c9718a commit 381fb25
Show file tree
Hide file tree
Showing 9 changed files with 1,199 additions and 88 deletions.
176 changes: 88 additions & 88 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,215 @@
/*
* Copyright 2023 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 ScheduleService client bean */
@Generated("by google-cloud-spring-generator")
@BetaApi("Autogenerated Spring autoconfiguration is not yet stable")
@ConfigurationProperties("com.google.cloud.aiplatform.v1.schedule-service")
public class ScheduleServiceSpringProperties 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 createSchedule. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry createScheduleRetry;
/**
* Allow override of retry settings at method-level for getSchedule. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry getScheduleRetry;
/**
* Allow override of retry settings at method-level for listSchedules. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry listSchedulesRetry;
/**
* Allow override of retry settings at method-level for pauseSchedule. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry pauseScheduleRetry;
/**
* Allow override of retry settings at method-level for resumeSchedule. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry resumeScheduleRetry;
/**
* Allow override of retry settings at method-level for updateSchedule. If defined, this takes
* precedence over service-level retry configurations for that RPC method.
*/
@NestedConfigurationProperty private Retry updateScheduleRetry;
/**
* 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 getCreateScheduleRetry() {
return this.createScheduleRetry;
}

public void setCreateScheduleRetry(Retry createScheduleRetry) {
this.createScheduleRetry = createScheduleRetry;
}

public Retry getGetScheduleRetry() {
return this.getScheduleRetry;
}

public void setGetScheduleRetry(Retry getScheduleRetry) {
this.getScheduleRetry = getScheduleRetry;
}

public Retry getListSchedulesRetry() {
return this.listSchedulesRetry;
}

public void setListSchedulesRetry(Retry listSchedulesRetry) {
this.listSchedulesRetry = listSchedulesRetry;
}

public Retry getPauseScheduleRetry() {
return this.pauseScheduleRetry;
}

public void setPauseScheduleRetry(Retry pauseScheduleRetry) {
this.pauseScheduleRetry = pauseScheduleRetry;
}

public Retry getResumeScheduleRetry() {
return this.resumeScheduleRetry;
}

public void setResumeScheduleRetry(Retry resumeScheduleRetry) {
this.resumeScheduleRetry = resumeScheduleRetry;
}

public Retry getUpdateScheduleRetry() {
return this.updateScheduleRetry;
}

public void setUpdateScheduleRetry(Retry updateScheduleRetry) {
this.updateScheduleRetry = updateScheduleRetry;
}

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;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@
"description": "Auto-configure Google Cloud aiplatform/PredictionService components.",
"defaultValue": true
},
{
"name": "com.google.cloud.aiplatform.v1.schedule-service.enabled",
"type": "java.lang.Boolean",
"description": "Auto-configure Google Cloud aiplatform/ScheduleService components.",
"defaultValue": true
},
{
"name": "com.google.cloud.aiplatform.v1.specialist-pool-service.enabled",
"type": "java.lang.Boolean",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ com.google.cloud.aiplatform.v1.spring.ModelGardenServiceSpringAutoConfiguration
com.google.cloud.aiplatform.v1.spring.ModelServiceSpringAutoConfiguration
com.google.cloud.aiplatform.v1.spring.PipelineServiceSpringAutoConfiguration
com.google.cloud.aiplatform.v1.spring.PredictionServiceSpringAutoConfiguration
com.google.cloud.aiplatform.v1.spring.ScheduleServiceSpringAutoConfiguration
com.google.cloud.aiplatform.v1.spring.SpecialistPoolServiceSpringAutoConfiguration
com.google.cloud.aiplatform.v1.spring.TensorboardServiceSpringAutoConfiguration
com.google.cloud.aiplatform.v1.spring.VizierServiceSpringAutoConfiguration
Loading

0 comments on commit 381fb25

Please sign in to comment.