google-apis-dataform_v1beta1 0.63.0 → 0.64.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: cf46a2098a05a507162f8b1e44201c692e85079d90da58219077ebfe20aa040f
4
- data.tar.gz: 488c2d0ad9494ebb53ae4eeee1a27015876d24adbc1b416b17bfa8c1a8d5ad0e
3
+ metadata.gz: 7b6d341d45e6e262a996552305185b2ff9208301c3d4eea64161a1911c4e702c
4
+ data.tar.gz: 4cc9c70d55b0e53aba97f11c8d5b8fa82cfe0a26ba5ef4caa19045457f4b6dcb
5
5
  SHA512:
6
- metadata.gz: 3d300542fc58c17dcacaafd9b1eeea19861bf73bb54276633751860b5e3fbd642122e5bd5d74bca3d43b1c64456244735b54665ff5aeaf95317f47777109cad4
7
- data.tar.gz: 0d649ad59d6205de39545db65c1d2807062c1d643fe3d7513c4cae2e441c54a02c7c3471e74ade8ed2e8367fe17473d901705cdc36adaefe5cf8428d3eb87a8c
6
+ metadata.gz: 3194ee224b659de86c5c76ba519229aede363c7fcedb2a7c220bbc29b51e56031f6622ca9ede41683eb186b523afefe2d66bda792e8502c4eae6ff4a37bbb048
7
+ data.tar.gz: bacb395628896ad2f5194c7585518ae25160da8ce885b5d588a7321b0a639f9fe4c9c7ed3860cbcc5961054785a6cedb8a566f1b58e1868d6bdfc77ace10f2c1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.64.0 (2026-09-13)
4
+
5
+ * Regenerated from discovery document revision 20260906
6
+
3
7
  ### v0.63.0 (2026-08-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20260826
@@ -227,6 +227,107 @@ module Google
227
227
  end
228
228
  end
229
229
 
230
+ # Represents a BigQuery unit test.
231
+ class BigQueryUnitTest
232
+ include Google::Apis::Core::Hashable
233
+
234
+ # A list of actions that this action depends on.
235
+ # Corresponds to the JSON property `dependencyTargets`
236
+ # @return [Array<Google::Apis::DataformV1beta1::Target>]
237
+ attr_accessor :dependency_targets
238
+
239
+ # Whether this action is disabled (i.e. should not be run).
240
+ # Corresponds to the JSON property `disabled`
241
+ # @return [Boolean]
242
+ attr_accessor :disabled
243
+ alias_method :disabled?, :disabled
244
+
245
+ # The name of the unit test.
246
+ # Corresponds to the JSON property `displayName`
247
+ # @return [String]
248
+ attr_accessor :display_name
249
+
250
+ # Expected output query to compare against the test query.
251
+ # Corresponds to the JSON property `expectedOutputQuery`
252
+ # @return [String]
253
+ attr_accessor :expected_output_query
254
+
255
+ # Arbitrary, user-defined tags on this action.
256
+ # Corresponds to the JSON property `tags`
257
+ # @return [Array<String>]
258
+ attr_accessor :tags
259
+
260
+ # Test query to execute.
261
+ # Corresponds to the JSON property `testQuery`
262
+ # @return [String]
263
+ attr_accessor :test_query
264
+
265
+ def initialize(**args)
266
+ update!(**args)
267
+ end
268
+
269
+ # Update properties of this object
270
+ def update!(**args)
271
+ @dependency_targets = args[:dependency_targets] if args.key?(:dependency_targets)
272
+ @disabled = args[:disabled] if args.key?(:disabled)
273
+ @display_name = args[:display_name] if args.key?(:display_name)
274
+ @expected_output_query = args[:expected_output_query] if args.key?(:expected_output_query)
275
+ @tags = args[:tags] if args.key?(:tags)
276
+ @test_query = args[:test_query] if args.key?(:test_query)
277
+ end
278
+ end
279
+
280
+ # Represents a workflow action that will run a BigQuery unit test.
281
+ class BigQueryUnitTestAction
282
+ include Google::Apis::Core::Hashable
283
+
284
+ # Output only. Job ID for the actual results.
285
+ # Corresponds to the JSON property `actualResultsJobId`
286
+ # @return [String]
287
+ attr_accessor :actual_results_job_id
288
+
289
+ # Output only. SQL script for the actual results.
290
+ # Corresponds to the JSON property `actualResultsSqlScript`
291
+ # @return [String]
292
+ attr_accessor :actual_results_sql_script
293
+
294
+ # Output only. Job ID for the expected results.
295
+ # Corresponds to the JSON property `expectedResultsJobId`
296
+ # @return [String]
297
+ attr_accessor :expected_results_job_id
298
+
299
+ # Output only. SQL script for the expected results.
300
+ # Corresponds to the JSON property `expectedResultsSqlScript`
301
+ # @return [String]
302
+ attr_accessor :expected_results_sql_script
303
+
304
+ # Output only. Total bytes billed for this action. Combined total for actual and
305
+ # expected jobs.
306
+ # Corresponds to the JSON property `totalBilledBytes`
307
+ # @return [Fixnum]
308
+ attr_accessor :total_billed_bytes
309
+
310
+ # Output only. Total bytes processed for this action. Combined total for actual
311
+ # and expected jobs.
312
+ # Corresponds to the JSON property `totalProcessedBytes`
313
+ # @return [Fixnum]
314
+ attr_accessor :total_processed_bytes
315
+
316
+ def initialize(**args)
317
+ update!(**args)
318
+ end
319
+
320
+ # Update properties of this object
321
+ def update!(**args)
322
+ @actual_results_job_id = args[:actual_results_job_id] if args.key?(:actual_results_job_id)
323
+ @actual_results_sql_script = args[:actual_results_sql_script] if args.key?(:actual_results_sql_script)
324
+ @expected_results_job_id = args[:expected_results_job_id] if args.key?(:expected_results_job_id)
325
+ @expected_results_sql_script = args[:expected_results_sql_script] if args.key?(:expected_results_sql_script)
326
+ @total_billed_bytes = args[:total_billed_bytes] if args.key?(:total_billed_bytes)
327
+ @total_processed_bytes = args[:total_processed_bytes] if args.key?(:total_processed_bytes)
328
+ end
329
+ end
330
+
230
331
  # Associates `members`, or principals, with a `role`.
231
332
  class Binding
232
333
  include Google::Apis::Core::Hashable
@@ -877,6 +978,11 @@ module Google
877
978
  # @return [Google::Apis::DataformV1beta1::Assertion]
878
979
  attr_accessor :assertion
879
980
 
981
+ # Represents a BigQuery unit test.
982
+ # Corresponds to the JSON property `bigqueryUnitTest`
983
+ # @return [Google::Apis::DataformV1beta1::BigQueryUnitTest]
984
+ attr_accessor :bigquery_unit_test
985
+
880
986
  # Represents an action identifier. If the action writes output, the output will
881
987
  # be written to the referenced database object.
882
988
  # Corresponds to the JSON property `canonicalTarget`
@@ -935,6 +1041,7 @@ module Google
935
1041
  # Update properties of this object
936
1042
  def update!(**args)
937
1043
  @assertion = args[:assertion] if args.key?(:assertion)
1044
+ @bigquery_unit_test = args[:bigquery_unit_test] if args.key?(:bigquery_unit_test)
938
1045
  @canonical_target = args[:canonical_target] if args.key?(:canonical_target)
939
1046
  @data_preparation = args[:data_preparation] if args.key?(:data_preparation)
940
1047
  @declaration = args[:declaration] if args.key?(:declaration)
@@ -1317,6 +1424,50 @@ module Google
1317
1424
  end
1318
1425
  end
1319
1426
 
1427
+ # Includes configuration options for repository end user authentication.
1428
+ class EndUserAuthConfig
1429
+ include Google::Apis::Core::Hashable
1430
+
1431
+ # OAuth configuration for end user authentication.
1432
+ # Corresponds to the JSON property `oauthConfig`
1433
+ # @return [Google::Apis::DataformV1beta1::OAuthConfig]
1434
+ attr_accessor :oauth_config
1435
+
1436
+ def initialize(**args)
1437
+ update!(**args)
1438
+ end
1439
+
1440
+ # Update properties of this object
1441
+ def update!(**args)
1442
+ @oauth_config = args[:oauth_config] if args.key?(:oauth_config)
1443
+ end
1444
+ end
1445
+
1446
+ # Includes configuration options for end user authentication.
1447
+ class EndUserAuthenticationConfig
1448
+ include Google::Apis::Core::Hashable
1449
+
1450
+ # OAuth configuration for end user authentication.
1451
+ # Corresponds to the JSON property `oauthConfig`
1452
+ # @return [Google::Apis::DataformV1beta1::OAuthConfig]
1453
+ attr_accessor :oauth_config
1454
+
1455
+ # Output only. Email address of the user to run workflow invocations under.
1456
+ # Corresponds to the JSON property `userEmail`
1457
+ # @return [String]
1458
+ attr_accessor :user_email
1459
+
1460
+ def initialize(**args)
1461
+ update!(**args)
1462
+ end
1463
+
1464
+ # Update properties of this object
1465
+ def update!(**args)
1466
+ @oauth_config = args[:oauth_config] if args.key?(:oauth_config)
1467
+ @user_email = args[:user_email] if args.key?(:user_email)
1468
+ end
1469
+ end
1470
+
1320
1471
  # Error table information, used to write error data into a BigQuery table.
