google-apis-dataform_v1beta1 0.48.0 → 0.50.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: f330a122f31ec1e85debc7b155ef58ca375effef3e6b2cd366a109683eb04d19
4
- data.tar.gz: 7c43694a6c7c51af9830f6112aa7175b7e7aee14cc5cd21b5aa95be9f5d12312
3
+ metadata.gz: 5a5b56eebd8f489a10aea85d0ba3c168392112c2bc91a495376383c70fb49d9e
4
+ data.tar.gz: 70647ac7ece7399f1e2426e3fcc750ae2fe7361bbe03498860d22b88c62e56c7
5
5
  SHA512:
6
- metadata.gz: fac1d5a7d7f84bc1981e1db462810fdcd5d86fb1ecff3901d549f9b0dba43109d4934fa63fa40ab190a3ac6926f6045b23f00ebf90d4d85e8323e03cb602645c
7
- data.tar.gz: 219d13434088de692b6a0301ef877b83e57cc21ce24346b55d56edd36f25ff7f1fe3c61bec508164c3e8a6d9f1402d37ee4720b39511d656ea6e2b45f8125e04
6
+ metadata.gz: 27b10d46d0443c8abe4fa9305a9b9e2017d45aeef059bfef306557547cd83b3caa3f7a46e454defcb700de31a9236ff8c09619b5fcd7e10b2fee04992ad14778
7
+ data.tar.gz: 98b572220303c2b888151f2ed6757a8302347eff287aac68b952e86a03ff3156f21b8a0d009ca618c6eadad4c164dd32e3e0bb72bd701cd1966b15470a417486
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.50.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20251007
6
+
7
+ ### v0.49.0 (2025-09-21)
8
+
9
+ * Regenerated from discovery document revision 20250917
10
+
3
11
  ### v0.48.0 (2025-09-14)
4
12
 
5
13
  * Regenerated from discovery document revision 20250907
@@ -895,6 +895,13 @@ module Google
895
895
  # @return [String]
896
896
  attr_accessor :default_kms_key_name
897
897
 
898
+ # Output only. All the metadata information that is used internally to serve the
899
+ # resource. For example: timestamps, flags, status fields, etc. The format of
900
+ # this field is a JSON string.
901
+ # Corresponds to the JSON property `internalMetadata`
902
+ # @return [String]
903
+ attr_accessor :internal_metadata
904
+
898
905
  # Identifier. The config name.
899
906
  # Corresponds to the JSON property `name`
900
907
  # @return [String]
@@ -907,6 +914,7 @@ module Google
907
914
  # Update properties of this object
908
915
  def update!(**args)
909
916
  @default_kms_key_name = args[:default_kms_key_name] if args.key?(:default_kms_key_name)
917
+ @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
910
918
  @name = args[:name] if args.key?(:name)
911
919
  end
912
920
  end
@@ -1569,6 +1577,13 @@ module Google
1569
1577
  # @return [Array<Google::Apis::DataformV1beta1::Target>]
1570
1578
  attr_accessor :included_targets
1571
1579
 
1580
+ # Optional. Specifies the priority for query execution in BigQuery. More
1581
+ # information can be found at https://cloud.google.com/bigquery/docs/running-
1582
+ # queries#queries.
1583
+ # Corresponds to the JSON property `queryPriority`
1584
+ # @return [String]
1585
+ attr_accessor :query_priority
1586
+
1572
1587
  # Optional. The service account to run workflow invocations under.
1573
1588
  # Corresponds to the JSON property `serviceAccount`
1574
1589
  # @return [String]
@@ -1597,6 +1612,7 @@ module Google
1597
1612
  @fully_refresh_incremental_tables_enabled = args[:fully_refresh_incremental_tables_enabled] if args.key?(:fully_refresh_incremental_tables_enabled)
1598
1613
  @included_tags = args[:included_tags] if args.key?(:included_tags)
1599
1614
  @included_targets = args[:included_targets] if args.key?(:included_targets)
1615
+ @query_priority = args[:query_priority] if args.key?(:query_priority)
1600
1616
  @service_account = args[:service_account] if args.key?(:service_account)
1601
1617
  @transitive_dependencies_included = args[:transitive_dependencies_included] if args.key?(:transitive_dependencies_included)
1602
1618
  @transitive_dependents_included = args[:transitive_dependents_included] if args.key?(:transitive_dependents_included)
@@ -1674,6 +1690,13 @@ module Google
1674
1690
  # @return [Array<Google::Apis::DataformV1beta1::Operation>]
1675
1691
  attr_accessor :operations
1676
1692
 
1693
+ # Unordered list. Unreachable resources. Populated when the request sets `
1694
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1695
+ # when attempting to list all resources across all supported locations.
1696
+ # Corresponds to the JSON property `unreachable`
1697
+ # @return [Array<String>]
1698
+ attr_accessor :unreachable
1699
+
1677
1700
  def initialize(**args)
1678
1701
  update!(**args)
1679
1702
  end
@@ -1682,6 +1705,7 @@ module Google
1682
1705
  def update!(**args)
1683
1706
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1684
1707
  @operations = args[:operations] if args.key?(:operations)
1708
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1685
1709
  end
1686
1710
  end
1687
1711
 
@@ -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.48.0"
19
+ GEM_VERSION = "0.50.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 = "20250907"
25
+ REVISION = "20251007"
26
26
  end
27
27
  end
28
28
  end
@@ -964,6 +964,7 @@ module Google
964
964
  # @private
965
965
  class Representation < Google::Apis::Core::JsonRepresentation
966
966
  property :default_kms_key_name, as: 'defaultKmsKeyName'
967
+ property :internal_metadata, as: 'internalMetadata'
967
968
  property :name, as: 'name'
968
969
  end
969
970
  end
@@ -1176,6 +1177,7 @@ module Google
1176
1177
  collection :included_tags, as: 'includedTags'
1177
1178
  collection :included_targets, as: 'includedTargets', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
1178
1179
 
1180
+ property :query_priority, as: 'queryPriority'
1179
1181
  property :service_account, as: 'serviceAccount'
1180
1182
  property :transitive_dependencies_included, as: 'transitiveDependenciesIncluded'
1181
1183
  property :transitive_dependents_included, as: 'transitiveDependentsIncluded'
@@ -1207,6 +1209,7 @@ module Google
1207
1209
  property :next_page_token, as: 'nextPageToken'
1208
1210
  collection :operations, as: 'operations', class: Google::Apis::DataformV1beta1::Operation, decorator: Google::Apis::DataformV1beta1::Operation::Representation
1209
1211
 
1212
+ collection :unreachable, as: 'unreachable'
1210
1213
  end
1211
1214
  end
1212
1215
 
@@ -433,6 +433,13 @@ module Google
433
433
  # The standard list page size.
434
434
  # @param [String] page_token
435
435
  # The standard list page token.
436
+ # @param [Boolean] return_partial_success
437
+ # When set to `true`, operations that are reachable are returned as normal, and
438
+ # those that are unreachable are returned in the [ListOperationsResponse.
439
+ # unreachable] field. This can only be `true` when reading across collections e.
440
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
441
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
442
+ # explicitly documented otherwise in service or product specific documentation.
436
443
  # @param [String] fields
437
444
  # Selector specifying which fields to include in a partial response.
438
445
  # @param [String] quota_user
@@ -450,7 +457,7 @@ module Google
450
457
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
451
458
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
452
459
  # @raise [Google::Apis::AuthorizationError] Authorization is required
453
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
460
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
454
461
  command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
455
462
  command.response_representation = Google::Apis::DataformV1beta1::ListOperationsResponse::Representation
456
463
  command.response_class = Google::Apis::DataformV1beta1::ListOperationsResponse
@@ -458,6 +465,7 @@ module Google
458
465
  command.query['filter'] = filter unless filter.nil?
459
466
  command.query['pageSize'] = page_size unless page_size.nil?
460
467
  command.query['pageToken'] = page_token unless page_token.nil?
468
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
461
469
  command.query['fields'] = fields unless fields.nil?
462
470
  command.query['quotaUser'] = quota_user unless quota_user.nil?
463
471
  execute_or_queue_command(command, &block)
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.48.0
4
+ version: 0.50.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.48.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.50.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: