Skip to content

Commit 5eeeb48

Browse files
1 parent 5754363 commit 5eeeb48

File tree

10 files changed

+69
-18
lines changed

10 files changed

+69
-18
lines changed

clients/google-api-services-discoveryengine/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-discoveryengine</artifactId>
25-
<version>v1-rev20250419-2.0.0</version>
25+
<version>v1-rev20250425-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-discoveryengine:v1-rev20250419-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1-rev20250425-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-discoveryengine/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-discoveryengine</artifactId>
11-
<version>v1-rev20250419-2.0.0</version>
12-
<name>Discovery Engine API v1-rev20250419-2.0.0</name>
11+
<version>v1-rev20250425-2.0.0</version>
12+
<name>Discovery Engine API v1-rev20250425-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-discoveryengine/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-discoveryengine</artifactId>
25-
<version>v1-rev20250419-2.0.0</version>
25+
<version>v1-rev20250425-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-discoveryengine:v1-rev20250419-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1-rev20250425-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-discoveryengine/v1alpha/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-discoveryengine</artifactId>
25-
<version>v1alpha-rev20250419-2.0.0</version>
25+
<version>v1alpha-rev20250425-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-discoveryengine:v1alpha-rev20250419-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1alpha-rev20250425-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-discoveryengine/v1alpha/2.0.0/com/google/api/services/discoveryengine/v1alpha/model/GoogleCloudNotebooklmV1alphaUploadSourceFileRequest.java

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,21 @@ public final class GoogleCloudNotebooklmV1alphaUploadSourceFileRequest extends c
4343
@com.google.api.client.util.Key
4444
private ApiservingMediaRequestInfo mediaRequestInfo;
4545

46+
/**
47+
* The project (notebook) id of the uploaded source. Prefer to use the parent field instead.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.lang.String projectId;
52+
53+
/**
54+
* The source id of the associated file. If not set, a source id will be generated and a new
55+
* tentative source will be created.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.String sourceId;
60+
4661
/**
4762
* Information about the file being uploaded.
4863
* @return value or {@code null} for none
@@ -77,6 +92,42 @@ public GoogleCloudNotebooklmV1alphaUploadSourceFileRequest setMediaRequestInfo(A
7792
return this;
7893
}
7994

95+
/**
96+
* The project (notebook) id of the uploaded source. Prefer to use the parent field instead.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getProjectId() {
100+
return projectId;
101+
}
102+
103+
/**
104+
* The project (notebook) id of the uploaded source. Prefer to use the parent field instead.
105+
* @param projectId projectId or {@code null} for none
106+
*/
107+
public GoogleCloudNotebooklmV1alphaUploadSourceFileRequest setProjectId(java.lang.String projectId) {
108+
this.projectId = projectId;
109+
return this;
110+
}
111+
112+
/**
113+
* The source id of the associated file. If not set, a source id will be generated and a new
114+
* tentative source will be created.
115+
* @return value or {@code null} for none
116+
*/
117+
public java.lang.String getSourceId() {
118+
return sourceId;
119+
}
120+
121+
/**
122+
* The source id of the associated file. If not set, a source id will be generated and a new
123+
* tentative source will be created.
124+
* @param sourceId sourceId or {@code null} for none
125+
*/
126+
public GoogleCloudNotebooklmV1alphaUploadSourceFileRequest setSourceId(java.lang.String sourceId) {
127+
this.sourceId = sourceId;
128+
return this;
129+
}
130+
80131
@Override
81132
public GoogleCloudNotebooklmV1alphaUploadSourceFileRequest set(String fieldName, Object value) {
82133
return (GoogleCloudNotebooklmV1alphaUploadSourceFileRequest) super.set(fieldName, value);

clients/google-api-services-discoveryengine/v1alpha/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-discoveryengine</artifactId>
11-
<version>v1alpha-rev20250419-2.0.0</version>
12-
<name>Discovery Engine API v1alpha-rev20250419-2.0.0</name>
11+
<version>v1alpha-rev20250425-2.0.0</version>
12+
<name>Discovery Engine API v1alpha-rev20250425-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-discoveryengine/v1alpha/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-discoveryengine</artifactId>
25-
<version>v1alpha-rev20250419-2.0.0</version>
25+
<version>v1alpha-rev20250425-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-discoveryengine:v1alpha-rev20250419-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1alpha-rev20250425-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-discoveryengine/v1beta/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-discoveryengine</artifactId>
25-
<version>v1beta-rev20250419-2.0.0</version>
25+
<version>v1beta-rev20250425-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-discoveryengine:v1beta-rev20250419-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1beta-rev20250425-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-discoveryengine/v1beta/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-discoveryengine</artifactId>
11-
<version>v1beta-rev20250419-2.0.0</version>
12-
<name>Discovery Engine API v1beta-rev20250419-2.0.0</name>
11+
<version>v1beta-rev20250425-2.0.0</version>
12+
<name>Discovery Engine API v1beta-rev20250425-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-discoveryengine/v1beta/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-discoveryengine</artifactId>
25-
<version>v1beta-rev20250419-2.0.0</version>
25+
<version>v1beta-rev20250425-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-discoveryengine:v1beta-rev20250419-2.0.0'
38+
implementation 'com.google.apis:google-api-services-discoveryengine:v1beta-rev20250425-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)