1321
1472
  class ErrorTable
1322
1473
  include Google::Apis::Core::Hashable
@@ -2005,6 +2156,16 @@ module Google
2005
2156
  class InvocationConfig
2006
2157
  include Google::Apis::Core::Hashable
2007
2158
 
2159
+ # Includes configuration options for end user authentication.
2160
+ # Corresponds to the JSON property `endUserAuthConfig`
2161
+ # @return [Google::Apis::DataformV1beta1::EndUserAuthenticationConfig]
2162
+ attr_accessor :end_user_auth_config
2163
+
2164
+ # Optional. Specifies the execution mode for the workflow invocation.
2165
+ # Corresponds to the JSON property `executionMode`
2166
+ # @return [String]
2167
+ attr_accessor :execution_mode
2168
+
2008
2169
  # Optional. When set to true, any incremental tables will be fully refreshed.
2009
2170
  # Corresponds to the JSON property `fullyRefreshIncrementalTablesEnabled`
2010
2171
  # @return [Boolean]
@@ -2053,6 +2214,8 @@ module Google
2053
2214
 
2054
2215
  # Update properties of this object
2055
2216
  def update!(**args)
2217
+ @end_user_auth_config = args[:end_user_auth_config] if args.key?(:end_user_auth_config)
2218
+ @execution_mode = args[:execution_mode] if args.key?(:execution_mode)
2056
2219
  @fully_refresh_incremental_tables_enabled = args[:fully_refresh_incremental_tables_enabled] if args.key?(:fully_refresh_incremental_tables_enabled)
2057
2220
  @included_tags = args[:included_tags] if args.key?(:included_tags)
2058
2221
  @included_targets = args[:included_targets] if args.key?(:included_targets)
@@ -2659,6 +2822,26 @@ module Google
2659
2822
  end
2660
2823
  end
2661
2824
 
2825
+ # OAuth configuration for end user authentication.
2826
+ class OAuthConfig
2827
+ include Google::Apis::Core::Hashable
2828
+
2829
+ # Optional. Additional OAuth scopes to use for BigQuery executions. Scopes
2830
+ # always in use: `https://www.googleapis.com/auth/bigquery`
2831
+ # Corresponds to the JSON property `additionalOauthScopes`
2832
+ # @return [Array<String>]
2833
+ attr_accessor :additional_oauth_scopes
2834
+
2835
+ def initialize(**args)
2836
+ update!(**args)
2837
+ end
2838
+
2839
+ # Update properties of this object
2840
+ def update!(**args)
2841
+ @additional_oauth_scopes = args[:additional_oauth_scopes] if args.key?(:additional_oauth_scopes)
2842
+ end
2843
+ end
2844
+
2662
2845
  # This resource represents a long-running operation that is the result of a
2663
2846
  # network API call.
2664
2847
  class Operation
@@ -3641,6 +3824,11 @@ module Google
3641
3824
  # @return [String]
3642
3825
  attr_accessor :display_name
3643
3826
 
3827
+ # Includes configuration options for repository end user authentication.
3828
+ # Corresponds to the JSON property `endUserAuthConfig`
3829
+ # @return [Google::Apis::DataformV1beta1::EndUserAuthConfig]
3830
+ attr_accessor :end_user_auth_config
3831
+
3644
3832
  # Controls Git remote configuration for a repository.
3645
3833
  # Corresponds to the JSON property `gitRemoteSettings`
3646
3834
  # @return [Google::Apis::DataformV1beta1::GitRemoteSettings]
@@ -3724,6 +3912,7 @@ module Google
3724
3912
  @create_time = args[:create_time] if args.key?(:create_time)
3725
3913
  @data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
3726
3914
  @display_name = args[:display_name] if args.key?(:display_name)
3915
+ @end_user_auth_config = args[:end_user_auth_config] if args.key?(:end_user_auth_config)
3727
3916
  @git_remote_settings = args[:git_remote_settings] if args.key?(:git_remote_settings)
3728
3917
  @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
3729
3918
  @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
@@ -4599,6 +4788,11 @@ module Google
4599
4788
  # @return [Google::Apis::DataformV1beta1::BigQueryAction]
4600
4789
  attr_accessor :bigquery_action
4601
4790
 
4791
+ # Represents a workflow action that will run a BigQuery unit test.
4792
+ # Corresponds to the JSON property `bigqueryUnitTestAction`
4793
+ # @return [Google::Apis::DataformV1beta1::BigQueryUnitTestAction]
4794
+ attr_accessor :bigquery_unit_test_action
4795
+
4602
4796
  # Represents an action identifier. If the action writes output, the output will
4603
4797
  # be written to the referenced database object.
4604
4798
  # Corresponds to the JSON property `canonicalTarget`
@@ -4653,6 +4847,7 @@ module Google
4653
4847
  # Update properties of this object
4654
4848
  def update!(**args)
4655
4849
  @bigquery_action = args[:bigquery_action] if args.key?(:bigquery_action)
4850
+ @bigquery_unit_test_action = args[:bigquery_unit_test_action] if args.key?(:bigquery_unit_test_action)
4656
4851
  @canonical_target = args[:canonical_target] if args.key?(:canonical_target)
4657
4852
  @data_preparation_action = args[:data_preparation_action] if args.key?(:data_preparation_action)
4658
4853
  @failure_reason = args[:failure_reason] if args.key?(:failure_reason)
@@ -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.63.0"
19
+ GEM_VERSION = "0.64.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260826"
25
+ REVISION = "20260906"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,18 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class BigQueryUnitTest
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
73
+ class BigQueryUnitTestAction
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
67
79
  class Binding
68
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
81
 
@@ -262,6 +274,18 @@ module Google
262
274
  include Google::Apis::Core::JsonObjectSupport
263
275
  end
264
276
 
277
+ class EndUserAuthConfig
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
283
+ class EndUserAuthenticationConfig
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
265
289
  class ErrorTable
266
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
291
 
@@ -532,6 +556,12 @@ module Google
532
556
  include Google::Apis::Core::JsonObjectSupport
533
557
  end
534
558
 
559
+ class OAuthConfig
560
+ class Representation < Google::Apis::Core::JsonRepresentation; end
561
+
562
+ include Google::Apis::Core::JsonObjectSupport
563
+ end
564
+
535
565
  class Operation
536
566
  class Representation < Google::Apis::Core::JsonRepresentation; end
537
567
 
@@ -974,6 +1004,31 @@ module Google
974
1004
  end
975
1005
  end
976
1006
 
1007
+ class BigQueryUnitTest
1008
+ # @private
1009
+ class Representation < Google::Apis::Core::JsonRepresentation
1010
+ collection :dependency_targets, as: 'dependencyTargets', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
1011
+
1012
+ property :disabled, as: 'disabled'
1013
+ property :display_name, as: 'displayName'
1014
+ property :expected_output_query, as: 'expectedOutputQuery'
1015
+ collection :tags, as: 'tags'
1016
+ property :test_query, as: 'testQuery'
1017
+ end
1018
+ end
1019
+
1020
+ class BigQueryUnitTestAction
1021
+ # @private
1022
+ class Representation < Google::Apis::Core::JsonRepresentation
1023
+ property :actual_results_job_id, as: 'actualResultsJobId'
1024
+ property :actual_results_sql_script, as: 'actualResultsSqlScript'
1025
+ property :expected_results_job_id, as: 'expectedResultsJobId'
1026
+ property :expected_results_sql_script, as: 'expectedResultsSqlScript'
1027
+ property :total_billed_bytes, :numeric_string => true, as: 'totalBilledBytes'
1028
+ property :total_processed_bytes, :numeric_string => true, as: 'totalProcessedBytes'
1029
+ end
1030
+ end
1031
+
977
1032
  class Binding
978
1033
  # @private
979
1034
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1150,6 +1205,8 @@ module Google
1150
1205
  class Representation < Google::Apis::Core::JsonRepresentation
1151
1206
  property :assertion, as: 'assertion', class: Google::Apis::DataformV1beta1::Assertion, decorator: Google::Apis::DataformV1beta1::Assertion::Representation
1152
1207
 
1208
+ property :bigquery_unit_test, as: 'bigqueryUnitTest', class: Google::Apis::DataformV1beta1::BigQueryUnitTest, decorator: Google::Apis::DataformV1beta1::BigQueryUnitTest::Representation
1209
+
1153
1210
  property :canonical_target, as: 'canonicalTarget', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
