Skip to content
Merged
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-dataform/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-dataform</artifactId>
<version>v1-rev20260430-2.0.0</version>
<version>v1-rev20260515-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-dataform:v1-rev20260430-2.0.0'
implementation 'com.google.apis:google-api-services-dataform:v1-rev20260515-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14380,21 +14380,21 @@ public Search setOrderBy(java.lang.String orderBy) {

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

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

/**
* Optional. Maximum number of TeamFolders to return. The server may return fewer items
* than requested. If unspecified, the server will pick an appropriate default.
* than requested. If unspecified, the server will pick a default of page_size = 50.
*/
public Search setPageSize(java.lang.Integer pageSize) {
this.pageSize = pageSize;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,16 @@
public final class DirectoryEntry extends com.google.api.client.json.GenericJson {

/**
* A child directory in the directory.
* A child directory in the directory. The path is returned including the full folder structure
* from the root.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String directory;

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

/**
* A child directory in the directory.
* A child directory in the directory. The path is returned including the full folder structure
* from the root.
* @return value or {@code null} for none
*/
public java.lang.String getDirectory() {
return directory;
}

/**
* A child directory in the directory.
* A child directory in the directory. The path is returned including the full folder structure
* from the root.
* @param directory directory or {@code null} for none
*/
public DirectoryEntry setDirectory(java.lang.String directory) {
Expand All @@ -68,15 +72,17 @@ public DirectoryEntry setDirectory(java.lang.String directory) {
}

/**
* A file in the directory.
* A file in the directory. The path is returned including the full folder structure from the
* root.
* @return value or {@code null} for none
*/
public java.lang.String getFile() {
return file;
}

/**
* A file in the directory.
* A file in the directory. The path is returned including the full folder structure from the
* root.
* @param file file or {@code null} for none
*/
public DirectoryEntry setFile(java.lang.String file) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,20 @@ public final class GitRemoteSettings extends com.google.api.client.json.GenericJ
private java.lang.String authenticationTokenSecretVersion;

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

/**
* Output only. The Git remote's effective default branch name. This is the default branch name of
* the Git remote if it is set, otherwise it is `main`.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String effectiveDefaultBranch;

/**
* Optional. Authentication fields for remote uris using SSH protocol.
* The value may be {@code null}.
Expand Down Expand Up @@ -86,24 +93,41 @@ public GitRemoteSettings setAuthenticationTokenSecretVersion(java.lang.String au
}

/**
* Required. The Git remote's default branch name. If not set, `main` will be used and stored for
* the repository.
* Optional. The Git remote's default branch name. If not set `main` will be used.
* @return value or {@code null} for none
*/
public java.lang.String getDefaultBranch() {
return defaultBranch;
}

/**
* Required. The Git remote's default branch name. If not set, `main` will be used and stored for
* the repository.
* Optional. The Git remote's default branch name. If not set `main` will be used.
* @param defaultBranch defaultBranch or {@code null} for none
*/
public GitRemoteSettings setDefaultBranch(java.lang.String defaultBranch) {
this.defaultBranch = defaultBranch;
return this;
}

/**
* Output only. The Git remote's effective default branch name. This is the default branch name of
* the Git remote if it is set, otherwise it is `main`.
* @return value or {@code null} for none
*/
public java.lang.String getEffectiveDefaultBranch() {
return effectiveDefaultBranch;
}

/**
* Output only. The Git remote's effective default branch name. This is the default branch name of
* the Git remote if it is set, otherwise it is `main`.
* @param effectiveDefaultBranch effectiveDefaultBranch or {@code null} for none
*/
public GitRemoteSettings setEffectiveDefaultBranch(java.lang.String effectiveDefaultBranch) {
this.effectiveDefaultBranch = effectiveDefaultBranch;
return this;
}

/**
* Optional. Authentication fields for remote uris using SSH protocol.
* @return value or {@code null} for none
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-dataform/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-dataform</artifactId>
<version>v1-rev20260430-2.0.0</version>
<name>Dataform API v1-rev20260430-2.0.0</name>
<version>v1-rev20260515-2.0.0</version>
<name>Dataform API v1-rev20260515-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-dataform/v1/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-dataform</artifactId>
<version>v1-rev20260430-2.0.0</version>
<version>v1-rev20260515-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-dataform:v1-rev20260430-2.0.0'
implementation 'com.google.apis:google-api-services-dataform:v1-rev20260515-2.0.0'
}
```

Expand Down
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-dataform</artifactId>
<version>v1beta1-rev20260430-2.0.0</version>
<version>v1beta1-rev20260515-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-dataform:v1beta1-rev20260430-2.0.0'
implementation 'com.google.apis:google-api-services-dataform:v1beta1-rev20260515-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3992,6 +3992,137 @@ public Delete set(String parameterName, Object value) {
return (Delete) super.set(parameterName, value);
}
}
/**
* Deletes a single Repository asynchronously.
*
* Create a request for the method "repositories.deleteLongRunning".
*
* This request holds the parameters needed by the dataform server. After setting any optional
* parameters, call the {@link DeleteLongRunning#execute()} method to invoke the remote operation.
*
* @param name Required. The repository's name.
* @param content the {@link com.google.api.services.dataform.v1beta1.model.DeleteRepositoryLongRunningRequest}
* @return the request
*/
public DeleteLongRunning deleteLongRunning(java.lang.String name, com.google.api.services.dataform.v1beta1.model.DeleteRepositoryLongRunningRequest content) throws java.io.IOException {
DeleteLongRunning result = new DeleteLongRunning(name, content);
initialize(result);
return result;
}

public class DeleteLongRunning extends DataformRequest<com.google.api.services.dataform.v1beta1.model.Operation> {

private static final String REST_PATH = "v1beta1/{+name}:deleteLongRunning";

private final java.util.regex.Pattern NAME_PATTERN =
java.util.regex.Pattern.compile("^projects/[^/]+/locations/[^/]+/repositories/[^/]+$");

/**
* Deletes a single Repository asynchronously.
*
* Create a request for the method "repositories.deleteLongRunning".
*
* This request holds the parameters needed by the the dataform server. After setting any
* optional parameters, call the {@link DeleteLongRunning#execute()} method to invoke the remote
* operation. <p> {@link DeleteLongRunning#initialize(com.google.api.client.googleapis.services.Ab
* stractGoogleClientRequest)} must be called to initialize this instance immediately after
* invoking the constructor. </p>
*
* @param name Required. The repository's name.
* @param content the {@link com.google.api.services.dataform.v1beta1.model.DeleteRepositoryLongRunningRequest}
* @since 1.13
*/
protected DeleteLongRunning(java.lang.String name, com.google.api.services.dataform.v1beta1.model.DeleteRepositoryLongRunningRequest content) {
super(Dataform.this, "POST", REST_PATH, content, com.google.api.services.dataform.v1beta1.model.Operation.class);
this.name = com.google.api.client.util.Preconditions.checkNotNull(name, "Required parameter name must be specified.");
if (!getSuppressPatternChecks()) {
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),
"Parameter name must conform to the pattern " +
"^projects/[^/]+/locations/[^/]+/repositories/[^/]+$");
}
}

@Override
public DeleteLongRunning set$Xgafv(java.lang.String $Xgafv) {
return (DeleteLongRunning) super.set$Xgafv($Xgafv);
}

@Override
public DeleteLongRunning setAccessToken(java.lang.String accessToken) {
return (DeleteLongRunning) super.setAccessToken(accessToken);
}

@Override
public DeleteLongRunning setAlt(java.lang.String alt) {
return (DeleteLongRunning) super.setAlt(alt);
}

@Override
public DeleteLongRunning setCallback(java.lang.String callback) {
return (DeleteLongRunning) super.setCallback(callback);
}

@Override
public DeleteLongRunning setFields(java.lang.String fields) {
return (DeleteLongRunning) super.setFields(fields);
}

@Override
public DeleteLongRunning setKey(java.lang.String key) {
return (DeleteLongRunning) super.setKey(key);
}

@Override
public DeleteLongRunning setOauthToken(java.lang.String oauthToken) {
return (DeleteLongRunning) super.setOauthToken(oauthToken);
}

@Override
public DeleteLongRunning setPrettyPrint(java.lang.Boolean prettyPrint) {
return (DeleteLongRunning) super.setPrettyPrint(prettyPrint);
}

@Override
public DeleteLongRunning setQuotaUser(java.lang.String quotaUser) {
return (DeleteLongRunning) super.setQuotaUser(quotaUser);
}

@Override
public DeleteLongRunning setUploadType(java.lang.String uploadType) {
return (DeleteLongRunning) super.setUploadType(uploadType);
}

@Override
public DeleteLongRunning setUploadProtocol(java.lang.String uploadProtocol) {
return (DeleteLongRunning) super.setUploadProtocol(uploadProtocol);
}

/** Required. The repository's name. */
@com.google.api.client.util.Key
private java.lang.String name;

/** Required. The repository's name.
*/
public java.lang.String getName() {
return name;
}

/** Required. The repository's name. */
public DeleteLongRunning setName(java.lang.String name) {
if (!getSuppressPatternChecks()) {
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),
"Parameter name must conform to the pattern " +
"^projects/[^/]+/locations/[^/]+/repositories/[^/]+$");
}
this.name = name;
return this;
}

@Override
public DeleteLongRunning set(String parameterName, Object value) {
return (DeleteLongRunning) super.set(parameterName, value);
}
}
/**
* Fetches a Repository's history of commits. The Repository must not have a value for
* `git_remote_settings.url`.
Expand Down Expand Up @@ -14430,21 +14561,21 @@ public Search setOrderBy(java.lang.String orderBy) {

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

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

/**
* Optional. Maximum number of TeamFolders to return. The server may return fewer items
* than requested. If unspecified, the server will pick an appropriate default.
* than requested. If unspecified, the server will pick a default of page_size = 50.
*/
public Search setPageSize(java.lang.Integer pageSize) {
this.pageSize = pageSize;
Expand Down
Loading