google-apis-dataform_v1beta1 0.58.0 → 0.60.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/dataform_v1beta1/classes.rb +151 -7
- data/lib/google/apis/dataform_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/dataform_v1beta1/representations.rb +67 -0
- data/lib/google/apis/dataform_v1beta1/service.rb +10 -18
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 329fde0a2c79c2a1b84dc67b1b7350f43181ad759d83e992412435a15123e1ac
|
|
4
|
+
data.tar.gz: a4d7c677893943628c3ff06ba3bb2b911f9956d7c2d123af2ef38cf4d545988d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99bd1d3fd672d5ca3a9b413479f6a604a415f5749b2eda8475a3e06e8e47ad3bb5e28232c13a582469167b1d7106fa261f379e756f4c41d1edd0acf778171c2c
|
|
7
|
+
data.tar.gz: e6bbf816dcd92011523d31052f4775ac11f9e560588513634707918f32cc7be0aafa5134af78f95692b111bbfa3a57e7b10f81098b77b38c72804672870b4fd3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-dataform_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.60.0 (2026-06-28)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260621
|
|
6
|
+
|
|
7
|
+
### v0.59.0 (2026-06-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260607
|
|
10
|
+
* Regenerated using generator version 0.19.0
|
|
11
|
+
|
|
3
12
|
### v0.58.0 (2026-05-24)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20260515
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/dataform/docs) may provide
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -1568,7 +1568,8 @@ module Google
|
|
|
1568
1568
|
# @return [String]
|
|
1569
1569
|
attr_accessor :authentication_token_secret_version
|
|
1570
1570
|
|
|
1571
|
-
# Optional. The Git remote's default branch name. If not set `main` will be
|
|
1571
|
+
# Optional. The Git remote's default branch name. If not set, `main` will be
|
|
1572
|
+
# used.
|
|
1572
1573
|
# Corresponds to the JSON property `defaultBranch`
|
|
1573
1574
|
# @return [String]
|
|
1574
1575
|
attr_accessor :default_branch
|
|
@@ -1579,6 +1580,13 @@ module Google
|
|
|
1579
1580
|
# @return [String]
|
|
1580
1581
|
attr_accessor :effective_default_branch
|
|
1581
1582
|
|
|
1583
|
+
# Optional. Resource name for the `GitRepositoryLink` used for machine
|
|
1584
|
+
# credentials. Must be in the format `projects/*/locations/*/connections/*/
|
|
1585
|
+
# gitRepositoryLinks/*`
|
|
1586
|
+
# Corresponds to the JSON property `gitRepositoryLink`
|
|
1587
|
+
# @return [String]
|
|
1588
|
+
attr_accessor :git_repository_link
|
|
1589
|
+
|
|
1582
1590
|
# Configures fields for performing SSH authentication.
|
|
1583
1591
|
# Corresponds to the JSON property `sshAuthenticationConfig`
|
|
1584
1592
|
# @return [Google::Apis::DataformV1beta1::SshAuthenticationConfig]
|
|
@@ -1605,6 +1613,7 @@ module Google
|
|
|
1605
1613
|
@authentication_token_secret_version = args[:authentication_token_secret_version] if args.key?(:authentication_token_secret_version)
|
|
1606
1614
|
@default_branch = args[:default_branch] if args.key?(:default_branch)
|
|
1607
1615
|
@effective_default_branch = args[:effective_default_branch] if args.key?(:effective_default_branch)
|
|
1616
|
+
@git_repository_link = args[:git_repository_link] if args.key?(:git_repository_link)
|
|
1608
1617
|
@ssh_authentication_config = args[:ssh_authentication_config] if args.key?(:ssh_authentication_config)
|
|
1609
1618
|
@token_status = args[:token_status] if args.key?(:token_status)
|
|
1610
1619
|
@url = args[:url] if args.key?(:url)
|
|
@@ -1850,8 +1859,7 @@ module Google
|
|
|
1850
1859
|
# @return [String]
|
|
1851
1860
|
attr_accessor :next_page_token
|
|
1852
1861
|
|
|
1853
|
-
# Locations which could not be reached.
|
|
1854
|
-
# cloud/dataform/v2main/data_pipelines.proto:ListCompilationResultsResponse)
|
|
1862
|
+
# Locations which could not be reached.
|
|
1855
1863
|
# Corresponds to the JSON property `unreachable`
|
|
1856
1864
|
# @return [Array<String>]
|
|
1857
1865
|
attr_accessor :unreachable
|
|
@@ -1942,8 +1950,7 @@ module Google
|
|
|
1942
1950
|
# @return [Array<Google::Apis::DataformV1beta1::ReleaseConfig>]
|
|
1943
1951
|
attr_accessor :release_configs
|
|
1944
1952
|
|
|
1945
|
-
# Locations which could not be reached.
|
|
1946
|
-
# cloud/dataform/v2main/data_pipelines.proto:ListReleaseConfigsResponse)
|
|
1953
|
+
# Locations which could not be reached.
|
|
1947
1954
|
# Corresponds to the JSON property `unreachable`
|
|
1948
1955
|
# @return [Array<String>]
|
|
1949
1956
|
attr_accessor :unreachable
|
|
@@ -3230,8 +3237,7 @@ module Google
|
|
|
3230
3237
|
|
|
3231
3238
|
# Output only. All the metadata information that is used internally to serve the
|
|
3232
3239
|
# resource. For example: timestamps, flags, status fields, etc. The format of
|
|
3233
|
-
# this field is a JSON string.
|
|
3234
|
-
# dataform/v2main/data_pipelines.proto:ReleaseConfig)
|
|
3240
|
+
# this field is a JSON string.
|
|
3235
3241
|
# Corresponds to the JSON property `internalMetadata`
|
|
3236
3242
|
# @return [String]
|
|
3237
3243
|
attr_accessor :internal_metadata
|
|
@@ -3849,6 +3855,34 @@ module Google
|
|
|
3849
3855
|
end
|
|
3850
3856
|
end
|
|
3851
3857
|
|
|
3858
|
+
# Represents a table update trigger configuration.
|
|
3859
|
+
class TableUpdateTrigger
|
|
3860
|
+
include Google::Apis::Core::Hashable
|
|
3861
|
+
|
|
3862
|
+
# Represents an action identifier. If the action writes output, the output will
|
|
3863
|
+
# be written to the referenced database object.
|
|
3864
|
+
# Corresponds to the JSON property `table`
|
|
3865
|
+
# @return [Google::Apis::DataformV1beta1::Target]
|
|
3866
|
+
attr_accessor :table
|
|
3867
|
+
|
|
3868
|
+
# Output only. The modification time of this table that resulted in an
|
|
3869
|
+
# invocation of the workflow. This would be updated by the triggering service
|
|
3870
|
+
# after a successful workflow invocation.
|
|
3871
|
+
# Corresponds to the JSON property `triggerUpdateTime`
|
|
3872
|
+
# @return [String]
|
|
3873
|
+
attr_accessor :trigger_update_time
|
|
3874
|
+
|
|
3875
|
+
def initialize(**args)
|
|
3876
|
+
update!(**args)
|
|
3877
|
+
end
|
|
3878
|
+
|
|
3879
|
+
# Update properties of this object
|
|
3880
|
+
def update!(**args)
|
|
3881
|
+
@table = args[:table] if args.key?(:table)
|
|
3882
|
+
@trigger_update_time = args[:trigger_update_time] if args.key?(:trigger_update_time)
|
|
3883
|
+
end
|
|
3884
|
+
end
|
|
3885
|
+
|
|
3852
3886
|
# Represents an action identifier. If the action writes output, the output will
|
|
3853
3887
|
# be written to the referenced database object.
|
|
3854
3888
|
class Target
|
|
@@ -4021,6 +4055,36 @@ module Google
|
|
|
4021
4055
|
end
|
|
4022
4056
|
end
|
|
4023
4057
|
|
|
4058
|
+
# A record of an attempt to evaluate trigger conditions.
|
|
4059
|
+
class TriggerEvaluationRecord
|
|
4060
|
+
include Google::Apis::Core::Hashable
|
|
4061
|
+
|
|
4062
|
+
# Output only. The timestamp of this trigger evaluation attempt.
|
|
4063
|
+
# Corresponds to the JSON property `evaluationTime`
|
|
4064
|
+
# @return [String]
|
|
4065
|
+
attr_accessor :evaluation_time
|
|
4066
|
+
|
|
4067
|
+
# The `Status` type defines a logical error model that is suitable for different
|
|
4068
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
4069
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
|
4070
|
+
# data: error code, error message, and error details. You can find out more
|
|
4071
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
|
4072
|
+
# //cloud.google.com/apis/design/errors).
|
|
4073
|
+
# Corresponds to the JSON property `status`
|
|
4074
|
+
# @return [Google::Apis::DataformV1beta1::Status]
|
|
4075
|
+
attr_accessor :status
|
|
4076
|
+
|
|
4077
|
+
def initialize(**args)
|
|
4078
|
+
update!(**args)
|
|
4079
|
+
end
|
|
4080
|
+
|
|
4081
|
+
# Update properties of this object
|
|
4082
|
+
def update!(**args)
|
|
4083
|
+
@evaluation_time = args[:evaluation_time] if args.key?(:evaluation_time)
|
|
4084
|
+
@status = args[:status] if args.key?(:status)
|
|
4085
|
+
end
|
|
4086
|
+
end
|
|
4087
|
+
|
|
4024
4088
|
# Represents the Git state of a file with uncommitted changes.
|
|
4025
4089
|
class UncommittedFileChange
|
|
4026
4090
|
include Google::Apis::Core::Hashable
|
|
@@ -4111,6 +4175,11 @@ module Google
|
|
|
4111
4175
|
# @return [String]
|
|
4112
4176
|
attr_accessor :update_time
|
|
4113
4177
|
|
|
4178
|
+
# Represents a trigger configuration for a workflow.
|
|
4179
|
+
# Corresponds to the JSON property `workflowTriggerConfig`
|
|
4180
|
+
# @return [Google::Apis::DataformV1beta1::WorkflowTriggerConfig]
|
|
4181
|
+
attr_accessor :workflow_trigger_config
|
|
4182
|
+
|
|
4114
4183
|
def initialize(**args)
|
|
4115
4184
|
update!(**args)
|
|
4116
4185
|
end
|
|
@@ -4127,6 +4196,7 @@ module Google
|
|
|
4127
4196
|
@release_config = args[:release_config] if args.key?(:release_config)
|
|
4128
4197
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
|
4129
4198
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
4199
|
+
@workflow_trigger_config = args[:workflow_trigger_config] if args.key?(:workflow_trigger_config)
|
|
4130
4200
|
end
|
|
4131
4201
|
end
|
|
4132
4202
|
|
|
@@ -4287,6 +4357,80 @@ module Google
|
|
|
4287
4357
|
end
|
|
4288
4358
|
end
|
|
4289
4359
|
|
|
4360
|
+
# The trigger definition to invoke a workflow.
|
|
4361
|
+
class WorkflowTrigger
|
|
4362
|
+
include Google::Apis::Core::Hashable
|
|
4363
|
+
|
|
4364
|
+
# Represents a table update trigger configuration.
|
|
4365
|
+
# Corresponds to the JSON property `tableUpdateTrigger`
|
|
4366
|
+
# @return [Google::Apis::DataformV1beta1::TableUpdateTrigger]
|
|
4367
|
+
attr_accessor :table_update_trigger
|
|
4368
|
+
|
|
4369
|
+
def initialize(**args)
|
|
4370
|
+
update!(**args)
|
|
4371
|
+
end
|
|
4372
|
+
|
|
4373
|
+
# Update properties of this object
|
|
4374
|
+
def update!(**args)
|
|
4375
|
+
@table_update_trigger = args[:table_update_trigger] if args.key?(:table_update_trigger)
|
|
4376
|
+
end
|
|
4377
|
+
end
|
|
4378
|
+
|
|
4379
|
+
# Represents a trigger configuration for a workflow.
|
|
4380
|
+
class WorkflowTriggerConfig
|
|
4381
|
+
include Google::Apis::Core::Hashable
|
|
4382
|
+
|
|
4383
|
+
# Optional. The condition to use when triggering the workflow.
|
|
4384
|
+
# Corresponds to the JSON property `condition`
|
|
4385
|
+
# @return [String]
|
|
4386
|
+
attr_accessor :condition
|
|
4387
|
+
|
|
4388
|
+
# Output only. The timestamp of the last successful trigger evaluation.
|
|
4389
|
+
# Corresponds to the JSON property `lastSuccessfulEvaluationTime`
|
|
4390
|
+
# @return [String]
|
|
4391
|
+
attr_accessor :last_successful_evaluation_time
|
|
4392
|
+
|
|
4393
|
+
# Optional. The effective maximum wait time duration for the trigger condition
|
|
4394
|
+
# to be met. If not specified, the workflow won't be triggered until conditions
|
|
4395
|
+
# are met.
|
|
4396
|
+
# Corresponds to the JSON property `maxWaitDuration`
|
|
4397
|
+
# @return [String]
|
|
4398
|
+
attr_accessor :max_wait_duration
|
|
4399
|
+
|
|
4400
|
+
# Optional. Minimum duration between two consecutive executions. If not
|
|
4401
|
+
# specified, the workflow will be executed every time trigger conditions are met
|
|
4402
|
+
# and no ongoing workflow execution.
|
|
4403
|
+
# Corresponds to the JSON property `minExecutionDuration`
|
|
4404
|
+
# @return [String]
|
|
4405
|
+
attr_accessor :min_execution_duration
|
|
4406
|
+
|
|
4407
|
+
# Output only. Records of the 10 most recent trigger evaluations, ordered in
|
|
4408
|
+
# descending order of `evaluation_time`. Updated whenever the service evaluates
|
|
4409
|
+
# the trigger conditions (via polling or upon receiving a push event).
|
|
4410
|
+
# Corresponds to the JSON property `recentTriggerEvaluationRecords`
|
|
4411
|
+
# @return [Array<Google::Apis::DataformV1beta1::TriggerEvaluationRecord>]
|
|
4412
|
+
attr_accessor :recent_trigger_evaluation_records
|
|
4413
|
+
|
|
4414
|
+
# Required. The trigger definitions to invoke a workflow.
|
|
4415
|
+
# Corresponds to the JSON property `workflowTriggers`
|
|
4416
|
+
# @return [Array<Google::Apis::DataformV1beta1::WorkflowTrigger>]
|
|
4417
|
+
attr_accessor :workflow_triggers
|
|
4418
|
+
|
|
4419
|
+
def initialize(**args)
|
|
4420
|
+
update!(**args)
|
|
4421
|
+
end
|
|
4422
|
+
|
|
4423
|
+
# Update properties of this object
|
|
4424
|
+
def update!(**args)
|
|
4425
|
+
@condition = args[:condition] if args.key?(:condition)
|
|
4426
|
+
@last_successful_evaluation_time = args[:last_successful_evaluation_time] if args.key?(:last_successful_evaluation_time)
|
|
4427
|
+
@max_wait_duration = args[:max_wait_duration] if args.key?(:max_wait_duration)
|
|
4428
|
+
@min_execution_duration = args[:min_execution_duration] if args.key?(:min_execution_duration)
|
|
4429
|
+
@recent_trigger_evaluation_records = args[:recent_trigger_evaluation_records] if args.key?(:recent_trigger_evaluation_records)
|
|
4430
|
+
@workflow_triggers = args[:workflow_triggers] if args.key?(:workflow_triggers)
|
|
4431
|
+
end
|
|
4432
|
+
end
|
|
4433
|
+
|
|
4290
4434
|
# Represents a Dataform Git workspace.
|
|
4291
4435
|
class Workspace
|
|
4292
4436
|
include Google::Apis::Core::Hashable
|
|
@@ -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.60.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260621"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -724,6 +724,12 @@ module Google
|
|
|
724
724
|
include Google::Apis::Core::JsonObjectSupport
|
|
725
725
|
end
|
|
726
726
|
|
|
727
|
+
class TableUpdateTrigger
|
|
728
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
729
|
+
|
|
730
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
731
|
+
end
|
|
732
|
+
|
|
727
733
|
class Target
|
|
728
734
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
729
735
|
|
|
@@ -760,6 +766,12 @@ module Google
|
|
|
760
766
|
include Google::Apis::Core::JsonObjectSupport
|
|
761
767
|
end
|
|
762
768
|
|
|
769
|
+
class TriggerEvaluationRecord
|
|
770
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
771
|
+
|
|
772
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
773
|
+
end
|
|
774
|
+
|
|
763
775
|
class UncommittedFileChange
|
|
764
776
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
765
777
|
|
|
@@ -784,6 +796,18 @@ module Google
|
|
|
784
796
|
include Google::Apis::Core::JsonObjectSupport
|
|
785
797
|
end
|
|
786
798
|
|
|
799
|
+
class WorkflowTrigger
|
|
800
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
801
|
+
|
|
802
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
803
|
+
end
|
|
804
|
+
|
|
805
|
+
class WorkflowTriggerConfig
|
|
806
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
807
|
+
|
|
808
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
809
|
+
end
|
|
810
|
+
|
|
787
811
|
class Workspace
|
|
788
812
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
789
813
|
|
|
@@ -1275,6 +1299,7 @@ module Google
|
|
|
1275
1299
|
property :authentication_token_secret_version, as: 'authenticationTokenSecretVersion'
|
|
1276
1300
|
property :default_branch, as: 'defaultBranch'
|
|
1277
1301
|
property :effective_default_branch, as: 'effectiveDefaultBranch'
|
|
1302
|
+
property :git_repository_link, as: 'gitRepositoryLink'
|
|
1278
1303
|
property :ssh_authentication_config, as: 'sshAuthenticationConfig', class: Google::Apis::DataformV1beta1::SshAuthenticationConfig, decorator: Google::Apis::DataformV1beta1::SshAuthenticationConfig::Representation
|
|
1279
1304
|
|
|
1280
1305
|
property :token_status, as: 'tokenStatus'
|
|
@@ -1917,6 +1942,15 @@ module Google
|
|
|
1917
1942
|
end
|
|
1918
1943
|
end
|
|
1919
1944
|
|
|
1945
|
+
class TableUpdateTrigger
|
|
1946
|
+
# @private
|
|
1947
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1948
|
+
property :table, as: 'table', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
|
|
1949
|
+
|
|
1950
|
+
property :trigger_update_time, as: 'triggerUpdateTime'
|
|
1951
|
+
end
|
|
1952
|
+
end
|
|
1953
|
+
|
|
1920
1954
|
class Target
|
|
1921
1955
|
# @private
|
|
1922
1956
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1970,6 +2004,15 @@ module Google
|
|
|
1970
2004
|
end
|
|
1971
2005
|
end
|
|
1972
2006
|
|
|
2007
|
+
class TriggerEvaluationRecord
|
|
2008
|
+
# @private
|
|
2009
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2010
|
+
property :evaluation_time, as: 'evaluationTime'
|
|
2011
|
+
property :status, as: 'status', class: Google::Apis::DataformV1beta1::Status, decorator: Google::Apis::DataformV1beta1::Status::Representation
|
|
2012
|
+
|
|
2013
|
+
end
|
|
2014
|
+
end
|
|
2015
|
+
|
|
1973
2016
|
class UncommittedFileChange
|
|
1974
2017
|
# @private
|
|
1975
2018
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1993,6 +2036,8 @@ module Google
|
|
|
1993
2036
|
property :release_config, as: 'releaseConfig'
|
|
1994
2037
|
property :time_zone, as: 'timeZone'
|
|
1995
2038
|
property :update_time, as: 'updateTime'
|
|
2039
|
+
property :workflow_trigger_config, as: 'workflowTriggerConfig', class: Google::Apis::DataformV1beta1::WorkflowTriggerConfig, decorator: Google::Apis::DataformV1beta1::WorkflowTriggerConfig::Representation
|
|
2040
|
+
|
|
1996
2041
|
end
|
|
1997
2042
|
end
|
|
1998
2043
|
|
|
@@ -2037,6 +2082,28 @@ module Google
|
|
|
2037
2082
|
end
|
|
2038
2083
|
end
|
|
2039
2084
|
|
|
2085
|
+
class WorkflowTrigger
|
|
2086
|
+
# @private
|
|
2087
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2088
|
+
property :table_update_trigger, as: 'tableUpdateTrigger', class: Google::Apis::DataformV1beta1::TableUpdateTrigger, decorator: Google::Apis::DataformV1beta1::TableUpdateTrigger::Representation
|
|
2089
|
+
|
|
2090
|
+
end
|
|
2091
|
+
end
|
|
2092
|
+
|
|
2093
|
+
class WorkflowTriggerConfig
|
|
2094
|
+
# @private
|
|
2095
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2096
|
+
property :condition, as: 'condition'
|
|
2097
|
+
property :last_successful_evaluation_time, as: 'lastSuccessfulEvaluationTime'
|
|
2098
|
+
property :max_wait_duration, as: 'maxWaitDuration'
|
|
2099
|
+
property :min_execution_duration, as: 'minExecutionDuration'
|
|
2100
|
+
collection :recent_trigger_evaluation_records, as: 'recentTriggerEvaluationRecords', class: Google::Apis::DataformV1beta1::TriggerEvaluationRecord, decorator: Google::Apis::DataformV1beta1::TriggerEvaluationRecord::Representation
|
|
2101
|
+
|
|
2102
|
+
collection :workflow_triggers, as: 'workflowTriggers', class: Google::Apis::DataformV1beta1::WorkflowTrigger, decorator: Google::Apis::DataformV1beta1::WorkflowTrigger::Representation
|
|
2103
|
+
|
|
2104
|
+
end
|
|
2105
|
+
end
|
|
2106
|
+
|
|
2040
2107
|
class Workspace
|
|
2041
2108
|
# @private
|
|
2042
2109
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -933,7 +933,7 @@ module Google
|
|
|
933
933
|
execute_or_queue_command(command, &block)
|
|
934
934
|
end
|
|
935
935
|
|
|
936
|
-
# Deletes a single
|
|
936
|
+
# Deletes a single repository asynchronously.
|
|
937
937
|
# @param [String] name
|
|
938
938
|
# Required. The repository's name.
|
|
939
939
|
# @param [Google::Apis::DataformV1beta1::DeleteRepositoryLongRunningRequest] delete_repository_long_running_request_object
|
|
@@ -1438,8 +1438,7 @@ module Google
|
|
|
1438
1438
|
|
|
1439
1439
|
# Fetches a single CompilationResult.
|
|
1440
1440
|
# @param [String] name
|
|
1441
|
-
# Required. The compilation result's name.
|
|
1442
|
-
# google/cloud/dataform/v2main/data_pipelines.proto:GetCompilationResultRequest)
|
|
1441
|
+
# Required. The compilation result's name.
|
|
1443
1442
|
# @param [String] fields
|
|
1444
1443
|
# Selector specifying which fields to include in a partial response.
|
|
1445
1444
|
# @param [String] quota_user
|
|
@@ -1472,8 +1471,7 @@ module Google
|
|
|
1472
1471
|
# Required. The repository in which to list compilation results. Must be in the
|
|
1473
1472
|
# format `projects/*/locations/*/repositories/*`.
|
|
1474
1473
|
# @param [String] filter
|
|
1475
|
-
# Optional. Filter for the returned list.
|
|
1476
|
-
# cloud/dataform/v2main/data_pipelines.proto:ListCompilationResultsRequest)
|
|
1474
|
+
# Optional. Filter for the returned list.
|
|
1477
1475
|
# @param [String] order_by
|
|
1478
1476
|
# Optional. This field only supports ordering by `name` and `create_time`. If
|
|
1479
1477
|
# unspecified, the server will choose the ordering. If specified, the default
|
|
@@ -1570,9 +1568,7 @@ module Google
|
|
|
1570
1568
|
# @param [Google::Apis::DataformV1beta1::ReleaseConfig] release_config_object
|
|
1571
1569
|
# @param [String] release_config_id
|
|
1572
1570
|
# Required. The ID to use for the release config, which will become the final
|
|
1573
|
-
# component of the release config's resource name.
|
|
1574
|
-
# google3/google/cloud/dataform/v2main/data_pipelines.proto:
|
|
1575
|
-
# CreateReleaseConfigRequest)
|
|
1571
|
+
# component of the release config's resource name.
|
|
1576
1572
|
# @param [String] fields
|
|
1577
1573
|
# Selector specifying which fields to include in a partial response.
|
|
1578
1574
|
# @param [String] quota_user
|
|
@@ -1605,8 +1601,7 @@ module Google
|
|
|
1605
1601
|
|
|
1606
1602
|
# Deletes a single ReleaseConfig.
|
|
1607
1603
|
# @param [String] name
|
|
1608
|
-
# Required. The release config's name.
|
|
1609
|
-
# cloud/dataform/v2main/data_pipelines.proto:DeleteReleaseConfigRequest)
|
|
1604
|
+
# Required. The release config's name.
|
|
1610
1605
|
# @param [String] fields
|
|
1611
1606
|
# Selector specifying which fields to include in a partial response.
|
|
1612
1607
|
# @param [String] quota_user
|
|
@@ -1636,8 +1631,7 @@ module Google
|
|
|
1636
1631
|
|
|
1637
1632
|
# Fetches a single ReleaseConfig.
|
|
1638
1633
|
# @param [String] name
|
|
1639
|
-
# Required. The release config's name.
|
|
1640
|
-
# cloud/dataform/v2main/data_pipelines.proto:GetReleaseConfigRequest)
|
|
1634
|
+
# Required. The release config's name.
|
|
1641
1635
|
# @param [String] fields
|
|
1642
1636
|
# Selector specifying which fields to include in a partial response.
|
|
1643
1637
|
# @param [String] quota_user
|
|
@@ -1677,9 +1671,7 @@ module Google
|
|
|
1677
1671
|
# Optional. Page token received from a previous `ListReleaseConfigs` call.
|
|
1678
1672
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
|
1679
1673
|
# parameters provided to `ListReleaseConfigs`, with the exception of `page_size`,
|
|
1680
|
-
# must match the call that provided the page token.
|
|
1681
|
-
# google3/google/cloud/dataform/v2main/data_pipelines.proto:
|
|
1682
|
-
# ListReleaseConfigsRequest)
|
|
1674
|
+
# must match the call that provided the page token.
|
|
1683
1675
|
# @param [String] fields
|
|
1684
1676
|
# Selector specifying which fields to include in a partial response.
|
|
1685
1677
|
# @param [String] quota_user
|
|
@@ -3295,9 +3287,9 @@ module Google
|
|
|
3295
3287
|
# display_name` (default), `create_time`, `last_modified_time`. Examples: * `
|
|
3296
3288
|
# orderBy="display_name"` * `orderBy="display_name desc"`
|
|
3297
3289
|
# @param [Fixnum] page_size
|
|
3298
|
-
# Optional. Maximum number of TeamFolders to return. The server may return
|
|
3299
|
-
# items than requested. If unspecified, the server will pick a default of
|
|
3300
|
-
# page_size = 50.
|
|
3290
|
+
# Optional. Maximum number of `TeamFolders` to return. The server may return
|
|
3291
|
+
# fewer items than requested. If unspecified, the server will pick a default of `
|
|
3292
|
+
# page_size` = 50.
|
|
3301
3293
|
# @param [String] page_token
|
|
3302
3294
|
# Optional. Page token received from a previous `SearchTeamFolders` call.
|
|
3303
3295
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
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.60.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.60.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:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|