1154
1211
 
1155
1212
  property :data_preparation, as: 'dataPreparation', class: Google::Apis::DataformV1beta1::DataPreparation, decorator: Google::Apis::DataformV1beta1::DataPreparation::Representation
@@ -1288,6 +1345,23 @@ module Google
1288
1345
  end
1289
1346
  end
1290
1347
 
1348
+ class EndUserAuthConfig
1349
+ # @private
1350
+ class Representation < Google::Apis::Core::JsonRepresentation
1351
+ property :oauth_config, as: 'oauthConfig', class: Google::Apis::DataformV1beta1::OAuthConfig, decorator: Google::Apis::DataformV1beta1::OAuthConfig::Representation
1352
+
1353
+ end
1354
+ end
1355
+
1356
+ class EndUserAuthenticationConfig
1357
+ # @private
1358
+ class Representation < Google::Apis::Core::JsonRepresentation
1359
+ property :oauth_config, as: 'oauthConfig', class: Google::Apis::DataformV1beta1::OAuthConfig, decorator: Google::Apis::DataformV1beta1::OAuthConfig::Representation
1360
+
1361
+ property :user_email, as: 'userEmail'
1362
+ end
1363
+ end
1364
+
1291
1365
  class ErrorTable
1292
1366
  # @private
1293
1367
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1494,6 +1568,9 @@ module Google
1494
1568
  class InvocationConfig
1495
1569
  # @private
1496
1570
  class Representation < Google::Apis::Core::JsonRepresentation
1571
+ property :end_user_auth_config, as: 'endUserAuthConfig', class: Google::Apis::DataformV1beta1::EndUserAuthenticationConfig, decorator: Google::Apis::DataformV1beta1::EndUserAuthenticationConfig::Representation
1572
+
1573
+ property :execution_mode, as: 'executionMode'
1497
1574
  property :fully_refresh_incremental_tables_enabled, as: 'fullyRefreshIncrementalTablesEnabled'
1498
1575
  collection :included_tags, as: 'includedTags'
1499
1576
  collection :included_targets, as: 'includedTargets', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
@@ -1694,6 +1771,13 @@ module Google
1694
1771
  end
1695
1772
  end
1696
1773
 
1774
+ class OAuthConfig
1775
+ # @private
1776
+ class Representation < Google::Apis::Core::JsonRepresentation
1777
+ collection :additional_oauth_scopes, as: 'additionalOauthScopes'
1778
+ end
1779
+ end
1780
+
1697
1781
  class Operation
1698
1782
  # @private
1699
1783
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1960,6 +2044,8 @@ module Google
1960
2044
  property :data_encryption_state, as: 'dataEncryptionState', class: Google::Apis::DataformV1beta1::DataEncryptionState, decorator: Google::Apis::DataformV1beta1::DataEncryptionState::Representation
1961
2045
 
1962
2046
  property :display_name, as: 'displayName'
2047
+ property :end_user_auth_config, as: 'endUserAuthConfig', class: Google::Apis::DataformV1beta1::EndUserAuthConfig, decorator: Google::Apis::DataformV1beta1::EndUserAuthConfig::Representation
2048
+
1963
2049
  property :git_remote_settings, as: 'gitRemoteSettings', class: Google::Apis::DataformV1beta1::GitRemoteSettings, decorator: Google::Apis::DataformV1beta1::GitRemoteSettings::Representation
1964
2050
 
1965
2051
  property :internal_metadata, as: 'internalMetadata'
@@ -2229,6 +2315,8 @@ module Google
2229
2315
  class Representation < Google::Apis::Core::JsonRepresentation
2230
2316
  property :bigquery_action, as: 'bigqueryAction', class: Google::Apis::DataformV1beta1::BigQueryAction, decorator: Google::Apis::DataformV1beta1::BigQueryAction::Representation
2231
2317
 
2318
+ property :bigquery_unit_test_action, as: 'bigqueryUnitTestAction', class: Google::Apis::DataformV1beta1::BigQueryUnitTestAction, decorator: Google::Apis::DataformV1beta1::BigQueryUnitTestAction::Representation
2319
+
2232
2320
  property :canonical_target, as: 'canonicalTarget', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
2233
2321
 
2234
2322
  property :data_preparation_action, as: 'dataPreparationAction', class: Google::Apis::DataformV1beta1::DataPreparationAction, decorator: Google::Apis::DataformV1beta1::DataPreparationAction::Representation
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.63.0
4
+ version: 0.64.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.63.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.64.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: