Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-rev20251216-2.0.0</version>
<version>v1-rev20260128-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-rev20251216-2.0.0'
implementation 'com.google.apis:google-api-services-connectors:v1-rev20260128-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* 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
*
* http://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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.connectors.v1.model;

/**
* Request message for GenerateConnectionToolspecOverride API.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Connectors API. For a detailed explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GenerateConnectionToolspecOverrideRequest extends com.google.api.client.json.GenericJson {

/**
* Required. List of tools for which the tool spec override is to be generated.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<ToolName> toolNames;

/**
* Required. List of tools for which the tool spec override is to be generated.
* @return value or {@code null} for none
*/
public java.util.List<ToolName> getToolNames() {
return toolNames;
}

/**
* Required. List of tools for which the tool spec override is to be generated.
* @param toolNames toolNames or {@code null} for none
*/
public GenerateConnectionToolspecOverrideRequest setToolNames(java.util.List<ToolName> toolNames) {
this.toolNames = toolNames;
return this;
}

@Override
public GenerateConnectionToolspecOverrideRequest set(String fieldName, Object value) {
return (GenerateConnectionToolspecOverrideRequest) super.set(fieldName, value);
}

@Override
public GenerateConnectionToolspecOverrideRequest clone() {
return (GenerateConnectionToolspecOverrideRequest) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* 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
*
* http://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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.connectors.v1.model;

/**
* Response message for GenerateConnectionToolspecOverride API.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Connectors API. For a detailed explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GenerateConnectionToolspecOverrideResponse extends com.google.api.client.json.GenericJson {

/**
* Toolspec overrides for the connection.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ToolspecOverride toolspecOverride;

/**
* Toolspec overrides for the connection.
* @return value or {@code null} for none
*/
public ToolspecOverride getToolspecOverride() {
return toolspecOverride;
}

/**
* Toolspec overrides for the connection.
* @param toolspecOverride toolspecOverride or {@code null} for none
*/
public GenerateConnectionToolspecOverrideResponse setToolspecOverride(ToolspecOverride toolspecOverride) {
this.toolspecOverride = toolspecOverride;
return this;
}

@Override
public GenerateConnectionToolspecOverrideResponse set(String fieldName, Object value) {
return (GenerateConnectionToolspecOverrideResponse) super.set(fieldName, value);
}

@Override
public GenerateConnectionToolspecOverrideResponse clone() {
return (GenerateConnectionToolspecOverrideResponse) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* 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
*
* http://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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.connectors.v1.model;

/**
* Request message for ModifyConnectionToolspecOverride API.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Connectors API. For a detailed explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class ModifyConnectionToolspecOverrideRequest extends com.google.api.client.json.GenericJson {

/**
* Required. Toolspec overrides to be modified.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ToolspecOverride toolspecOverride;

/**
* Required. Toolspec overrides to be modified.
* @return value or {@code null} for none
*/
public ToolspecOverride getToolspecOverride() {
return toolspecOverride;
}

/**
* Required. Toolspec overrides to be modified.
* @param toolspecOverride toolspecOverride or {@code null} for none
*/
public ModifyConnectionToolspecOverrideRequest setToolspecOverride(ToolspecOverride toolspecOverride) {
this.toolspecOverride = toolspecOverride;
return this;
}

@Override
public ModifyConnectionToolspecOverrideRequest set(String fieldName, Object value) {
return (ModifyConnectionToolspecOverrideRequest) super.set(fieldName, value);
}

@Override
public ModifyConnectionToolspecOverrideRequest clone() {
return (ModifyConnectionToolspecOverrideRequest) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
/*
* 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
*
* http://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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.connectors.v1.model;

/**
* Response message for ModifyConnectionToolspecOverride API.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Connectors API. For a detailed explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class ModifyConnectionToolspecOverrideResponse extends com.google.api.client.json.GenericJson {

/**
* Toolspec overrides for the connection.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private ToolspecOverride toolspecOverrides;

/**
* Toolspec overrides for the connection.
* @return value or {@code null} for none
*/
public ToolspecOverride getToolspecOverrides() {
return toolspecOverrides;
}

/**
* Toolspec overrides for the connection.
* @param toolspecOverrides toolspecOverrides or {@code null} for none
*/
public ModifyConnectionToolspecOverrideResponse setToolspecOverrides(ToolspecOverride toolspecOverrides) {
this.toolspecOverrides = toolspecOverrides;
return this;
}

@Override
public ModifyConnectionToolspecOverrideResponse set(String fieldName, Object value) {
return (ModifyConnectionToolspecOverrideResponse) super.set(fieldName, value);
}

@Override
public ModifyConnectionToolspecOverrideResponse clone() {
return (ModifyConnectionToolspecOverrideResponse) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
* 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
*
* http://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.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.connectors.v1.model;

/**
* Request message for RemoveConnectionToolspecOverride API.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Connectors API. For a detailed explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class RemoveConnectionToolspecOverrideRequest extends com.google.api.client.json.GenericJson {

@Override
public RemoveConnectionToolspecOverrideRequest set(String fieldName, Object value) {
return (RemoveConnectionToolspecOverrideRequest) super.set(fieldName, value);
}

@Override
public RemoveConnectionToolspecOverrideRequest clone() {
return (RemoveConnectionToolspecOverrideRequest) super.clone();
}

}
Loading