google-apis-dataform_v1beta1 0.57.0 → 0.58.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 67469aefa756b79b1084df8b139b389995ec51a76737aa7733099d006128dfdb
4
- data.tar.gz: b74a50cc9b793a46062897500d6e68c6be5002202a47cb959e33e18f06f45eed
3
+ metadata.gz: cbab037c7a9ff7726cc5f6d784c4afa19bc0a093d435699636cb1f4b4abf3793
4
+ data.tar.gz: c8d7fd733da2716ca1c063595518acb9fe31961dca2e03bf7360ff3be42b4c1a
5
5
  SHA512:
6
- metadata.gz: d2a00259b6222689b8cc5ba4c23e9b660bb146f93ef67f74665180b9af9dc02ff451b0b3dbfcee32e7ebd3bed07f689bd36f091a91475423c596cd1f2e09e844
7
- data.tar.gz: 7c01b6c1e45ff4d236691b9e26831d2d4b3041211e2c5bf43bf9b73adeeed577fb2d153facf5bffb587f51e6c76a9e8e0cb4ebeddaa63862b96f5773124155db
6
+ metadata.gz: 05e8d48c1147455391c9f451b503e92cabb03b7c38a9dfeecd998ac3b169c67d18a92612a7d7d011f3010f03005db4c4aa8269e21c92cbad11f9ebf582247b1e
7
+ data.tar.gz: 81b033e2b8f9da86b714b852ff8f2195f50f407de7068b9ef643cc6a4c4016b2f33b556372e6567fce399539f219101bc79bf944a8ce48f38ab24abfb4e1b5cc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.58.0 (2026-05-24)
4
+
5
+ * Regenerated from discovery document revision 20260515
6
+
3
7
  ### v0.57.0 (2026-04-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20260409
@@ -1085,6 +1085,31 @@ module Google
1085
1085
  end
1086
1086
  end
1087
1087
 
1088
+ # `DeleteRepositoryLongRunning` request message.
1089
+ class DeleteRepositoryLongRunningRequest
1090
+ include Google::Apis::Core::Hashable
1091
+
1092
+ # Optional. If set to true, child resources of this repository (compilation
1093
+ # results and workflow invocations) will also be deleted. Otherwise, the request
1094
+ # will only succeed if the repository has no child resources. **Note:** *This
1095
+ # flag doesn't support deletion of workspaces, release configs or workflow
1096
+ # configs. If any of such resources exists in the repository, the request will
1097
+ # fail.*
1098
+ # Corresponds to the JSON property `force`
1099
+ # @return [Boolean]
1100
+ attr_accessor :force
1101
+ alias_method :force?, :force
1102
+
1103
+ def initialize(**args)
1104
+ update!(**args)
1105
+ end
1106
+
1107
+ # Update properties of this object
1108
+ def update!(**args)
1109
+ @force = args[:force] if args.key?(:force)
1110
+ end
1111
+ end
1112
+
1088
1113
  # `DeleteTeamFolderTree` request message.
1089
1114
  class DeleteTeamFolderTreeRequest
1090
1115
  include Google::Apis::Core::Hashable
@@ -1113,12 +1138,14 @@ module Google
1113
1138
  class DirectoryEntry
1114
1139
  include Google::Apis::Core::Hashable
1115
1140
 
1116
- # A child directory in the directory.
1141
+ # A child directory in the directory. The path is returned including the full
1142
+ # folder structure from the root.
1117
1143
  # Corresponds to the JSON property `directory`
1118
1144
  # @return [String]
1119
1145
  attr_accessor :directory
1120
1146
 
1121
- # A file in the directory.
1147
+ # A file in the directory. The path is returned including the full folder
1148
+ # structure from the root.
1122
1149
  # Corresponds to the JSON property `file`
1123
1150
  # @return [String]
1124
1151
  attr_accessor :file
@@ -1541,12 +1568,17 @@ module Google
1541
1568
  # @return [String]
1542
1569
  attr_accessor :authentication_token_secret_version
1543
1570
 
1544
- # Required. The Git remote's default branch name. If not set, `main` will be
1545
- # used and stored for the repository.
1571
+ # Optional. The Git remote's default branch name. If not set `main` will be used.
1546
1572
  # Corresponds to the JSON property `defaultBranch`
1547
1573
  # @return [String]
1548
1574
  attr_accessor :default_branch
1549
1575
 
