google-apis-dataform_v1beta1 0.51.0 → 0.53.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: 574aa15ca2e93ffec2b9019627cbaabb22bb1be149cc94dc9aa06a973b59ec77
4
- data.tar.gz: f132f63966202ca518fa13a205a2a4d1556424544859354a4186ca115f5f3acd
3
+ metadata.gz: ca970fcc48aa511d7b301fc8956aede1ef628c75fcb1e6ca7310a96c0dbc3026
4
+ data.tar.gz: 0b3c6f1ee44e093d6c26eeb2fb2ac9606878192048f6c5641ea61d13fc79964a
5
5
  SHA512:
6
- metadata.gz: d4c2422cbe520b5c81df55e9640d730337d5580441cbd7d2c402a6d485031555812525dda773ddb82438ee2b2cdd812876d795b5221ef248d99c8dc6176f8b98
7
- data.tar.gz: 4f896e6d47d6a4ae20c126ae9b82aca5d9b00398cd8a424eb7b92452a9d3f88f8d564aafcd151d09dbe9c5c8f939eb64c37a1b9148fff0522126a3e26ac05896
6
+ metadata.gz: 5ca61f20acc37d07c3da6bad811808f337e33703a2eb0d3a3ce518c3be56364cc645a5de8a03199b7519509f2d93353b93c37ba398f6c2e93b4ce98a204501d3
7
+ data.tar.gz: da8ee81d5cab09843634bfc7accdc9a302708af48fd3085c5ec78a1ec9b4d29f66aa6e4e6a29a64318d24a1c50649885430ad25176be119c981bb66fa734e768
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.53.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251202
6
+
7
+ ### v0.52.0 (2025-11-23)
8
+
9
+ * Regenerated from discovery document revision 20251111
10
+
3
11
  ### v0.51.0 (2025-11-09)
4
12
 
5
13
  * Regenerated from discovery document revision 20251102
@@ -749,6 +749,11 @@ module Google
749
749
  # @return [String]
750
750
  attr_accessor :name
751
751
 
752
+ # Metadata used to identify if a resource is user scoped.
753
+ # Corresponds to the JSON property `privateResourceMetadata`
754
+ # @return [Google::Apis::DataformV1beta1::PrivateResourceMetadata]
755
+ attr_accessor :private_resource_metadata
756
+
752
757
  # Immutable. The name of the release config to compile. Must be in the format `
753
758
  # projects/*/locations/*/repositories/*/releaseConfigs/*`.
754
759
  # Corresponds to the JSON property `releaseConfig`
@@ -781,6 +786,7 @@ module Google
781
786
  @git_commitish = args[:git_commitish] if args.key?(:git_commitish)
782
787
  @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
783
788
  @name = args[:name] if args.key?(:name)
789
+ @private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
784
790
  @release_config = args[:release_config] if args.key?(:release_config)
785
791
  @resolved_git_commit_sha = args[:resolved_git_commit_sha] if args.key?(:resolved_git_commit_sha)
786
792
  @workspace = args[:workspace] if args.key?(:workspace)
@@ -1691,8 +1697,9 @@ module Google
1691
1697
  attr_accessor :operations
1692
1698
 
1693
1699
  # 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.
1700
+ # ListOperationsRequest.return_partial_success` and reads across collections.
1701
+ # For example, when attempting to list all resources across all supported
1702
+ # locations.
1696
1703
  # Corresponds to the JSON property `unreachable`
1697
1704
  # @return [Array<String>]
1698
1705
  attr_accessor :unreachable
@@ -2461,6 +2468,27 @@ module Google
2461
2468
  end
2462
2469
  end
2463
2470
 
2471
+ # Metadata used to identify if a resource is user scoped.
2472
+ class PrivateResourceMetadata
2473
+ include Google::Apis::Core::Hashable
2474
+
2475
+ # Output only. If true, this resource is user-scoped, meaning it is either a
2476
+ # workspace or sourced from a workspace.
2477
+ # Corresponds to the JSON property `userScoped`
2478
+ # @return [Boolean]
2479
+ attr_accessor :user_scoped
2480
+ alias_method :user_scoped?, :user_scoped
2481
+
2482
+ def initialize(**args)
2483
+ update!(**args)
2484
+ end
2485
+
2486
+ # Update properties of this object
2487
+ def update!(**args)
2488
+ @user_scoped = args[:user_scoped] if args.key?(:user_scoped)
2489
+ end
2490
+ end
2491
+
2464
2492
  # `PullGitCommits` request message.
2465
2493
  class PullGitCommitsRequest
2466
2494
  include Google::Apis::Core::Hashable
@@ -2694,6 +2722,14 @@ module Google
2694
2722
  # @return [Array<String>]
2695
2723
  attr_accessor :cluster_expressions
2696
2724
 
2725
+ # Optional. The connection specifying the credentials to be used to read and
2726
+ # write to external storage, such as Cloud Storage. The connection can have the
2727
+ # form ``project`.`location`.`connection_id`` or `projects/`project`/locations/`
2728
+ # location`/connections/`connection_id`", or be set to DEFAULT.
2729
+ # Corresponds to the JSON property `connection`
2730
+ # @return [String]
2731
+ attr_accessor :connection
2732
+
2697
2733
  # A list of actions that this action depends on.
2698
2734
  # Corresponds to the JSON property `dependencyTargets`
2699
2735
  # @return [Array<Google::Apis::DataformV1beta1::Target>]
@@ -2705,6 +2741,11 @@ module Google
2705
2741
  attr_accessor :disabled
2706
2742
  alias_method :disabled?, :disabled
2707
2743
 
2744
+ # Optional. The file format for the BigQuery table.
2745
+ # Corresponds to the JSON property `fileFormat`
2746
+ # @return [String]
2747
+ attr_accessor :file_format
2748
+
2708
2749
  # Contains settings for relations of type `INCREMENTAL_TABLE`.
2709
2750
  # Corresponds to the JSON property `incrementalTableConfig`
2710
2751
  # @return [Google::Apis::DataformV1beta1::IncrementalTableConfig]
@@ -2752,6 +2793,18 @@ module Google
2752
2793
  # @return [String]
2753
2794
  attr_accessor :select_query
2754
2795
 
2796
+ # Optional. The fully qualified location prefix of the external folder where
2797
+ # table data is stored. The URI should be in the format `gs://bucket/
2798
+ # path_to_table/`.
2799
+ # Corresponds to the JSON property `storageUri`
2800
+ # @return [String]
2801
+ attr_accessor :storage_uri
2802
+
2803
+ # Optional. The table format for the BigQuery table.
2804
+ # Corresponds to the JSON property `tableFormat`
2805
+ # @return [String]
2806
+ attr_accessor :table_format
2807
+
2755
2808
  # Arbitrary, user-defined tags on this action.
2756
2809
  # Corresponds to the JSON property `tags`
2757
2810
  # @return [Array<String>]
@@ -2765,8 +2818,10 @@ module Google
2765
2818
  def update!(**args)
2766
2819
  @additional_options = args[:additional_options] if args.key?(:additional_options)
2767
2820
  @cluster_expressions = args[:cluster_expressions] if args.key?(:cluster_expressions)
2821
+ @connection = args[:connection] if args.key?(:connection)
2768
2822
  @dependency_targets = args[:dependency_targets] if args.key?(:dependency_targets)
2769
2823
  @disabled = args[:disabled] if args.key?(:disabled)
2824
+ @file_format = args[:file_format] if args.key?(:file_format)
2770
2825
  @incremental_table_config = args[:incremental_table_config] if args.key?(:incremental_table_config)
2771
2826
  @partition_expiration_days = args[:partition_expiration_days] if args.key?(:partition_expiration_days)
2772
2827
  @partition_expression = args[:partition_expression] if args.key?(:partition_expression)
@@ -2776,6 +2831,8 @@ module Google
2776
2831
  @relation_type = args[:relation_type] if args.key?(:relation_type)
2777
2832
  @require_partition_filter = args[:require_partition_filter] if args.key?(:require_partition_filter)
2778
2833
  @select_query = args[:select_query] if args.key?(:select_query)
2834
+ @storage_uri = args[:storage_uri] if args.key?(:storage_uri)
2835
+ @table_format = args[:table_format] if args.key?(:table_format)
2779
2836
  @tags = args[:tags] if args.key?(:tags)
2780
2837
  end
2781
2838
  end
@@ -3612,6 +3669,11 @@ module Google
3612
3669
  # @return [String]
3613
3670
  attr_accessor :name
3614
3671
 
3672
+ # Metadata used to identify if a resource is user scoped.
3673
+ # Corresponds to the JSON property `privateResourceMetadata`
3674
+ # @return [Google::Apis::DataformV1beta1::PrivateResourceMetadata]
3675
+ attr_accessor :private_resource_metadata
3676
+
3615
3677
  # Output only. The resolved compilation result that was used to create this
3616
3678
  # invocation. Will be in the format `projects/*/locations/*/repositories/*/
3617
3679
  # compilationResults/*`.
@@ -3642,6 +3704,7 @@ module Google
3642
3704
  @invocation_config = args[:invocation_config] if args.key?(:invocation_config)
3643
3705
  @invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
3644
3706
  @name = args[:name] if args.key?(:name)
3707
+ @private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
3645
3708
  @resolved_compilation_result = args[:resolved_compilation_result] if args.key?(:resolved_compilation_result)
3646
3709
  @state = args[:state] if args.key?(:state)
3647
3710
  @workflow_config = args[:workflow_config] if args.key?(:workflow_config)
@@ -3748,6 +3811,11 @@ module Google
3748
3811
  # @return [String]
3749
3812
  attr_accessor :name
3750
3813
 
3814
+ # Metadata used to identify if a resource is user scoped.
3815
+ # Corresponds to the JSON property `privateResourceMetadata`
3816
+ # @return [Google::Apis::DataformV1beta1::PrivateResourceMetadata]
3817
+ attr_accessor :private_resource_metadata
3818
+
3751
3819
  def initialize(**args)
3752
3820
  update!(**args)
3753
3821
  end
@@ -3758,6 +3826,7 @@ module Google
3758
3826
  @data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
3759
3827
  @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
3760
3828
  @name = args[:name] if args.key?(:name)
3829
+ @private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
3761
3830
  end
3762
3831
  end
3763
3832
 
@@ -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.51.0"
19
+ GEM_VERSION = "0.53.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 = "20251102"
25
+ REVISION = "20251202"
26
26
  end
27
27
  end
28
28
  end
@@ -466,6 +466,12 @@ module Google
466
466
  include Google::Apis::Core::JsonObjectSupport
467
467
  end
468
468
 
469
+ class PrivateResourceMetadata
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
469
475
  class PullGitCommitsRequest
470
476
  class Representation < Google::Apis::Core::JsonRepresentation; end
471
477
 
@@ -923,6 +929,8 @@ module Google
923
929
  property :git_commitish, as: 'gitCommitish'
924
930
  property :internal_metadata, as: 'internalMetadata'
925
931
  property :name, as: 'name'
932
+ property :private_resource_metadata, as: 'privateResourceMetadata', class: Google::Apis::DataformV1beta1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1beta1::PrivateResourceMetadata::Representation
933
+
926
934
  property :release_config, as: 'releaseConfig'
927
935
  property :resolved_git_commit_sha, as: 'resolvedGitCommitSha'
928
936
  property :workspace, as: 'workspace'
@@ -1414,6 +1422,13 @@ module Google
1414
1422
  end
1415
1423
  end
1416
1424
 
1425
+ class PrivateResourceMetadata
1426
+ # @private
1427
+ class Representation < Google::Apis::Core::JsonRepresentation
1428
+ property :user_scoped, as: 'userScoped'
1429
+ end
1430
+ end
1431
+
1417
1432
  class PullGitCommitsRequest
1418
1433
  # @private
1419
1434
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1497,9 +1512,11 @@ module Google
1497
1512
  class Representation < Google::Apis::Core::JsonRepresentation
1498
1513
  hash :additional_options, as: 'additionalOptions'
1499
1514
  collection :cluster_expressions, as: 'clusterExpressions'
1515
+ property :connection, as: 'connection'
1500
1516
  collection :dependency_targets, as: 'dependencyTargets', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
1501
1517
 
1502
1518
  property :disabled, as: 'disabled'
1519
+ property :file_format, as: 'fileFormat'
1503
1520
  property :incremental_table_config, as: 'incrementalTableConfig', class: Google::Apis::DataformV1beta1::IncrementalTableConfig, decorator: Google::Apis::DataformV1beta1::IncrementalTableConfig::Representation
1504
1521
 
1505
1522
  property :partition_expiration_days, as: 'partitionExpirationDays'
@@ -1511,6 +1528,8 @@ module Google
1511
1528
  property :relation_type, as: 'relationType'
1512
1529
  property :require_partition_filter, as: 'requirePartitionFilter'
1513
1530
  property :select_query, as: 'selectQuery'
1531
+ property :storage_uri, as: 'storageUri'
1532
+ property :table_format, as: 'tableFormat'
1514
1533
  collection :tags, as: 'tags'
1515
1534
  end
1516
1535
  end
@@ -1745,6 +1764,8 @@ module Google
1745
1764
  property :invocation_timing, as: 'invocationTiming', class: Google::Apis::DataformV1beta1::Interval, decorator: Google::Apis::DataformV1beta1::Interval::Representation
1746
1765
 
1747
1766
  property :name, as: 'name'
1767
+ property :private_resource_metadata, as: 'privateResourceMetadata', class: Google::Apis::DataformV1beta1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1beta1::PrivateResourceMetadata::Representation
1768
+
1748
1769
  property :resolved_compilation_result, as: 'resolvedCompilationResult'
1749
1770
  property :state, as: 'state'
1750
1771
  property :workflow_config, as: 'workflowConfig'
@@ -1780,6 +1801,8 @@ module Google
1780
1801
 
1781
1802
  property :internal_metadata, as: 'internalMetadata'
1782
1803
  property :name, as: 'name'
1804
+ property :private_resource_metadata, as: 'privateResourceMetadata', class: Google::Apis::DataformV1beta1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1beta1::PrivateResourceMetadata::Representation
1805
+
1783
1806
  end
1784
1807
  end
1785
1808
 
@@ -435,11 +435,12 @@ module Google
435
435
  # The standard list page token.
436
436
  # @param [Boolean] return_partial_success
437
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.
438
+ # those that are unreachable are returned in the ListOperationsResponse.
439
+ # unreachable field. This can only be `true` when reading across collections.
440
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
441
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
442
+ # if set unless explicitly documented otherwise in service or product specific
443
+ # documentation.
443
444
  # @param [String] fields
444
445
  # Selector specifying which fields to include in a partial response.
445
446
  # @param [String] quota_user
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.51.0
4
+ version: 0.53.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.51.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.53.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: