google-apis-dataform_v1beta1 0.41.0 → 0.42.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: 6eb25c4fdf3957ffa8dd86e764270bf8fabe682d08f55f48bb244c0adc8827f5
4
- data.tar.gz: 1e2057db8812b17fa0f28d7c7640a89bb649d9e80617ca0211decabf7da6f8fe
3
+ metadata.gz: b5d45710c8278774e7495c4cb9952306d5fdca1dd135a7ca3aa6562112c9b50a
4
+ data.tar.gz: 5ff3a2a7d2428f6425543bc41ff7c0054a1034921f7f8f1834d9bf438a1504c4
5
5
  SHA512:
6
- metadata.gz: 414bd780f8e95c0633149faa6a8a8d3bb4e60e82b2186ff0b2fe8826c83bd328c0591fa374fad697859a54ff8aaf423e6f2dd583fa08a0a29f6b5912052f0271
7
- data.tar.gz: 6468071b14fc2b7c94ac5ada459fa1fbffc8b4b8d1bb41402eb5ea533f311d509627b87cf83d8f782de942d5b93f185c9558aad5ae6f801f1e9e26b3a0ac0d72
6
+ metadata.gz: 5fa55f8e2f356d93df0720e1775c73249ad3e8b8c1f293bd89d69c3d657ce5a5f31194b5df2628b6253734c3460351ecc7baf9bfa932f32e4b9cf1b4e8f6caec
7
+ data.tar.gz: 2cb434524efc938082173eb8f8ab4f55790cd74e3f0a421d359811183204f3db4000ce2c306721d8c6f2c746d9ddce42498cea702dd5dc3d9983f109d6bccbe7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataform_v1beta1
2
2
 
3
+ ### v0.42.0 (2025-04-27)
4
+
5
+ * Regenerated from discovery document revision 20250420
6
+
3
7
  ### v0.41.0 (2025-03-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20250323
@@ -22,6 +22,133 @@ module Google
22
22
  module Apis
23
23
  module DataformV1beta1
24
24
 
25
+ # Error table information, used to write error data into a BigQuery table.
26
+ class ActionErrorTable
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Error table partition expiration in days. Only positive values are allowed.
30
+ # Corresponds to the JSON property `retentionDays`
31
+ # @return [Fixnum]
32
+ attr_accessor :retention_days
33
+
34
+ # Represents an action identifier. If the action writes output, the output will
35
+ # be written to the referenced database object.
36
+ # Corresponds to the JSON property `target`
37
+ # @return [Google::Apis::DataformV1beta1::Target]
38
+ attr_accessor :target
39
+
40
+ def initialize(**args)
41
+ update!(**args)
42
+ end
43
+
44
+ # Update properties of this object
45
+ def update!(**args)
46
+ @retention_days = args[:retention_days] if args.key?(:retention_days)
47
+ @target = args[:target] if args.key?(:target)
48
+ end
49
+ end
50
+
51
+ # Load definition for incremental load modes
52
+ class ActionIncrementalLoadMode
53
+ include Google::Apis::Core::Hashable
54
+
55
+ # Column name for incremental load modes
56
+ # Corresponds to the JSON property `column`
57
+ # @return [String]
58
+ attr_accessor :column
59
+
60
+ def initialize(**args)
61
+ update!(**args)
62
+ end
63
+
64
+ # Update properties of this object
65
+ def update!(**args)
66
+ @column = args[:column] if args.key?(:column)
67
+ end
68
+ end
69
+
70
+ # Simplified load configuration for actions
71
+ class ActionLoadConfig
72
+ include Google::Apis::Core::Hashable
73
+
74
+ # Simple load definition
75
+ # Corresponds to the JSON property `append`
76
+ # @return [Google::Apis::DataformV1beta1::ActionSimpleLoadMode]
77
+ attr_accessor :append
78
+
79
+ # Load definition for incremental load modes
80
+ # Corresponds to the JSON property `maximum`
81
+ # @return [Google::Apis::DataformV1beta1::ActionIncrementalLoadMode]
82
+ attr_accessor :maximum
83
+
84
+ # Simple load definition
85
+ # Corresponds to the JSON property `replace`
86
+ # @return [Google::Apis::DataformV1beta1::ActionSimpleLoadMode]
87
+ attr_accessor :replace
88
+
89
+ # Load definition for incremental load modes
90
+ # Corresponds to the JSON property `unique`
91
+ # @return [Google::Apis::DataformV1beta1::ActionIncrementalLoadMode]
92
+ attr_accessor :unique
93
+
94
+ def initialize(**args)
95
+ update!(**args)
96
+ end
97
+
98
+ # Update properties of this object
99
+ def update!(**args)
100
+ @append = args[:append] if args.key?(:append)
101
+ @maximum = args[:maximum] if args.key?(:maximum)
102
+ @replace = args[:replace] if args.key?(:replace)
103
+ @unique = args[:unique] if args.key?(:unique)
104
+ end
105
+ end
106
+
107
+ # Simple load definition
108
+ class ActionSimpleLoadMode
109
+ include Google::Apis::Core::Hashable
110
+
111
+ def initialize(**args)
112
+ update!(**args)
113
+ end
114
+
115
+ # Update properties of this object
116
+ def update!(**args)
117
+ end
118
+ end
119
+
120
+ # Definition of a SQL Data Preparation
121
+ class ActionSqlDefinition
122
+ include Google::Apis::Core::Hashable
123
+
124
+ # Error table information, used to write error data into a BigQuery table.
125
+ # Corresponds to the JSON property `errorTable`
126
+ # @return [Google::Apis::DataformV1beta1::ActionErrorTable]
127
+ attr_accessor :error_table
128
+
129
+ # Simplified load configuration for actions
130
+ # Corresponds to the JSON property `loadConfig`
131
+ # @return [Google::Apis::DataformV1beta1::ActionLoadConfig]
132
+ attr_accessor :load_config
133
+
134
+ # The SQL query representing the data preparation steps. Formatted as a Pipe SQL
135
+ # query statement.
136
+ # Corresponds to the JSON property `query`
137
+ # @return [String]
138
+ attr_accessor :query
139
+
140
+ def initialize(**args)
141
+ update!(**args)
142
+ end
143
+
144
+ # Update properties of this object
145
+ def update!(**args)
146
+ @error_table = args[:error_table] if args.key?(:error_table)
147
+ @load_config = args[:load_config] if args.key?(:load_config)
148
+ @query = args[:query] if args.key?(:query)
149
+ end
150
+ end
151
+
25
152
  # Represents an assertion upon a SQL query which is required return zero rows.
26
153
  class Assertion
27
154
  include Google::Apis::Core::Hashable
@@ -236,6 +363,11 @@ module Google
236
363
  # @return [String]
237
364
  attr_accessor :assertion_schema
238
365
 
366
+ # Optional. The prefix to prepend to built-in assertion names.
367
+ # Corresponds to the JSON property `builtinAssertionNamePrefix`
368
+ # @return [String]
369
+ attr_accessor :builtin_assertion_name_prefix
370
+
239
371
  # Optional. The suffix that should be appended to all database (Google Cloud
240
372
  # project ID) names.
241
373
  # Corresponds to the JSON property `databaseSuffix`
@@ -288,6 +420,7 @@ module Google
288
420
  # Update properties of this object
289
421
  def update!(**args)
290
422
  @assertion_schema = args[:assertion_schema] if args.key?(:assertion_schema)
423
+ @builtin_assertion_name_prefix = args[:builtin_assertion_name_prefix] if args.key?(:builtin_assertion_name_prefix)
291
424
  @database_suffix = args[:database_suffix] if args.key?(:database_suffix)
292
425
  @default_database = args[:default_database] if args.key?(:default_database)
293
426
  @default_location = args[:default_location] if args.key?(:default_location)
@@ -656,6 +789,11 @@ module Google
656
789
  # @return [Google::Apis::DataformV1beta1::Target]
657
790
  attr_accessor :canonical_target
658
791
 
792
+ # Defines a compiled Data Preparation entity
793
+ # Corresponds to the JSON property `dataPreparation`
794
+ # @return [Google::Apis::DataformV1beta1::DataPreparation]
795
+ attr_accessor :data_preparation
796
+
659
797
  # Represents a relation which is not managed by Dataform but which may be
660
798
  # referenced by Dataform actions.
661
799
  # Corresponds to the JSON property `declaration`
@@ -704,6 +842,7 @@ module Google
704
842
  def update!(**args)
705
843
  @assertion = args[:assertion] if args.key?(:assertion)
706
844
  @canonical_target = args[:canonical_target] if args.key?(:canonical_target)
845
+ @data_preparation = args[:data_preparation] if args.key?(:data_preparation)
707
846
  @declaration = args[:declaration] if args.key?(:declaration)
708
847
  @file_path = args[:file_path] if args.key?(:file_path)
709
848
  @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
@@ -778,6 +917,90 @@ module Google
778
917
  end
779
918
  end
780
919
 
920
+ # Defines a compiled Data Preparation entity
921
+ class DataPreparation
922
+ include Google::Apis::Core::Hashable
923
+
924
+ # Definition of a SQL Data Preparation
925
+ # Corresponds to the JSON property `contentsSql`
926
+ # @return [Google::Apis::DataformV1beta1::SqlDefinition]
927
+ attr_accessor :contents_sql
928
+
929
+ # The data preparation definition, stored as a YAML string.
930
+ # Corresponds to the JSON property `contentsYaml`
931
+ # @return [String]
932
+ attr_accessor :contents_yaml
933
+
934
+ # A list of actions that this action depends on.
935
+ # Corresponds to the JSON property `dependencyTargets`
936
+ # @return [Array<Google::Apis::DataformV1beta1::Target>]
937
+ attr_accessor :dependency_targets
938
+
939
+ # Whether this action is disabled (i.e. should not be run).
940
+ # Corresponds to the JSON property `disabled`
941
+ # @return [Boolean]
942
+ attr_accessor :disabled
943
+ alias_method :disabled?, :disabled
944
+
945
+ # Arbitrary, user-defined tags on this action.
946
+ # Corresponds to the JSON property `tags`
947
+ # @return [Array<String>]
948
+ attr_accessor :tags
949
+
950
+ def initialize(**args)
951
+ update!(**args)
952
+ end
953
+
954
+ # Update properties of this object
955
+ def update!(**args)
956
+ @contents_sql = args[:contents_sql] if args.key?(:contents_sql)
957
+ @contents_yaml = args[:contents_yaml] if args.key?(:contents_yaml)
958
+ @dependency_targets = args[:dependency_targets] if args.key?(:dependency_targets)
959
+ @disabled = args[:disabled] if args.key?(:disabled)
960
+ @tags = args[:tags] if args.key?(:tags)
961
+ end
962
+ end
963
+
964
+ # Represents a workflow action that will run a Data Preparation.
965
+ class DataPreparationAction
966
+ include Google::Apis::Core::Hashable
967
+
968
+ # Definition of a SQL Data Preparation
969
+ # Corresponds to the JSON property `contentsSql`
970
+ # @return [Google::Apis::DataformV1beta1::ActionSqlDefinition]
971
+ attr_accessor :contents_sql
972
+
973
+ # Output only. YAML representing the contents of the data preparation. Can be
974
+ # used to show the customer what the input was to their workflow.
975
+ # Corresponds to the JSON property `contentsYaml`
976
+ # @return [String]
977
+ attr_accessor :contents_yaml
978
+
979
+ # Output only. The generated BigQuery SQL script that will be executed. For
980
+ # reference only.
981
+ # Corresponds to the JSON property `generatedSql`
982
+ # @return [String]
983
+ attr_accessor :generated_sql
984
+
985
+ # Output only. The ID of the BigQuery job that executed the SQL in sql_script.
986
+ # Only set once the job has started to run.
987
+ # Corresponds to the JSON property `jobId`
988
+ # @return [String]
989
+ attr_accessor :job_id
990
+
991
+ def initialize(**args)
992
+ update!(**args)
993
+ end
994
+
995
+ # Update properties of this object
996
+ def update!(**args)
997
+ @contents_sql = args[:contents_sql] if args.key?(:contents_sql)
998
+ @contents_yaml = args[:contents_yaml] if args.key?(:contents_yaml)
999
+ @generated_sql = args[:generated_sql] if args.key?(:generated_sql)
1000
+ @job_id = args[:job_id] if args.key?(:job_id)
1001
+ end
1002
+ end
1003
+
781
1004
  # Represents a relation which is not managed by Dataform but which may be
782
1005
  # referenced by Dataform actions.
783
1006
  class Declaration
@@ -871,6 +1094,32 @@ module Google
871
1094
  end
872
1095
  end
873
1096
 
1097
+ # Error table information, used to write error data into a BigQuery table.
1098
+ class ErrorTable
1099
+ include Google::Apis::Core::Hashable
1100
+
1101
+ # Error table partition expiration in days. Only positive values are allowed.
1102
+ # Corresponds to the JSON property `retentionDays`
1103
+ # @return [Fixnum]
1104
+ attr_accessor :retention_days
1105
+
1106
+ # Represents an action identifier. If the action writes output, the output will
1107
+ # be written to the referenced database object.
1108
+ # Corresponds to the JSON property `target`
1109
+ # @return [Google::Apis::DataformV1beta1::Target]
1110
+ attr_accessor :target
1111
+
1112
+ def initialize(**args)
1113
+ update!(**args)
1114
+ end
1115
+
1116
+ # Update properties of this object
1117
+ def update!(**args)
1118
+ @retention_days = args[:retention_days] if args.key?(:retention_days)
1119
+ @target = args[:target] if args.key?(:target)
1120
+ end
1121
+ end
1122
+
874
1123
  # Represents a textual expression in the Common Expression Language (CEL) syntax.
875
1124
  # CEL is a C-like expression language. The syntax and semantics of CEL are
876
1125
  # documented at https://github.com/google/cel-spec. Example (Comparison): title:
@@ -1125,6 +1374,25 @@ module Google
1125
1374
  end
1126
1375
  end
1127
1376
 
1377
+ # Load definition for incremental load modes
1378
+ class IncrementalLoadMode
1379
+ include Google::Apis::Core::Hashable
1380
+
1381
+ # Column name for incremental load modes
1382
+ # Corresponds to the JSON property `column`
1383
+ # @return [String]
1384
+ attr_accessor :column
1385
+
1386
+ def initialize(**args)
1387
+ update!(**args)
1388
+ end
1389
+
1390
+ # Update properties of this object
1391
+ def update!(**args)
1392
+ @column = args[:column] if args.key?(:column)
1393
+ end
1394
+ end
1395
+
1128
1396
  # Contains settings for relations of type `INCREMENTAL_TABLE`.
1129
1397
  class IncrementalTableConfig
1130
1398
  include Google::Apis::Core::Hashable
@@ -1508,6 +1776,43 @@ module Google
1508
1776
  end
1509
1777
  end
1510
1778
 
1779
+ # Simplified load configuration for actions
1780
+ class LoadConfig
1781
+ include Google::Apis::Core::Hashable
1782
+
1783
+ # Simple load definition
1784
+ # Corresponds to the JSON property `append`
1785
+ # @return [Google::Apis::DataformV1beta1::SimpleLoadMode]
1786
+ attr_accessor :append
1787
+
1788
+ # Load definition for incremental load modes
1789
+ # Corresponds to the JSON property `maximum`
1790
+ # @return [Google::Apis::DataformV1beta1::IncrementalLoadMode]
1791
+ attr_accessor :maximum
1792
+
1793
+ # Simple load definition
1794
+ # Corresponds to the JSON property `replace`
1795
+ # @return [Google::Apis::DataformV1beta1::SimpleLoadMode]
1796
+ attr_accessor :replace
1797
+
1798
+ # Load definition for incremental load modes
1799
+ # Corresponds to the JSON property `unique`
1800
+ # @return [Google::Apis::DataformV1beta1::IncrementalLoadMode]
1801
+ attr_accessor :unique
1802
+
1803
+ def initialize(**args)
1804
+ update!(**args)
1805
+ end
1806
+
1807
+ # Update properties of this object
1808
+ def update!(**args)
1809
+ @append = args[:append] if args.key?(:append)
1810
+ @maximum = args[:maximum] if args.key?(:maximum)
1811
+ @replace = args[:replace] if args.key?(:replace)
1812
+ @unique = args[:unique] if args.key?(:unique)
1813
+ end
1814
+ end
1815
+
1511
1816
  # A resource that represents a Google Cloud location.
1512
1817
  class Location
1513
1818
  include Google::Apis::Core::Hashable
