google-apis-dataform_v1 0.1.0 → 0.3.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: 725745ef1585dfbf6ef15df9daecd9618d08a199e4a3e2038e80fc0d0f9cb4af
4
- data.tar.gz: a37f687bf6e89b56167500eea4c990638635d7c44098526c4ba29fcda66e4b7a
3
+ metadata.gz: 63ec3d884d71a7796ad7d68ceb5ac5e4b3b1ebee1a5d122243e464f580ca67cf
4
+ data.tar.gz: ac1d0f304d2ce771a2ed78027acc8deba2cd824171caa6fa73e3908f965cd773
5
5
  SHA512:
6
- metadata.gz: ddacdbb6d96900ea1b5361e81fc3dfa94b64dc672f20d6457149bbad0bd6f2f880c51d39eefbeb817cfb1cd122f0433454988c29245c1196fa390730348cbb6f
7
- data.tar.gz: 5360dd3fa6f7e7bd5514673d566b102a43190aafa7883af1e5ae9b2a985e2a682d71724895f2624134f9fc1baf63b84135ca9b0faef36863cecb0cc046995584
6
+ metadata.gz: '08d2dd5626b1d1c3d2dd4b89266f979aa904a4b8949687e2decdd3ef2f2df593cbf0344adad4bb1a68f4ee2b109878cb3ea9bcaadc96df38c385030f29b85a84'
7
+ data.tar.gz: 17728af1a844a781630c9e0a70cb7ff7d3f9284b1e0e6b36b7542dc8f17a429347d22460d70da6dfffd1eca07e08219edc539b27f702a5af0400132157de8827
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dataform_v1
2
2
 
3
+ ### v0.3.0 (2025-11-23)
4
+
5
+ * Regenerated from discovery document revision 20251111
6
+
7
+ ### v0.2.0 (2025-11-09)
8
+
9
+ * Regenerated from discovery document revision 20251102
10
+
3
11
  ### v0.1.0 (2025-10-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20251007
@@ -2693,6 +2693,14 @@ module Google
2693
2693
  # @return [Array<String>]
2694
2694
  attr_accessor :cluster_expressions
2695
2695
 
2696
+ # Optional. The connection specifying the credentials to be used to read and
2697
+ # write to external storage, such as Cloud Storage. The connection can have the
2698
+ # form ``project`.`location`.`connection_id`` or `projects/`project`/locations/`
2699
+ # location`/connections/`connection_id`", or be set to DEFAULT.
2700
+ # Corresponds to the JSON property `connection`
2701
+ # @return [String]
2702
+ attr_accessor :connection
2703
+
2696
2704
  # A list of actions that this action depends on.
2697
2705
  # Corresponds to the JSON property `dependencyTargets`
2698
2706
  # @return [Array<Google::Apis::DataformV1::Target>]
@@ -2704,6 +2712,11 @@ module Google
2704
2712
  attr_accessor :disabled
2705
2713
  alias_method :disabled?, :disabled
2706
2714
 
2715
+ # Optional. The file format for the BigQuery table.
2716
+ # Corresponds to the JSON property `fileFormat`
2717
+ # @return [String]
2718
+ attr_accessor :file_format
2719
+
2707
2720
  # Contains settings for relations of type `INCREMENTAL_TABLE`.
2708
2721
  # Corresponds to the JSON property `incrementalTableConfig`
2709
2722
  # @return [Google::Apis::DataformV1::IncrementalTableConfig]
@@ -2751,6 +2764,18 @@ module Google
2751
2764
  # @return [String]
2752
2765
  attr_accessor :select_query
2753
2766
 
2767
+ # Optional. The fully qualified location prefix of the external folder where
2768
+ # table data is stored. The URI should be in the format `gs://bucket/
2769
+ # path_to_table/`.
2770
+ # Corresponds to the JSON property `storageUri`
2771
+ # @return [String]
2772
+ attr_accessor :storage_uri
2773
+
2774
+ # Optional. The table format for the BigQuery table.
2775
+ # Corresponds to the JSON property `tableFormat`
2776
+ # @return [String]
2777
+ attr_accessor :table_format
2778
+
2754
2779
  # Arbitrary, user-defined tags on this action.
2755
2780
  # Corresponds to the JSON property `tags`
2756
2781
  # @return [Array<String>]
@@ -2764,8 +2789,10 @@ module Google
2764
2789
  def update!(**args)
2765
2790
  @additional_options = args[:additional_options] if args.key?(:additional_options)
2766
2791
  @cluster_expressions = args[:cluster_expressions] if args.key?(:cluster_expressions)
2792
+ @connection = args[:connection] if args.key?(:connection)
2767
2793
  @dependency_targets = args[:dependency_targets] if args.key?(:dependency_targets)
2768
2794
  @disabled = args[:disabled] if args.key?(:disabled)
2795
+ @file_format = args[:file_format] if args.key?(:file_format)
2769
2796
  @incremental_table_config = args[:incremental_table_config] if args.key?(:incremental_table_config)
2770
2797
  @partition_expiration_days = args[:partition_expiration_days] if args.key?(:partition_expiration_days)
2771
2798
  @partition_expression = args[:partition_expression] if args.key?(:partition_expression)
@@ -2775,6 +2802,8 @@ module Google
2775
2802
  @relation_type = args[:relation_type] if args.key?(:relation_type)
2776
2803
  @require_partition_filter = args[:require_partition_filter] if args.key?(:require_partition_filter)
2777
2804
  @select_query = args[:select_query] if args.key?(:select_query)
2805
+ @storage_uri = args[:storage_uri] if args.key?(:storage_uri)
2806
+ @table_format = args[:table_format] if args.key?(:table_format)
2778
2807
  @tags = args[:tags] if args.key?(:tags)
2779
2808
  end
2780
2809
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataformV1
18
18
  # Version of the google-apis-dataform_v1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.3.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 = "20251007"
25
+ REVISION = "20251111"
26
26
  end
27
27
  end
28
28
  end
@@ -1497,9 +1497,11 @@ module Google
1497
1497
  class Representation < Google::Apis::Core::JsonRepresentation
1498
1498
  hash :additional_options, as: 'additionalOptions'
1499
1499
  collection :cluster_expressions, as: 'clusterExpressions'
1500
+ property :connection, as: 'connection'
1500
1501
  collection :dependency_targets, as: 'dependencyTargets', class: Google::Apis::DataformV1::Target, decorator: Google::Apis::DataformV1::Target::Representation
1501
1502
 
1502
1503
  property :disabled, as: 'disabled'
1504
+ property :file_format, as: 'fileFormat'
1503
1505
  property :incremental_table_config, as: 'incrementalTableConfig', class: Google::Apis::DataformV1::IncrementalTableConfig, decorator: Google::Apis::DataformV1::IncrementalTableConfig::Representation
1504
1506
 
1505
1507
  property :partition_expiration_days, as: 'partitionExpirationDays'
@@ -1511,6 +1513,8 @@ module Google
1511
1513
  property :relation_type, as: 'relationType'
1512
1514
  property :require_partition_filter, as: 'requirePartitionFilter'
1513
1515
  property :select_query, as: 'selectQuery'
1516
+ property :storage_uri, as: 'storageUri'
1517
+ property :table_format, as: 'tableFormat'
1514
1518
  collection :tags, as: 'tags'
1515
1519
  end
1516
1520
  end
@@ -116,8 +116,8 @@ module Google
116
116
  # @param [String] name
117
117
  # The resource that owns the locations collection, if applicable.
118
118
  # @param [Array<String>, String] extra_location_types
119
- # Optional. Unless explicitly documented otherwise, don't use this unsupported
120
- # field which is primarily intended for internal usage.
119
+ # Optional. Do not use this field. It is unsupported and is ignored unless
120
+ # explicitly documented otherwise. This is primarily for internal usage.
121
121
  # @param [String] filter
122
122
  # A filter to narrow down results to a preferred subset. The filtering language
123
123
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataform_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1/v0.1.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1/v0.3.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1
62
62
  rdoc_options: []
63
63
  require_paths: