Skip to content

Commit

Permalink
chore: regenerate connectors client (#18100)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Sep 14, 2023
1 parent 300a4a4 commit 14342b4
Show file tree
Hide file tree
Showing 21 changed files with 1,306 additions and 11 deletions.
4 changes: 2 additions & 2 deletions clients/google-api-services-connectors/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-connectors</artifactId>
<version>v1-rev20230812-2.0.0</version>
<version>v1-rev20230906-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-connectors:v1-rev20230812-2.0.0'
implementation 'com.google.apis:google-api-services-connectors:v1-rev20230906-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,13 @@ public final class Connection extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String imageLocation;

/**
* Output only. Is trusted tester program enabled for the project.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean isTrustedTester;

/**
* Optional. Resource labels to represent user-provided metadata. Refer to cloud documentation on
* labels for more details. https://cloud.google.com/compute/docs/labeling-resources
Expand Down Expand Up @@ -480,6 +487,23 @@ public Connection setImageLocation(java.lang.String imageLocation) {
return this;
}

/**
* Output only. Is trusted tester program enabled for the project.
* @return value or {@code null} for none
*/
public java.lang.Boolean getIsTrustedTester() {
return isTrustedTester;
}

/**
* Output only. Is trusted tester program enabled for the project.
* @param isTrustedTester isTrustedTester or {@code null} for none
*/
public Connection setIsTrustedTester(java.lang.Boolean isTrustedTester) {
this.isTrustedTester = isTrustedTester;
return this;
}

/**
* Optional. Resource labels to represent user-provided metadata. Refer to cloud documentation on
* labels for more details. https://cloud.google.com/compute/docs/labeling-resources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,13 @@ public final class ConnectorInfraConfig extends com.google.api.client.json.Gener
@com.google.api.client.util.Key
private ResourceRequests resourceRequests;

/**
* The name of shared connector deployment.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String sharedDeployment;

/**
* HPA autoscaling config.
* @return value or {@code null} for none
Expand Down Expand Up @@ -150,6 +157,23 @@ public ConnectorInfraConfig setResourceRequests(ResourceRequests resourceRequest
return this;
}

/**
* The name of shared connector deployment.
* @return value or {@code null} for none
*/
public java.lang.String getSharedDeployment() {
return sharedDeployment;
}

/**
* The name of shared connector deployment.
* @param sharedDeployment sharedDeployment or {@code null} for none
*/
public ConnectorInfraConfig setSharedDeployment(java.lang.String sharedDeployment) {
this.sharedDeployment = sharedDeployment;
return this;
}

@Override
public ConnectorInfraConfig set(String fieldName, Object value) {
return (ConnectorInfraConfig) super.set(fieldName, value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,13 @@ public final class ConnectorVersionInfraConfig extends com.google.api.client.jso
@com.google.api.client.util.Key
private ResourceRequests resourceRequests;

/**
* Output only. The name of shared connector deployment.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String sharedDeployment;

/**
* Output only. HPA autoscaling config.
* @return value or {@code null} for none
Expand Down Expand Up @@ -150,6 +157,23 @@ public ConnectorVersionInfraConfig setResourceRequests(ResourceRequests resource
return this;
}

/**
* Output only. The name of shared connector deployment.
* @return value or {@code null} for none
*/
public java.lang.String getSharedDeployment() {
return sharedDeployment;
}

/**
* Output only. The name of shared connector deployment.
* @param sharedDeployment sharedDeployment or {@code null} for none
*/
public ConnectorVersionInfraConfig setSharedDeployment(java.lang.String sharedDeployment) {
this.sharedDeployment = sharedDeployment;
return this;
}

@Override
public ConnectorVersionInfraConfig set(String fieldName, Object value) {
return (ConnectorVersionInfraConfig) super.set(fieldName, value);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,21 @@ public final class EventingConfig extends com.google.api.client.json.GenericJson
private java.lang.Boolean enrichmentEnabled;

/**
* Registration endpoint for auto regsitration.
* Optional. Private Connectivity Enabled.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.Boolean privateConnectivityEnabled;

/**
* Optional. Public Events listener endpoint.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String publicEventsListenerEndpoint;

/**
* Registration endpoint for auto registration.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand Down Expand Up @@ -139,15 +153,49 @@ public EventingConfig setEnrichmentEnabled(java.lang.Boolean enrichmentEnabled)
}

/**
* Registration endpoint for auto regsitration.
* Optional. Private Connectivity Enabled.
* @return value or {@code null} for none
*/
public java.lang.Boolean getPrivateConnectivityEnabled() {
return privateConnectivityEnabled;
}

/**
* Optional. Private Connectivity Enabled.
* @param privateConnectivityEnabled privateConnectivityEnabled or {@code null} for none
*/
public EventingConfig setPrivateConnectivityEnabled(java.lang.Boolean privateConnectivityEnabled) {
this.privateConnectivityEnabled = privateConnectivityEnabled;
return this;
}

/**
* Optional. Public Events listener endpoint.
* @return value or {@code null} for none
*/
public java.lang.String getPublicEventsListenerEndpoint() {
return publicEventsListenerEndpoint;
}

/**
* Optional. Public Events listener endpoint.
* @param publicEventsListenerEndpoint publicEventsListenerEndpoint or {@code null} for none
*/
public EventingConfig setPublicEventsListenerEndpoint(java.lang.String publicEventsListenerEndpoint) {
this.publicEventsListenerEndpoint = publicEventsListenerEndpoint;
return this;
}

/**
* Registration endpoint for auto registration.
* @return value or {@code null} for none
*/
public DestinationConfig getRegistrationDestinationConfig() {
return registrationDestinationConfig;
}

/**
* Registration endpoint for auto regsitration.
* Registration endpoint for auto registration.
* @param registrationDestinationConfig registrationDestinationConfig or {@code null} for none
*/
public EventingConfig setRegistrationDestinationConfig(DestinationConfig registrationDestinationConfig) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ public final class Field extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.String field;

/**
* JsonSchema representation of this entity's schema
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private JsonSchema jsonSchema;

/**
* The following boolean field specifies if the current Field acts as a primary key or id if the
* parent is of type entity.
Expand Down Expand Up @@ -177,6 +184,23 @@ public Field setField(java.lang.String field) {
return this;
}

/**
* JsonSchema representation of this entity's schema
* @return value or {@code null} for none
*/
public JsonSchema getJsonSchema() {
return jsonSchema;
}

/**
* JsonSchema representation of this entity's schema
* @param jsonSchema jsonSchema or {@code null} for none
*/
public Field setJsonSchema(JsonSchema jsonSchema) {
this.jsonSchema = jsonSchema;
return this;
}

/**
* The following boolean field specifies if the current Field acts as a primary key or id if the
* parent is of type entity.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ public final class InputParameter extends com.google.api.client.json.GenericJson
@com.google.api.client.util.Key
private java.lang.String description;

/**
* JsonSchema representation of this action's parameter
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private JsonSchema jsonSchema;

/**
* Specifies whether a null value is allowed.
* The value may be {@code null}.
Expand Down Expand Up @@ -118,6 +125,23 @@ public InputParameter setDescription(java.lang.String description) {
return this;
}

/**
* JsonSchema representation of this action's parameter
* @return value or {@code null} for none
*/
public JsonSchema getJsonSchema() {
return jsonSchema;
}

/**
* JsonSchema representation of this action's parameter
* @param jsonSchema jsonSchema or {@code null} for none
*/
public InputParameter setJsonSchema(JsonSchema jsonSchema) {
this.jsonSchema = jsonSchema;
return this;
}

/**
* Specifies whether a null value is allowed.
* @return value or {@code null} for none
Expand Down
Loading

0 comments on commit 14342b4

Please sign in to comment.