1576
+ # Output only. The Git remote's effective default branch name. This is the
1577
+ # default branch name of the Git remote if it is set, otherwise it is `main`.
1578
+ # Corresponds to the JSON property `effectiveDefaultBranch`
1579
+ # @return [String]
1580
+ attr_accessor :effective_default_branch
1581
+
1550
1582
  # Configures fields for performing SSH authentication.
1551
1583
  # Corresponds to the JSON property `sshAuthenticationConfig`
1552
1584
  # @return [Google::Apis::DataformV1beta1::SshAuthenticationConfig]
@@ -1572,6 +1604,7 @@ module Google
1572
1604
  def update!(**args)
1573
1605
  @authentication_token_secret_version = args[:authentication_token_secret_version] if args.key?(:authentication_token_secret_version)
1574
1606
  @default_branch = args[:default_branch] if args.key?(:default_branch)
1607
+ @effective_default_branch = args[:effective_default_branch] if args.key?(:effective_default_branch)
1575
1608
  @ssh_authentication_config = args[:ssh_authentication_config] if args.key?(:ssh_authentication_config)
1576
1609
  @token_status = args[:token_status] if args.key?(:token_status)
1577
1610
  @url = args[:url] if args.key?(:url)
@@ -1817,7 +1850,8 @@ module Google
1817
1850
  # @return [String]
1818
1851
  attr_accessor :next_page_token
1819
1852
 
1820
- # Locations which could not be reached.
1853
+ # Locations which could not be reached. LINT.ThenChange(//depot/google3/google/
1854
+ # cloud/dataform/v2main/data_pipelines.proto:ListCompilationResultsResponse)
1821
1855
  # Corresponds to the JSON property `unreachable`
1822
1856
  # @return [Array<String>]
1823
1857
  attr_accessor :unreachable
@@ -1908,7 +1942,8 @@ module Google
1908
1942
  # @return [Array<Google::Apis::DataformV1beta1::ReleaseConfig>]
1909
1943
  attr_accessor :release_configs
1910
1944
 
1911
- # Locations which could not be reached.
1945
+ # Locations which could not be reached. LINT.ThenChange(//depot/google3/google/
1946
+ # cloud/dataform/v2main/data_pipelines.proto:ListReleaseConfigsResponse)
1912
1947
  # Corresponds to the JSON property `unreachable`
1913
1948
  # @return [Array<String>]
1914
1949
  attr_accessor :unreachable
@@ -2339,9 +2374,9 @@ module Google
2339
2374
  # @return [String]
2340
2375
  attr_accessor :contents
2341
2376
 
2342
- # Output only. The ID of the Vertex job that executed the notebook in contents
2343
- # and also the ID used for the outputs created in Google Cloud Storage buckets.
2344
- # Only set once the job has started to run.
2377
+ # Output only. The ID of the Gemini Enterprise Agent Platform job that executed
2378
+ # the notebook in contents and also the ID used for the outputs created in
2379
+ # Google Cloud Storage buckets. Only set once the job has started to run.
2345
2380
  # Corresponds to the JSON property `jobId`
2346
2381
  # @return [String]
2347
2382
  attr_accessor :job_id
@@ -3195,7 +3230,8 @@ module Google
3195
3230
 
3196
3231
  # Output only. All the metadata information that is used internally to serve the
3197
3232
  # resource. For example: timestamps, flags, status fields, etc. The format of
3198
- # this field is a JSON string.
3233
+ # this field is a JSON string. LINT.ThenChange(//depot/google3/google/cloud/
3234
+ # dataform/v2main/data_pipelines.proto:ReleaseConfig)
3199
3235
  # Corresponds to the JSON property `internalMetadata`
3200
3236
  # @return [String]
3201
3237
  attr_accessor :internal_metadata
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataformV1beta1
18
18
  # Version of the google-apis-dataform_v1beta1 gem
19
- GEM_VERSION = "0.57.0"
19
+ GEM_VERSION = "0.58.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260409"
25
+ REVISION = "20260515"
26
26
  end
27
27
  end
28
28
  end
@@ -208,6 +208,12 @@ module Google
208
208
  include Google::Apis::Core::JsonObjectSupport
209
209
  end
210
210
 
211
+ class DeleteRepositoryLongRunningRequest
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
211
217
  class DeleteTeamFolderTreeRequest
212
218
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
219
 
