google-apis-dataform_v1beta1 0.51.0 → 0.52.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eef1f10ec7d4f3463707f0e414ba67674e04e0412b03160ff4cdf0316cc2febe
|
|
4
|
+
data.tar.gz: fd5c399fd36c84ad62c20d653d42bb56c468389467be4a29ad9b4bd541ccb870
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 943ea991fdeb02e07a4a7aaad947738a14c2adbc4d653a9a0dcedad6b4254efcef63eb14c6cd8780bec9930331459221f9f8ecd39e8069853e5e7de7bbeacdbf
|
|
7
|
+
data.tar.gz: 63d16250ee57fac4f950f2749cea635ecab12d2e3cbcd879cdfb253562071db02607d945445f1cba42db66b55d9b7b5d3739158fa032f3d6c7e8cb58d14cca34
|
data/CHANGELOG.md
CHANGED
|
@@ -2694,6 +2694,14 @@ module Google
|
|
|
2694
2694
|
# @return [Array<String>]
|
|
2695
2695
|
attr_accessor :cluster_expressions
|
|
2696
2696
|
|
|
2697
|
+
# Optional. The connection specifying the credentials to be used to read and
|
|
2698
|
+
# write to external storage, such as Cloud Storage. The connection can have the
|
|
2699
|
+
# form ``project`.`location`.`connection_id`` or `projects/`project`/locations/`
|
|
2700
|
+
# location`/connections/`connection_id`", or be set to DEFAULT.
|
|
2701
|
+
# Corresponds to the JSON property `connection`
|
|
2702
|
+
# @return [String]
|
|
2703
|
+
attr_accessor :connection
|
|
2704
|
+
|
|
2697
2705
|
# A list of actions that this action depends on.
|
|
2698
2706
|
# Corresponds to the JSON property `dependencyTargets`
|
|
2699
2707
|
# @return [Array<Google::Apis::DataformV1beta1::Target>]
|
|
@@ -2705,6 +2713,11 @@ module Google
|
|
|
2705
2713
|
attr_accessor :disabled
|
|
2706
2714
|
alias_method :disabled?, :disabled
|
|
2707
2715
|
|
|
2716
|
+
# Optional. The file format for the BigQuery table.
|
|
2717
|
+
# Corresponds to the JSON property `fileFormat`
|
|
2718
|
+
# @return [String]
|
|
2719
|
+
attr_accessor :file_format
|
|
2720
|
+
|
|
2708
2721
|
# Contains settings for relations of type `INCREMENTAL_TABLE`.
|
|
2709
2722
|
# Corresponds to the JSON property `incrementalTableConfig`
|
|
2710
2723
|
# @return [Google::Apis::DataformV1beta1::IncrementalTableConfig]
|
|
@@ -2752,6 +2765,18 @@ module Google
|
|
|
2752
2765
|
# @return [String]
|
|
2753
2766
|
attr_accessor :select_query
|
|
2754
2767
|
|
|
2768
|
+
# Optional. The fully qualified location prefix of the external folder where
|
|
2769
|
+
# table data is stored. The URI should be in the format `gs://bucket/
|
|
2770
|
+
# path_to_table/`.
|
|
2771
|
+
# Corresponds to the JSON property `storageUri`
|
|
2772
|
+
# @return [String]
|
|
2773
|
+
attr_accessor :storage_uri
|
|
2774
|
+
|
|
2775
|
+
# Optional. The table format for the BigQuery table.
|
|
2776
|
+
# Corresponds to the JSON property `tableFormat`
|
|
2777
|
+
# @return [String]
|
|
2778
|
+
attr_accessor :table_format
|
|
2779
|
+
|
|
2755
2780
|
# Arbitrary, user-defined tags on this action.
|
|
2756
2781
|
# Corresponds to the JSON property `tags`
|
|
2757
2782
|
# @return [Array<String>]
|
|
@@ -2765,8 +2790,10 @@ module Google
|
|
|
2765
2790
|
def update!(**args)
|
|
2766
2791
|
@additional_options = args[:additional_options] if args.key?(:additional_options)
|
|
2767
2792
|
@cluster_expressions = args[:cluster_expressions] if args.key?(:cluster_expressions)
|
|
2793
|
+
@connection = args[:connection] if args.key?(:connection)
|
|
2768
2794
|
@dependency_targets = args[:dependency_targets] if args.key?(:dependency_targets)
|
|
2769
2795
|
@disabled = args[:disabled] if args.key?(:disabled)
|
|
2796
|
+
@file_format = args[:file_format] if args.key?(:file_format)
|
|
2770
2797
|
@incremental_table_config = args[:incremental_table_config] if args.key?(:incremental_table_config)
|
|
2771
2798
|
@partition_expiration_days = args[:partition_expiration_days] if args.key?(:partition_expiration_days)
|
|
2772
2799
|
@partition_expression = args[:partition_expression] if args.key?(:partition_expression)
|
|
@@ -2776,6 +2803,8 @@ module Google
|
|
|
2776
2803
|
@relation_type = args[:relation_type] if args.key?(:relation_type)
|
|
2777
2804
|
@require_partition_filter = args[:require_partition_filter] if args.key?(:require_partition_filter)
|
|
2778
2805
|
@select_query = args[:select_query] if args.key?(:select_query)
|
|
2806
|
+
@storage_uri = args[:storage_uri] if args.key?(:storage_uri)
|
|
2807
|
+
@table_format = args[:table_format] if args.key?(:table_format)
|
|
2779
2808
|
@tags = args[:tags] if args.key?(:tags)
|
|
2780
2809
|
end
|
|
2781
2810
|
end
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.52.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 = "
|
|
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::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::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::DataformV1beta1::IncrementalTableConfig, decorator: Google::Apis::DataformV1beta1::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
|
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.
|
|
4
|
+
version: 0.52.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.52.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:
|