Skip to content

Commit f3d8523

Browse files
1 parent dff02fa commit f3d8523

13 files changed

Lines changed: 311 additions & 42 deletions

File tree

clients/google-api-services-dataform/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-dataform</artifactId>
25-
<version>v1-rev20260430-2.0.0</version>
25+
<version>v1-rev20260515-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-dataform:v1-rev20260430-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataform:v1-rev20260515-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dataform/v1/2.0.0/com/google/api/services/dataform/v1/Dataform.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14380,21 +14380,21 @@ public Search setOrderBy(java.lang.String orderBy) {
1438014380

1438114381
/**
1438214382
* Optional. Maximum number of TeamFolders to return. The server may return fewer items
14383-
* than requested. If unspecified, the server will pick an appropriate default.
14383+
* than requested. If unspecified, the server will pick a default of page_size = 50.
1438414384
*/
1438514385
@com.google.api.client.util.Key
1438614386
private java.lang.Integer pageSize;
1438714387

1438814388
/** Optional. Maximum number of TeamFolders to return. The server may return fewer items than
14389-
requested. If unspecified, the server will pick an appropriate default.
14389+
requested. If unspecified, the server will pick a default of page_size = 50.
1439014390
*/
1439114391
public java.lang.Integer getPageSize() {
1439214392
return pageSize;
1439314393
}
1439414394

1439514395
/**
1439614396
* Optional. Maximum number of TeamFolders to return. The server may return fewer items
14397-
* than requested. If unspecified, the server will pick an appropriate default.
14397+
* than requested. If unspecified, the server will pick a default of page_size = 50.
1439814398
*/
1439914399
public Search setPageSize(java.lang.Integer pageSize) {
1440014400
this.pageSize = pageSize;

clients/google-api-services-dataform/v1/2.0.0/com/google/api/services/dataform/v1/model/DirectoryEntry.java

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,16 @@
3030
public final class DirectoryEntry extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* A child directory in the directory.
33+
* A child directory in the directory. The path is returned including the full folder structure
34+
* from the root.
3435
* The value may be {@code null}.
3536
*/
3637
@com.google.api.client.util.Key
3738
private java.lang.String directory;
3839

3940
/**
40-
* A file in the directory.
41+
* A file in the directory. The path is returned including the full folder structure from the
42+
* root.
4143
* The value may be {@code null}.
4244
*/
4345
@com.google.api.client.util.Key
@@ -51,15 +53,17 @@ public final class DirectoryEntry extends com.google.api.client.json.GenericJson
5153
private FilesystemEntryMetadata metadata;
5254

5355
/**
54-
* A child directory in the directory.
56+
* A child directory in the directory. The path is returned including the full folder structure
57+
* from the root.
5558
* @return value or {@code null} for none
5659
*/
5760
public java.lang.String getDirectory() {
5861
return directory;
5962
}
6063

6164
/**
62-
* A child directory in the directory.
65+
* A child directory in the directory. The path is returned including the full folder structure
66+
* from the root.
6367
* @param directory directory or {@code null} for none
6468
*/
6569
public DirectoryEntry setDirectory(java.lang.String directory) {
@@ -68,15 +72,17 @@ public DirectoryEntry setDirectory(java.lang.String directory) {
6872
}
6973

7074
/**
71-
* A file in the directory.
75+
* A file in the directory. The path is returned including the full folder structure from the
76+
* root.
7277
* @return value or {@code null} for none
7378
*/
7479
public java.lang.String getFile() {
7580
return file;
7681
}
7782

7883
/**
79-
* A file in the directory.
84+
* A file in the directory. The path is returned including the full folder structure from the
85+
* root.
8086
* @param file file or {@code null} for none
8187
*/
8288
public DirectoryEntry setFile(java.lang.String file) {

clients/google-api-services-dataform/v1/2.0.0/com/google/api/services/dataform/v1/model/GitRemoteSettings.java

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,20 @@ public final class GitRemoteSettings extends com.google.api.client.json.GenericJ
3838
private java.lang.String authenticationTokenSecretVersion;
3939

4040
/**
41-
* Required. The Git remote's default branch name. If not set, `main` will be used and stored for
42-
* the repository.
41+
* Optional. The Git remote's default branch name. If not set `main` will be used.
4342
* The value may be {@code null}.
4443
*/
4544
@com.google.api.client.util.Key
4645
private java.lang.String defaultBranch;
4746

47+
/**
48+
* Output only. The Git remote's effective default branch name. This is the default branch name of
49+
* the Git remote if it is set, otherwise it is `main`.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String effectiveDefaultBranch;
54+
4855
/**
4956
* Optional. Authentication fields for remote uris using SSH protocol.
5057
* The value may be {@code null}.
@@ -86,24 +93,41 @@ public GitRemoteSettings setAuthenticationTokenSecretVersion(java.lang.String au
8693
}
8794

8895
/**
89-
* Required. The Git remote's default branch name. If not set, `main` will be used and stored for
90-
* the repository.
96+
* Optional. The Git remote's default branch name. If not set `main` will be used.
9197
* @return value or {@code null} for none
9298
*/
9399
public java.lang.String getDefaultBranch() {
94100
return defaultBranch;
95101
}
96102

97103
/**
98-
* Required. The Git remote's default branch name. If not set, `main` will be used and stored for
99-
* the repository.
104+
* Optional. The Git remote's default branch name. If not set `main` will be used.
100105
* @param defaultBranch defaultBranch or {@code null} for none
101106
*/
102107
public GitRemoteSettings setDefaultBranch(java.lang.String defaultBranch) {
103108
this.defaultBranch = defaultBranch;
104109
return this;
105110
}
106111

112+
/**
113+
* Output only. The Git remote's effective default branch name. This is the default branch name of
114+
* the Git remote if it is set, otherwise it is `main`.
115+
* @return value or {@code null} for none
116+
*/
117+
public java.lang.String getEffectiveDefaultBranch() {
118+
return effectiveDefaultBranch;
119+
}
120+
121+
/**
122+
* Output only. The Git remote's effective default branch name. This is the default branch name of
123+
* the Git remote if it is set, otherwise it is `main`.
124+
* @param effectiveDefaultBranch effectiveDefaultBranch or {@code null} for none
125+
*/
126+
public GitRemoteSettings setEffectiveDefaultBranch(java.lang.String effectiveDefaultBranch) {
127+
this.effectiveDefaultBranch = effectiveDefaultBranch;
128+
return this;
129+
}
130+
107131
/**
108132
* Optional. Authentication fields for remote uris using SSH protocol.
109133
* @return value or {@code null} for none

clients/google-api-services-dataform/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-dataform</artifactId>
11-
<version>v1-rev20260430-2.0.0</version>
12-
<name>Dataform API v1-rev20260430-2.0.0</name>
11+
<version>v1-rev20260515-2.0.0</version>
12+
<name>Dataform API v1-rev20260515-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-dataform/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-dataform</artifactId>
25-
<version>v1-rev20260430-2.0.0</version>
25+
<version>v1-rev20260515-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-dataform:v1-rev20260430-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataform:v1-rev20260515-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dataform/v1beta1/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-dataform</artifactId>
25-
<version>v1beta1-rev20260430-2.0.0</version>
25+
<version>v1beta1-rev20260515-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-dataform:v1beta1-rev20260430-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataform:v1beta1-rev20260515-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dataform/v1beta1/2.0.0/com/google/api/services/dataform/v1beta1/Dataform.java

Lines changed: 134 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3992,6 +3992,137 @@ public Delete set(String parameterName, Object value) {
39923992
return (Delete) super.set(parameterName, value);
39933993
}
39943994
}
3995+
/**
3996+
* Deletes a single Repository asynchronously.
3997+
*
3998+
* Create a request for the method "repositories.deleteLongRunning".
3999+
*
4000+
* This request holds the parameters needed by the dataform server. After setting any optional
4001+
* parameters, call the {@link DeleteLongRunning#execute()} method to invoke the remote operation.
4002+
*
4003+
* @param name Required. The repository's name.
4004+
* @param content the {@link com.google.api.services.dataform.v1beta1.model.DeleteRepositoryLongRunningRequest}
4005+
* @return the request
4006+
*/
4007+
public DeleteLongRunning deleteLongRunning(java.lang.String name, com.google.api.services.dataform.v1beta1.model.DeleteRepositoryLongRunningRequest content) throws java.io.IOException {
4008+
DeleteLongRunning result = new DeleteLongRunning(name, content);
4009+
initialize(result);
4010+
return result;
4011+
}
4012+
4013+
public class DeleteLongRunning extends DataformRequest<com.google.api.services.dataform.v1beta1.model.Operation> {
4014+
4015+
private static final String REST_PATH = "v1beta1/{+name}:deleteLongRunning";
4016+
4017+
private final java.util.regex.Pattern NAME_PATTERN =
4018+
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+/repositories/[^/]+$");
4019+
4020+
/**
4021+
* Deletes a single Repository asynchronously.
4022+
*
4023+
* Create a request for the method "repositories.deleteLongRunning".
4024+
*
4025+
* This request holds the parameters needed by the the dataform server. After setting any
4026+
* optional parameters, call the {@link DeleteLongRunning#execute()} method to invoke the remote
4027+
* operation. <p> {@link DeleteLongRunning#initialize(com.google.api.client.googleapis.services.Ab
4028+
* stractGoogleClientRequest)} must be called to initialize this instance immediately after
4029+
* invoking the constructor. </p>
4030+
*
4031+
* @param name Required. The repository's name.
4032+
* @param content the {@link com.google.api.services.dataform.v1beta1.model.DeleteRepositoryLongRunningRequest}
4033+
* @since 1.13
4034+
*/
4035+
protected DeleteLongRunning(java.lang.String name, com.google.api.services.dataform.v1beta1.model.DeleteRepositoryLongRunningRequest content) {
4036+
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.Operation.class);
4037+
this.name = com.google.api.client.util.Preconditions.checkNotNull(name, "Required parameter name must be specified.");
4038+
if (!getSuppressPatternChecks()) {
4039+
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),
4040+
"Parameter name must conform to the pattern " +
4041+
"^projects/[^/]+/locations/[^/]+/repositories/[^/]+$");
4042+
}
4043+
}
4044+
4045+
@Override
4046+
public DeleteLongRunning set$Xgafv(java.lang.String $Xgafv) {
4047+
return (DeleteLongRunning) super.set$Xgafv($Xgafv);
4048+
}
4049+
4050+
@Override
4051+
public DeleteLongRunning setAccessToken(java.lang.String accessToken) {
4052+
return (DeleteLongRunning) super.setAccessToken(accessToken);
4053+
}
4054+
4055+
@Override
4056+
public DeleteLongRunning setAlt(java.lang.String alt) {
4057+
return (DeleteLongRunning) super.setAlt(alt);
4058+
}
4059+
4060+
@Override
4061+
public DeleteLongRunning setCallback(java.lang.String callback) {
4062+
return (DeleteLongRunning) super.setCallback(callback);
4063+
}
4064+
4065+
@Override
4066+
public DeleteLongRunning setFields(java.lang.String fields) {
4067+
return (DeleteLongRunning) super.setFields(fields);
4068+
}
4069+
4070+
@Override
4071+
public DeleteLongRunning setKey(java.lang.String key) {
4072+
return (DeleteLongRunning) super.setKey(key);
4073+
}
4074+
4075+
@Override
4076+
public DeleteLongRunning setOauthToken(java.lang.String oauthToken) {
4077+
return (DeleteLongRunning) super.setOauthToken(oauthToken);
4078+
}
4079+
4080+
@Override
4081+
public DeleteLongRunning setPrettyPrint(java.lang.Boolean prettyPrint) {
4082+
return (DeleteLongRunning) super.setPrettyPrint(prettyPrint);
4083+
}
4084+
4085+
@Override
4086+
public DeleteLongRunning setQuotaUser(java.lang.String quotaUser) {
4087+
return (DeleteLongRunning) super.setQuotaUser(quotaUser);
4088+
}
4089+
4090+
@Override
4091+
public DeleteLongRunning setUploadType(java.lang.String uploadType) {
4092+
return (DeleteLongRunning) super.setUploadType(uploadType);
4093+
}
4094+
4095+
@Override
4096+
public DeleteLongRunning setUploadProtocol(java.lang.String uploadProtocol) {
4097+
return (DeleteLongRunning) super.setUploadProtocol(uploadProtocol);
4098+
}
4099+
4100+
/** Required. The repository's name. */
4101+
@com.google.api.client.util.Key
4102+
private java.lang.String name;
4103+
4104+
/** Required. The repository's name.
4105+
*/
4106+
public java.lang.String getName() {
4107+
return name;
4108+
}
4109+
4110+
/** Required. The repository's name. */
4111+
public DeleteLongRunning setName(java.lang.String name) {
4112+
if (!getSuppressPatternChecks()) {
4113+
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),
4114+
"Parameter name must conform to the pattern " +
4115+
"^projects/[^/]+/locations/[^/]+/repositories/[^/]+$");
4116+
}
4117+
this.name = name;
4118+
return this;
4119+
}
4120+
4121+
@Override
4122+
public DeleteLongRunning set(String parameterName, Object value) {
4123+
return (DeleteLongRunning) super.set(parameterName, value);
4124+
}
4125+
}
39954126
/**
39964127
* Fetches a Repository's history of commits. The Repository must not have a value for
39974128
* `git_remote_settings.url`.
@@ -14430,21 +14561,21 @@ public Search setOrderBy(java.lang.String orderBy) {
1443014561

1443114562
/**
1443214563
* Optional. Maximum number of TeamFolders to return. The server may return fewer items
14433-
* than requested. If unspecified, the server will pick an appropriate default.
14564+
* than requested. If unspecified, the server will pick a default of page_size = 50.
1443414565
*/
1443514566
@com.google.api.client.util.Key
1443614567
private java.lang.Integer pageSize;
1443714568

1443814569
/** Optional. Maximum number of TeamFolders to return. The server may return fewer items than
14439-
requested. If unspecified, the server will pick an appropriate default.
14570+
requested. If unspecified, the server will pick a default of page_size = 50.
1444014571
*/
1444114572
public java.lang.Integer getPageSize() {
1444214573
return pageSize;
1444314574
}
1444414575

1444514576
/**
1444614577
* Optional. Maximum number of TeamFolders to return. The server may return fewer items
14447-
* than requested. If unspecified, the server will pick an appropriate default.
14578+
* than requested. If unspecified, the server will pick a default of page_size = 50.
1444814579
*/
1444914580
public Search setPageSize(java.lang.Integer pageSize) {
1445014581
this.pageSize = pageSize;

0 commit comments

Comments
 (0)