@@ -1119,6 +1125,13 @@ module Google
1119
1125
  end
1120
1126
  end
1121
1127
 
1128
+ class DeleteRepositoryLongRunningRequest
1129
+ # @private
1130
+ class Representation < Google::Apis::Core::JsonRepresentation
1131
+ property :force, as: 'force'
1132
+ end
1133
+ end
1134
+
1122
1135
  class DeleteTeamFolderTreeRequest
1123
1136
  # @private
1124
1137
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1261,6 +1274,7 @@ module Google
1261
1274
  class Representation < Google::Apis::Core::JsonRepresentation
1262
1275
  property :authentication_token_secret_version, as: 'authenticationTokenSecretVersion'
1263
1276
  property :default_branch, as: 'defaultBranch'
1277
+ property :effective_default_branch, as: 'effectiveDefaultBranch'
1264
1278
  property :ssh_authentication_config, as: 'sshAuthenticationConfig', class: Google::Apis::DataformV1beta1::SshAuthenticationConfig, decorator: Google::Apis::DataformV1beta1::SshAuthenticationConfig::Representation
1265
1279
 
1266
1280
  property :token_status, as: 'tokenStatus'
@@ -113,8 +113,8 @@ module Google
113
113
  end
114
114
 
115
115
  # Lists information about the supported locations for this service. This method
116
- # lists locations based on the resource scope provided in the [
117
- # ListLocationsRequest.name] field: * **Global locations**: If `name` is empty,
116
+ # lists locations based on the resource scope provided in the
117
+ # ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
118
118
  # the method lists the public locations available to all projects. * **Project-
119
119
  # specific locations**: If `name` follows the format `projects/`project``, the
120
120
  # method lists locations visible to that specific project. This includes public,
@@ -125,8 +125,8 @@ module Google
125
125
  # @param [String] name
126
126
  # The resource that owns the locations collection, if applicable.
127
127
  # @param [Array<String>, String] extra_location_types
128
- # Optional. Do not use this field. It is unsupported and is ignored unless
129
- # explicitly documented otherwise. This is primarily for internal usage.
128
+ # Optional. Do not use this field unless explicitly documented otherwise. This
129
+ # is primarily for internal usage.
130
130
  # @param [String] filter
131
131
  # A filter to narrow down results to a preferred subset. The filtering language
132
132
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -933,6 +933,39 @@ module Google
933
933
  execute_or_queue_command(command, &block)
934
934
  end
935
935
 
