Skip to content

Commit a1b9778

Browse files
feat: Automated regeneration of dataform v1 client (googleapis#26561)
Auto-created at 2026-05-24 10:54:57 +0000 using the toys pull request generator.
1 parent 0ce2073 commit a1b9778

6 files changed

Lines changed: 22 additions & 8 deletions

File tree

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167588,6 +167588,7 @@
167588167588
"/dataform:v1/GitRemoteSettings": git_remote_settings
167589167589
"/dataform:v1/GitRemoteSettings/authenticationTokenSecretVersion": authentication_token_secret_version
167590167590
"/dataform:v1/GitRemoteSettings/defaultBranch": default_branch
167591+
"/dataform:v1/GitRemoteSettings/effectiveDefaultBranch": effective_default_branch
167591167592
"/dataform:v1/GitRemoteSettings/sshAuthenticationConfig": ssh_authentication_config
167592167593
"/dataform:v1/GitRemoteSettings/tokenStatus": token_status
167593167594
"/dataform:v1/GitRemoteSettings/url": url

generated/google-apis-dataform_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-dataform_v1
22

3+
### v0.9.0 (2026-05-24)
4+
5+
* Regenerated from discovery document revision 20260515
6+
37
### v0.8.0 (2026-05-17)
48

59
* Regenerated from discovery document revision 20260430

generated/google-apis-dataform_v1/lib/google/apis/dataform_v1/classes.rb

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,12 +1113,14 @@ def update!(**args)
11131113
class DirectoryEntry
11141114
include Google::Apis::Core::Hashable
11151115

1116-
# A child directory in the directory.
1116+
# A child directory in the directory. The path is returned including the full
1117+
# folder structure from the root.
11171118
# Corresponds to the JSON property `directory`
11181119
# @return [String]
11191120
attr_accessor :directory
11201121

1121-
# A file in the directory.
1122+
# A file in the directory. The path is returned including the full folder
1123+
# structure from the root.
11221124
# Corresponds to the JSON property `file`
11231125
# @return [String]
11241126
attr_accessor :file
@@ -1541,12 +1543,17 @@ class GitRemoteSettings
15411543
# @return [String]
15421544
attr_accessor :authentication_token_secret_version
15431545

1544-
# Required. The Git remote's default branch name. If not set, `main` will be
1545-
# used and stored for the repository.
1546+
# Optional. The Git remote's default branch name. If not set `main` will be used.
15461547
# Corresponds to the JSON property `defaultBranch`
15471548
# @return [String]
15481549
attr_accessor :default_branch
15491550

1551+
# Output only. The Git remote's effective default branch name. This is the
1552+
# default branch name of the Git remote if it is set, otherwise it is `main`.
1553+
# Corresponds to the JSON property `effectiveDefaultBranch`
1554+
# @return [String]
1555+
attr_accessor :effective_default_branch
1556+
15501557
# Configures fields for performing SSH authentication.
15511558
# Corresponds to the JSON property `sshAuthenticationConfig`
15521559
# @return [Google::Apis::DataformV1::SshAuthenticationConfig]
@@ -1571,6 +1578,7 @@ def initialize(**args)
15711578
def update!(**args)
15721579
@authentication_token_secret_version = args[:authentication_token_secret_version] if args.key?(:authentication_token_secret_version)
15731580
@default_branch = args[:default_branch] if args.key?(:default_branch)
1581+
@effective_default_branch = args[:effective_default_branch] if args.key?(:effective_default_branch)
15741582
@ssh_authentication_config = args[:ssh_authentication_config] if args.key?(:ssh_authentication_config)
15751583
@token_status = args[:token_status] if args.key?(:token_status)
15761584
@url = args[:url] if args.key?(:url)

generated/google-apis-dataform_v1/lib/google/apis/dataform_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DataformV1
1818
# Version of the google-apis-dataform_v1 gem
19-
GEM_VERSION = "0.8.0"
19+
GEM_VERSION = "0.9.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20260430"
25+
REVISION = "20260515"
2626
end
2727
end
2828
end

generated/google-apis-dataform_v1/lib/google/apis/dataform_v1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1261,6 +1261,7 @@ class GitRemoteSettings
12611261
class Representation < Google::Apis::Core::JsonRepresentation
12621262
property :authentication_token_secret_version, as: 'authenticationTokenSecretVersion'
12631263
property :default_branch, as: 'defaultBranch'
1264+
property :effective_default_branch, as: 'effectiveDefaultBranch'
12641265
property :ssh_authentication_config, as: 'sshAuthenticationConfig', class: Google::Apis::DataformV1::SshAuthenticationConfig, decorator: Google::Apis::DataformV1::SshAuthenticationConfig::Representation
12651266

12661267
property :token_status, as: 'tokenStatus'

generated/google-apis-dataform_v1/lib/google/apis/dataform_v1/service.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3253,8 +3253,8 @@ def query_project_location_team_folder_contents(team_folder, filter: nil, order_
32533253
# orderBy="display_name"` * `orderBy="display_name desc"`
32543254
# @param [Fixnum] page_size
32553255
# Optional. Maximum number of TeamFolders to return. The server may return fewer
3256-
# items than requested. If unspecified, the server will pick an appropriate
3257-
# default.
3256+
# items than requested. If unspecified, the server will pick a default of
3257+
# page_size = 50.
32583258
# @param [String] page_token
32593259
# Optional. Page token received from a previous `SearchTeamFolders` call.
32603260
# Provide this to retrieve the subsequent page. When paginating, all other

0 commit comments

Comments
 (0)