@@ -2769,6 +3074,51 @@ module Google
2769
3074
  end
2770
3075
  end
2771
3076
 
3077
+ # Simple load definition
3078
+ class SimpleLoadMode
3079
+ include Google::Apis::Core::Hashable
3080
+
3081
+ def initialize(**args)
3082
+ update!(**args)
3083
+ end
3084
+
3085
+ # Update properties of this object
3086
+ def update!(**args)
3087
+ end
3088
+ end
3089
+
3090
+ # Definition of a SQL Data Preparation
3091
+ class SqlDefinition
3092
+ include Google::Apis::Core::Hashable
3093
+
3094
+ # Error table information, used to write error data into a BigQuery table.
3095
+ # Corresponds to the JSON property `errorTable`
3096
+ # @return [Google::Apis::DataformV1beta1::ErrorTable]
3097
+ attr_accessor :error_table
3098
+
3099
+ # Simplified load configuration for actions
3100
+ # Corresponds to the JSON property `load`
3101
+ # @return [Google::Apis::DataformV1beta1::LoadConfig]
3102
+ attr_accessor :load
3103
+
3104
+ # The SQL query representing the data preparation steps. Formatted as a Pipe SQL
3105
+ # query statement.
3106
+ # Corresponds to the JSON property `query`
3107
+ # @return [String]
3108
+ attr_accessor :query
3109
+
3110
+ def initialize(**args)
3111
+ update!(**args)
3112
+ end
3113
+
3114
+ # Update properties of this object
3115
+ def update!(**args)
3116
+ @error_table = args[:error_table] if args.key?(:error_table)
3117
+ @load = args[:load] if args.key?(:load)
3118
+ @query = args[:query] if args.key?(:query)
3119
+ end
3120
+ end
3121
+
2772
3122
  # Configures fields for performing SSH authentication.
2773
3123
  class SshAuthenticationConfig
2774
3124
  include Google::Apis::Core::Hashable
@@ -2948,6 +3298,12 @@ module Google
2948
3298
  # @return [String]
2949
3299
  attr_accessor :cron_schedule
2950
3300
 
3301
+ # Optional. Disables automatic creation of workflow invocations.
3302
+ # Corresponds to the JSON property `disabled`
3303
+ # @return [Boolean]
3304
+ attr_accessor :disabled
3305
+ alias_method :disabled?, :disabled
3306
+
2951
3307
  # Output only. All the metadata information that is used internally to serve the
2952
3308
  # resource. For example: timestamps, flags, status fields, etc. The format of
2953
3309
  # this field is a JSON string.
@@ -3000,6 +3356,7 @@ module Google
3000
3356
  def update!(**args)
3001
3357
  @create_time = args[:create_time] if args.key?(:create_time)
3002
3358
  @cron_schedule = args[:cron_schedule] if args.key?(:cron_schedule)
3359
+ @disabled = args[:disabled] if args.key?(:disabled)
3003
3360
  @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
3004
3361
  @invocation_config = args[:invocation_config] if args.key?(:invocation_config)
3005
3362
  @name = args[:name] if args.key?(:name)
@@ -3102,6 +3459,11 @@ module Google
3102
3459
  # @return [Google::Apis::DataformV1beta1::Target]
3103
3460
  attr_accessor :canonical_target
3104
3461
 
3462
+ # Represents a workflow action that will run a Data Preparation.
3463
+ # Corresponds to the JSON property `dataPreparationAction`
3464
+ # @return [Google::Apis::DataformV1beta1::DataPreparationAction]
3465
+ attr_accessor :data_preparation_action
3466
+
3105
3467
  # Output only. If and only if action's state is FAILED a failure reason is set.
3106
3468
  # Corresponds to the JSON property `failureReason`
3107
3469
  # @return [String]
@@ -3146,6 +3508,7 @@ module Google
3146
3508
  def update!(**args)
3147
3509
  @bigquery_action = args[:bigquery_action] if args.key?(:bigquery_action)
3148
3510
  @canonical_target = args[:canonical_target] if args.key?(:canonical_target)
3511
+ @data_preparation_action = args[:data_preparation_action] if args.key?(:data_preparation_action)
3149
3512
  @failure_reason = args[:failure_reason] if args.key?(:failure_reason)
3150
3513
  @internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
3151
3514
  @invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
@@ -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.41.0"
19
+ GEM_VERSION = "0.42.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250323"
25
+ REVISION = "20250420"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,36 @@ module Google
22
22
  module Apis
23
23
  module DataformV1beta1
24
24
 
25
+ class ActionErrorTable
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class ActionIncrementalLoadMode
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
37
+ class ActionLoadConfig
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
43
+ class ActionSimpleLoadMode
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
49
+ class ActionSqlDefinition
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
25
55
  class Assertion
26
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
57
 
@@ -142,6 +172,18 @@ module Google
142
172
  include Google::Apis::Core::JsonObjectSupport
143
173
  end
144
174
 
175
+ class DataPreparation
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
181
+ class DataPreparationAction
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
145
187
  class Declaration
146
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
147
189
 
@@ -172,6 +214,12 @@ module Google
172
214
  include Google::Apis::Core::JsonObjectSupport
173
215
  end
174
216
 
217
+ class ErrorTable
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
175
223
  class Expr
176
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
225
 
@@ -226,6 +274,12 @@ module Google
226
274
  include Google::Apis::Core::JsonObjectSupport
227
275
  end
228
276
 
277
+ class IncrementalLoadMode
278
+ class Representation < Google::Apis::Core::JsonRepresentation; end
279
+
280
+ include Google::Apis::Core::JsonObjectSupport
281
+ end
282
+
229
283
  class IncrementalTableConfig
230
284
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
285
 
@@ -298,6 +352,12 @@ module Google
298
352
  include Google::Apis::Core::JsonObjectSupport
299
353
  end
300
354
 
355
+ class LoadConfig
356
+ class Representation < Google::Apis::Core::JsonRepresentation; end
357
+
358
+ include Google::Apis::Core::JsonObjectSupport
359
+ end
360
+
301
361
  class Location
302
362
  class Representation < Google::Apis::Core::JsonRepresentation; end
303
363
 
@@ -526,6 +586,18 @@ module Google
526
586
  include Google::Apis::Core::JsonObjectSupport
527
587
  end
528
588
 
589
+ class SimpleLoadMode
590
+ class Representation < Google::Apis::Core::JsonRepresentation; end
591
+
592
+ include Google::Apis::Core::JsonObjectSupport
593
+ end
594
+
595
+ class SqlDefinition
596
+ class Representation < Google::Apis::Core::JsonRepresentation; end
597
+
598
+ include Google::Apis::Core::JsonObjectSupport
599
+ end
600
+
529
601
  class SshAuthenticationConfig
530
602
  class Representation < Google::Apis::Core::JsonRepresentation; end
531
603
 
@@ -610,6 +682,53 @@ module Google
610
682
  include Google::Apis::Core::JsonObjectSupport
611
683
  end
612
684
 
685
+ class ActionErrorTable
686
+ # @private
687
+ class Representation < Google::Apis::Core::JsonRepresentation
688
+ property :retention_days, as: 'retentionDays'
689
+ property :target, as: 'target', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
690
+
691
+ end
692
+ end
693
+
694
+ class ActionIncrementalLoadMode
695
+ # @private
696
+ class Representation < Google::Apis::Core::JsonRepresentation
697
+ property :column, as: 'column'
698
+ end
699
+ end
700
+
701
+ class ActionLoadConfig
702
+ # @private
703
+ class Representation < Google::Apis::Core::JsonRepresentation
704
+ property :append, as: 'append', class: Google::Apis::DataformV1beta1::ActionSimpleLoadMode, decorator: Google::Apis::DataformV1beta1::ActionSimpleLoadMode::Representation
705
+
706
+ property :maximum, as: 'maximum', class: Google::Apis::DataformV1beta1::ActionIncrementalLoadMode, decorator: Google::Apis::DataformV1beta1::ActionIncrementalLoadMode::Representation
707
+
708
+ property :replace, as: 'replace', class: Google::Apis::DataformV1beta1::ActionSimpleLoadMode, decorator: Google::Apis::DataformV1beta1::ActionSimpleLoadMode::Representation
709
+
710
+ property :unique, as: 'unique', class: Google::Apis::DataformV1beta1::ActionIncrementalLoadMode, decorator: Google::Apis::DataformV1beta1::ActionIncrementalLoadMode::Representation
711
+
712
+ end
713
+ end
714
+
715
+ class ActionSimpleLoadMode
716
+ # @private
717
+ class Representation < Google::Apis::Core::JsonRepresentation
718
+ end
719
+ end
720
+
721
+ class ActionSqlDefinition
722
+ # @private
723
+ class Representation < Google::Apis::Core::JsonRepresentation
724
+ property :error_table, as: 'errorTable', class: Google::Apis::DataformV1beta1::ActionErrorTable, decorator: Google::Apis::DataformV1beta1::ActionErrorTable::Representation
725
+
726
+ property :load_config, as: 'loadConfig', class: Google::Apis::DataformV1beta1::ActionLoadConfig, decorator: Google::Apis::DataformV1beta1::ActionLoadConfig::Representation
727
+
728
+ property :query, as: 'query'
729
+ end
730
+ end
731
+
613
732
  class Assertion
614
733
  # @private
615
734
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -659,6 +778,7 @@ module Google
659
778
  # @private
660
779
  class Representation < Google::Apis::Core::JsonRepresentation
661
780
  property :assertion_schema, as: 'assertionSchema'
781
+ property :builtin_assertion_name_prefix, as: 'builtinAssertionNamePrefix'
662
782
  property :database_suffix, as: 'databaseSuffix'
663
783
  property :default_database, as: 'defaultDatabase'
664
784
  property :default_location, as: 'defaultLocation'
@@ -780,6 +900,8 @@ module Google
780
900
 
781
901
  property :canonical_target, as: 'canonicalTarget', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
782
902
 
903
+ property :data_preparation, as: 'dataPreparation', class: Google::Apis::DataformV1beta1::DataPreparation, decorator: Google::Apis::DataformV1beta1::DataPreparation::Representation
904
+
783
905
  property :declaration, as: 'declaration', class: Google::Apis::DataformV1beta1::Declaration, decorator: Google::Apis::DataformV1beta1::Declaration::Representation
784
906
 
785
907
  property :file_path, as: 'filePath'
@@ -817,6 +939,30 @@ module Google
817
939
  end
818
940
  end
819
941
 
942
+ class DataPreparation
943
+ # @private
944
+ class Representation < Google::Apis::Core::JsonRepresentation
945
+ property :contents_sql, as: 'contentsSql', class: Google::Apis::DataformV1beta1::SqlDefinition, decorator: Google::Apis::DataformV1beta1::SqlDefinition::Representation
946
+
947
+ property :contents_yaml, as: 'contentsYaml'
948
+ collection :dependency_targets, as: 'dependencyTargets', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
949
+
950
+ property :disabled, as: 'disabled'
951
+ collection :tags, as: 'tags'
952
+ end
953
+ end
954
+
955
+ class DataPreparationAction
956
+ # @private
957
+ class Representation < Google::Apis::Core::JsonRepresentation
958
+ property :contents_sql, as: 'contentsSql', class: Google::Apis::DataformV1beta1::ActionSqlDefinition, decorator: Google::Apis::DataformV1beta1::ActionSqlDefinition::Representation
959
+
960
+ property :contents_yaml, as: 'contentsYaml'
961
+ property :generated_sql, as: 'generatedSql'
962
+ property :job_id, as: 'jobId'
963
+ end
964
+ end
965
+
820
966
  class Declaration
821
967
  # @private
822
968
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -852,6 +998,15 @@ module Google
852
998
  end
853
999
  end
854
1000
 
1001
+ class ErrorTable
1002
+ # @private
1003
+ class Representation < Google::Apis::Core::JsonRepresentation
1004
+ property :retention_days, as: 'retentionDays'
1005
+ property :target, as: 'target', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
1006
+
1007
+ end
1008
+ end
1009
+
855
1010
  class Expr
856
1011
  # @private
857
1012
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -930,6 +1085,13 @@ module Google
930
1085
  end
931
1086
  end
932
1087
 
1088
+ class IncrementalLoadMode
1089
+ # @private
1090
+ class Representation < Google::Apis::Core::JsonRepresentation
1091
+ property :column, as: 'column'
1092
+ end
1093
+ end
1094
+
933
1095
  class IncrementalTableConfig
934
1096
  # @private
935
1097
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1044,6 +1206,20 @@ module Google
1044
1206
  end
1045
1207
  end
1046
1208
 
1209
+ class LoadConfig
1210
+ # @private
1211
+ class Representation < Google::Apis::Core::JsonRepresentation
1212
+ property :append, as: 'append', class: Google::Apis::DataformV1beta1::SimpleLoadMode, decorator: Google::Apis::DataformV1beta1::SimpleLoadMode::Representation
1213
+
1214
+ property :maximum, as: 'maximum', class: Google::Apis::DataformV1beta1::IncrementalLoadMode, decorator: Google::Apis::DataformV1beta1::IncrementalLoadMode::Representation
1215
+
1216
+ property :replace, as: 'replace', class: Google::Apis::DataformV1beta1::SimpleLoadMode, decorator: Google::Apis::DataformV1beta1::SimpleLoadMode::Representation
1217
+
1218
+ property :unique, as: 'unique', class: Google::Apis::DataformV1beta1::IncrementalLoadMode, decorator: Google::Apis::DataformV1beta1::IncrementalLoadMode::Representation
1219
+
1220
+ end
1221
+ end
1222
+
1047
1223
  class Location
1048
1224
  # @private
1049
1225
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1395,6 +1571,23 @@ module Google
1395
1571
  end
1396
1572
  end
1397
1573
 
1574
+ class SimpleLoadMode
1575
+ # @private
1576
+ class Representation < Google::Apis::Core::JsonRepresentation
1577
+ end
1578
+ end
1579
+
1580
+ class SqlDefinition
1581
+ # @private
1582
+ class Representation < Google::Apis::Core::JsonRepresentation
1583
+ property :error_table, as: 'errorTable', class: Google::Apis::DataformV1beta1::ErrorTable, decorator: Google::Apis::DataformV1beta1::ErrorTable::Representation
1584
+
1585
+ property :load, as: 'load', class: Google::Apis::DataformV1beta1::LoadConfig, decorator: Google::Apis::DataformV1beta1::LoadConfig::Representation
1586
+
1587
+ property :query, as: 'query'
1588
+ end
1589
+ end
1590
+
1398
1591
  class SshAuthenticationConfig
1399
1592
  # @private
1400
1593
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1448,6 +1641,7 @@ module Google
1448
1641
  class Representation < Google::Apis::Core::JsonRepresentation
1449
1642
  property :create_time, as: 'createTime'
1450
1643
  property :cron_schedule, as: 'cronSchedule'
1644
+ property :disabled, as: 'disabled'
1451
1645
  property :internal_metadata, as: 'internalMetadata'
1452
1646
  property :invocation_config, as: 'invocationConfig', class: Google::Apis::DataformV1beta1::InvocationConfig, decorator: Google::Apis::DataformV1beta1::InvocationConfig::Representation
1453
1647
 
@@ -1485,6 +1679,8 @@ module Google
1485
1679
 
1486
1680
  property :canonical_target, as: 'canonicalTarget', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
1487
1681
 
1682
+ property :data_preparation_action, as: 'dataPreparationAction', class: Google::Apis::DataformV1beta1::DataPreparationAction, decorator: Google::Apis::DataformV1beta1::DataPreparationAction::Representation
1683
+
1488
1684
  property :failure_reason, as: 'failureReason'
1489
1685
  property :internal_metadata, as: 'internalMetadata'
1490
1686
  property :invocation_timing, as: 'invocationTiming', class: Google::Apis::DataformV1beta1::Interval, decorator: Google::Apis::DataformV1beta1::Interval::Representation
@@ -482,7 +482,9 @@ module Google
482
482
  execute_or_queue_command(command, &block)
483
483
  end
484
484
 
485
- # Lists Repositories in a given project and location.
485
+ # Lists Repositories in a given project and location. **Note:** *This method can
486
+ # return repositories not shown in the [Dataform UI](https://console.cloud.
487
+ # google.com/bigquery/dataform)*.
486
488
  # @param [String] parent
487
489
  # Required. The location in which to list repositories. Must be in the format `
488
490
  # projects/*/locations/*`.
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-30 00:00:00.000000000 Z
10
+ date: 2025-04-27 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.41.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.42.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: