google-apis-dataform_v1 0.2.0 → 0.4.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: db4e08b124b1c68e0749aad54a722a0b29c225f2a3aa21745502ecd64b1fbfdc
|
|
4
|
+
data.tar.gz: 79949ece572bb0831a1bb05e291c5db237f7b57d8b6e3eafc960e5b7c0d50b26
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d0001f1e722697dd734518907ff26e5c7ff6a02595cec174bc1e53bdf0836c09b89a77028ae2d6150ca3dcf3658866586f0682158176fe483351b0d3c2c7ab3
|
|
7
|
+
data.tar.gz: e85b96b8add4c01f2d1b7afe1694aa5895b75ca697044090aa9c56dac610e07d6264d0389c11900c311916267e4b9efdfea24e0e75a9528d38448cbde0defff0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataform_v1
|
|
2
2
|
|
|
3
|
+
### v0.4.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251202
|
|
6
|
+
|
|
7
|
+
### v0.3.0 (2025-11-23)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251111
|
|
10
|
+
|
|
3
11
|
### v0.2.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::DataformV1::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)
|
|
@@ -1690,8 +1696,9 @@ module Google
|
|
|
1690
1696
|
attr_accessor :operations
|
|
1691
1697
|
|
|
1692
1698
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1693
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
1694
|
-
# when attempting to list all resources across all supported
|
|
1699
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1700
|
+
# For example, when attempting to list all resources across all supported
|
|
1701
|
+
# locations.
|
|
1695
1702
|
# Corresponds to the JSON property `unreachable`
|
|
1696
1703
|
# @return [Array<String>]
|
|
1697
1704
|
attr_accessor :unreachable
|
|
@@ -2460,6 +2467,27 @@ module Google
|
|
|
2460
2467
|
end
|
|
2461
2468
|
end
|
|
2462
2469
|
|
|
2470
|
+
# Metadata used to identify if a resource is user scoped.
|
|
2471
|
+
class PrivateResourceMetadata
|
|
2472
|
+
include Google::Apis::Core::Hashable
|
|
2473
|
+
|
|
2474
|
+
# Output only. If true, this resource is user-scoped, meaning it is either a
|
|
2475
|
+
# workspace or sourced from a workspace.
|
|
2476
|
+
# Corresponds to the JSON property `userScoped`
|
|
2477
|
+
# @return [Boolean]
|
|
2478
|
+
attr_accessor :user_scoped
|
|
2479
|
+
alias_method :user_scoped?, :user_scoped
|
|
2480
|
+
|
|
2481
|
+
def initialize(**args)
|
|
2482
|
+
update!(**args)
|
|
2483
|
+
end
|
|
2484
|
+
|
|
2485
|
+
# Update properties of this object
|
|
2486
|
+
def update!(**args)
|
|
2487
|
+
@user_scoped = args[:user_scoped] if args.key?(:user_scoped)
|
|
2488
|
+
end
|
|
2489
|
+
end
|
|
2490
|
+
|
|
2463
2491
|
# `PullGitCommits` request message.
|
|
2464
2492
|
class PullGitCommitsRequest
|
|
2465
2493
|
include Google::Apis::Core::Hashable
|
|
@@ -2693,6 +2721,14 @@ module Google
|
|
|
2693
2721
|
# @return [Array<String>]
|
|
2694
2722
|
attr_accessor :cluster_expressions
|
|
2695
2723
|
|
|
2724
|
+
# Optional. The connection specifying the credentials to be used to read and
|
|
2725
|
+
# write to external storage, such as Cloud Storage. The connection can have the
|
|
2726
|
+
# form ``project`.`location`.`connection_id`` or `projects/`project`/locations/`
|
|
2727
|
+
# location`/connections/`connection_id`", or be set to DEFAULT.
|
|
2728
|
+
# Corresponds to the JSON property `connection`
|
|
2729
|
+
# @return [String]
|
|
2730
|
+
attr_accessor :connection
|
|
2731
|
+
|
|
2696
2732
|
# A list of actions that this action depends on.
|
|
2697
2733
|
# Corresponds to the JSON property `dependencyTargets`
|
|
2698
2734
|
# @return [Array<Google::Apis::DataformV1::Target>]
|
|
@@ -2704,6 +2740,11 @@ module Google
|
|
|
2704
2740
|
attr_accessor :disabled
|
|
2705
2741
|
alias_method :disabled?, :disabled
|
|
2706
2742
|
|
|
2743
|
+
# Optional. The file format for the BigQuery table.
|
|
2744
|
+
# Corresponds to the JSON property `fileFormat`
|
|
2745
|
+
# @return [String]
|
|
2746
|
+
attr_accessor :file_format
|
|
2747
|
+
|
|
2707
2748
|
# Contains settings for relations of type `INCREMENTAL_TABLE`.
|
|
2708
2749
|
# Corresponds to the JSON property `incrementalTableConfig`
|
|
2709
2750
|
# @return [Google::Apis::DataformV1::IncrementalTableConfig]
|
|
@@ -2751,6 +2792,18 @@ module Google
|
|
|
2751
2792
|
# @return [String]
|
|
2752
2793
|
attr_accessor :select_query
|
|
2753
2794
|
|
|
2795
|
+
# Optional. The fully qualified location prefix of the external folder where
|
|
2796
|
+
# table data is stored. The URI should be in the format `gs://bucket/
|
|
2797
|
+
# path_to_table/`.
|
|
2798
|
+
# Corresponds to the JSON property `storageUri`
|
|
2799
|
+
# @return [String]
|
|
2800
|
+
attr_accessor :storage_uri
|
|
2801
|
+
|
|
2802
|
+
# Optional. The table format for the BigQuery table.
|
|
2803
|
+
# Corresponds to the JSON property `tableFormat`
|
|
2804
|
+
# @return [String]
|
|
2805
|
+
attr_accessor :table_format
|
|
2806
|
+
|
|
2754
2807
|
# Arbitrary, user-defined tags on this action.
|
|
2755
2808
|
# Corresponds to the JSON property `tags`
|
|
2756
2809
|
# @return [Array<String>]
|
|
@@ -2764,8 +2817,10 @@ module Google
|
|
|
2764
2817
|
def update!(**args)
|
|
2765
2818
|
@additional_options = args[:additional_options] if args.key?(:additional_options)
|
|
2766
2819
|
@cluster_expressions = args[:cluster_expressions] if args.key?(:cluster_expressions)
|
|
2820
|
+
@connection = args[:connection] if args.key?(:connection)
|
|
2767
2821
|
@dependency_targets = args[:dependency_targets] if args.key?(:dependency_targets)
|
|
2768
2822
|
@disabled = args[:disabled] if args.key?(:disabled)
|
|
2823
|
+
@file_format = args[:file_format] if args.key?(:file_format)
|
|
2769
2824
|
@incremental_table_config = args[:incremental_table_config] if args.key?(:incremental_table_config)
|
|
2770
2825
|
@partition_expiration_days = args[:partition_expiration_days] if args.key?(:partition_expiration_days)
|
|
2771
2826
|
@partition_expression = args[:partition_expression] if args.key?(:partition_expression)
|
|
@@ -2775,6 +2830,8 @@ module Google
|
|
|
2775
2830
|
@relation_type = args[:relation_type] if args.key?(:relation_type)
|
|
2776
2831
|
@require_partition_filter = args[:require_partition_filter] if args.key?(:require_partition_filter)
|
|
2777
2832
|
@select_query = args[:select_query] if args.key?(:select_query)
|
|
2833
|
+
@storage_uri = args[:storage_uri] if args.key?(:storage_uri)
|
|
2834
|
+
@table_format = args[:table_format] if args.key?(:table_format)
|
|
2778
2835
|
@tags = args[:tags] if args.key?(:tags)
|
|
2779
2836
|
end
|
|
2780
2837
|
end
|
|
@@ -3602,6 +3659,11 @@ module Google
|
|
|
3602
3659
|
# @return [String]
|
|
3603
3660
|
attr_accessor :name
|
|
3604
3661
|
|
|
3662
|
+
# Metadata used to identify if a resource is user scoped.
|
|
3663
|
+
# Corresponds to the JSON property `privateResourceMetadata`
|
|
3664
|
+
# @return [Google::Apis::DataformV1::PrivateResourceMetadata]
|
|
3665
|
+
attr_accessor :private_resource_metadata
|
|
3666
|
+
|
|
3605
3667
|
# Output only. The resolved compilation result that was used to create this
|
|
3606
3668
|
# invocation. Will be in the format `projects/*/locations/*/repositories/*/
|
|
3607
3669
|
# compilationResults/*`.
|
|
@@ -3632,6 +3694,7 @@ module Google
|
|
|
3632
3694
|
@invocation_config = args[:invocation_config] if args.key?(:invocation_config)
|
|
3633
3695
|
@invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
|
|
3634
3696
|
@name = args[:name] if args.key?(:name)
|
|
3697
|
+
@private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
|
|
3635
3698
|
@resolved_compilation_result = args[:resolved_compilation_result] if args.key?(:resolved_compilation_result)
|
|
3636
3699
|
@state = args[:state] if args.key?(:state)
|
|
3637
3700
|
@workflow_config = args[:workflow_config] if args.key?(:workflow_config)
|
|
@@ -3738,6 +3801,11 @@ module Google
|
|
|
3738
3801
|
# @return [String]
|
|
3739
3802
|
attr_accessor :name
|
|
3740
3803
|
|
|
3804
|
+
# Metadata used to identify if a resource is user scoped.
|
|
3805
|
+
# Corresponds to the JSON property `privateResourceMetadata`
|
|
3806
|
+
# @return [Google::Apis::DataformV1::PrivateResourceMetadata]
|
|
3807
|
+
attr_accessor :private_resource_metadata
|
|
3808
|
+
|
|
3741
3809
|
def initialize(**args)
|
|
3742
3810
|
update!(**args)
|
|
3743
3811
|
end
|
|
@@ -3748,6 +3816,7 @@ module Google
|
|
|
3748
3816
|
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
|
3749
3817
|
@internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
|
|
3750
3818
|
@name = args[:name] if args.key?(:name)
|
|
3819
|
+
@private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
|
|
3751
3820
|
end
|
|
3752
3821
|
end
|
|
3753
3822
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.4.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 = "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::DataformV1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1::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::DataformV1::Target, decorator: Google::Apis::DataformV1::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::DataformV1::IncrementalTableConfig, decorator: Google::Apis::DataformV1::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::DataformV1::Interval, decorator: Google::Apis::DataformV1::Interval::Representation
|
|
1746
1765
|
|
|
1747
1766
|
property :name, as: 'name'
|
|
1767
|
+
property :private_resource_metadata, as: 'privateResourceMetadata', class: Google::Apis::DataformV1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1::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::DataformV1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1::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
|
|
439
|
-
# unreachable
|
|
440
|
-
#
|
|
441
|
-
# by default
|
|
442
|
-
# explicitly documented otherwise in service or product specific
|
|
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_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1/v0.4.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:
|