936
+ # Deletes a single Repository asynchronously.
937
+ # @param [String] name
938
+ # Required. The repository's name.
939
+ # @param [Google::Apis::DataformV1beta1::DeleteRepositoryLongRunningRequest] delete_repository_long_running_request_object
940
+ # @param [String] fields
941
+ # Selector specifying which fields to include in a partial response.
942
+ # @param [String] quota_user
943
+ # Available to use for quota purposes for server-side applications. Can be any
944
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
945
+ # @param [Google::Apis::RequestOptions] options
946
+ # Request-specific options
947
+ #
948
+ # @yield [result, err] Result & error if block supplied
949
+ # @yieldparam result [Google::Apis::DataformV1beta1::Operation] parsed result object
950
+ # @yieldparam err [StandardError] error object if request failed
951
+ #
952
+ # @return [Google::Apis::DataformV1beta1::Operation]
953
+ #
954
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
955
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
956
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
957
+ def delete_project_location_repository_long_running(name, delete_repository_long_running_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
958
+ command = make_simple_command(:post, 'v1beta1/{+name}:deleteLongRunning', options)
959
+ command.request_representation = Google::Apis::DataformV1beta1::DeleteRepositoryLongRunningRequest::Representation
960
+ command.request_object = delete_repository_long_running_request_object
961
+ command.response_representation = Google::Apis::DataformV1beta1::Operation::Representation
962
+ command.response_class = Google::Apis::DataformV1beta1::Operation
963
+ command.params['name'] = name unless name.nil?
964
+ command.query['fields'] = fields unless fields.nil?
965
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
966
+ execute_or_queue_command(command, &block)
967
+ end
968
+
936
969
  # Fetches a Repository's history of commits. The Repository must not have a
937
970
  # value for `git_remote_settings.url`.
938
971
  # @param [String] name
@@ -1405,7 +1438,8 @@ module Google
1405
1438
 
1406
1439
  # Fetches a single CompilationResult.
1407
1440
  # @param [String] name
1408
- # Required. The compilation result's name.
1441
+ # Required. The compilation result's name. LINT.ThenChange(//depot/google3/
1442
+ # google/cloud/dataform/v2main/data_pipelines.proto:GetCompilationResultRequest)
1409
1443
  # @param [String] fields
1410
1444
  # Selector specifying which fields to include in a partial response.
1411
1445
  # @param [String] quota_user
@@ -1438,7 +1472,8 @@ module Google
1438
1472
  # Required. The repository in which to list compilation results. Must be in the
1439
1473
  # format `projects/*/locations/*/repositories/*`.
1440
1474
  # @param [String] filter
1441
- # Optional. Filter for the returned list.
1475
+ # Optional. Filter for the returned list. LINT.ThenChange(//depot/google3/google/
1476
+ # cloud/dataform/v2main/data_pipelines.proto:ListCompilationResultsRequest)
1442
1477
  # @param [String] order_by
1443
1478
  # Optional. This field only supports ordering by `name` and `create_time`. If
1444
1479
  # unspecified, the server will choose the ordering. If specified, the default
@@ -1535,7 +1570,9 @@ module Google
1535
1570
  # @param [Google::Apis::DataformV1beta1::ReleaseConfig] release_config_object
1536
1571
  # @param [String] release_config_id
1537
1572
  # Required. The ID to use for the release config, which will become the final
1538
- # component of the release config's resource name.
1573
+ # component of the release config's resource name. LINT.ThenChange(//depot/
1574
+ # google3/google/cloud/dataform/v2main/data_pipelines.proto:
1575
+ # CreateReleaseConfigRequest)
1539
1576
  # @param [String] fields
1540
1577
  # Selector specifying which fields to include in a partial response.
1541
1578
  # @param [String] quota_user
@@ -1568,7 +1605,8 @@ module Google
1568
1605
 
1569
1606
  # Deletes a single ReleaseConfig.
1570
1607
  # @param [String] name
1571
- # Required. The release config's name.
1608
+ # Required. The release config's name. LINT.ThenChange(//depot/google3/google/
1609
+ # cloud/dataform/v2main/data_pipelines.proto:DeleteReleaseConfigRequest)
1572
1610
  # @param [String] fields
1573
1611
  # Selector specifying which fields to include in a partial response.
1574
1612
  # @param [String] quota_user
@@ -1598,7 +1636,8 @@ module Google
1598
1636
 
1599
1637
  # Fetches a single ReleaseConfig.
1600
1638
  # @param [String] name
1601
- # Required. The release config's name.
1639
+ # Required. The release config's name. LINT.ThenChange(//depot/google3/google/
1640
+ # cloud/dataform/v2main/data_pipelines.proto:GetReleaseConfigRequest)
1602
1641
  # @param [String] fields
1603
1642
  # Selector specifying which fields to include in a partial response.
1604
1643
  # @param [String] quota_user
@@ -1638,7 +1677,9 @@ module Google
1638
1677
  # Optional. Page token received from a previous `ListReleaseConfigs` call.
1639
1678
  # Provide this to retrieve the subsequent page. When paginating, all other
1640
1679
  # parameters provided to `ListReleaseConfigs`, with the exception of `page_size`,
1641
- # must match the call that provided the page token.
1680
+ # must match the call that provided the page token. LINT.ThenChange(//depot/
1681
+ # google3/google/cloud/dataform/v2main/data_pipelines.proto:
1682
+ # ListReleaseConfigsRequest)
1642
1683
  # @param [String] fields
1643
1684
  # Selector specifying which fields to include in a partial response.
1644
1685
  # @param [String] quota_user
@@ -3255,8 +3296,8 @@ module Google
3255
3296
  # orderBy="display_name"` * `orderBy="display_name desc"`
3256
3297
  # @param [Fixnum] page_size
3257
3298
  # Optional. Maximum number of TeamFolders to return. The server may return fewer
3258
- # items than requested. If unspecified, the server will pick an appropriate
3259
- # default.
3299
+ # items than requested. If unspecified, the server will pick a default of
3300
+ # page_size = 50.
3260
3301
  # @param [String] page_token
3261
3302
  # Optional. Page token received from a previous `SearchTeamFolders` call.
3262
3303
  # Provide this to retrieve the subsequent page. When paginating, all other
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.57.0
4
+ version: 0.58.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.57.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.58.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: