google-apis-dataform_v1beta1 0.27.0 → 0.29.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: 70949b1ebd47fdc0c1809cd90312343d038f7faa91fe92e8adc441efefe4fd3e
|
4
|
+
data.tar.gz: af3748f91c6e2224a816d6b31f21968a12b0637f3486833b2b01b8d0ba4d612e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ba46e81c4d25cecccae56f9ca488064141c6ea366f469f84c97c3d7ee98e18b099521afb3f76e4106e45afe8834f17ada1304b2d494afaec52ff50ef6122230
|
7
|
+
data.tar.gz: ae5340ab77cbc7b8d496846eb81bfb0517247ca4c09d9f79f7e3d43d67a95170c75087adfff5dcdaacff2184329b691acf41a2702013548aa30683fab14b789d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dataform_v1beta1
|
2
2
|
|
3
|
+
### v0.29.0 (2024-05-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240427
|
6
|
+
|
7
|
+
### v0.28.0 (2024-04-28)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240420
|
10
|
+
|
3
11
|
### v0.27.0 (2024-03-31)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240323
|
@@ -78,6 +78,12 @@ module Google
|
|
78
78
|
class BigQueryAction
|
79
79
|
include Google::Apis::Core::Hashable
|
80
80
|
|
81
|
+
# Output only. The ID of the BigQuery job that executed the SQL in sql_script.
|
82
|
+
# Only set once the job has started to run.
|
83
|
+
# Corresponds to the JSON property `jobId`
|
84
|
+
# @return [String]
|
85
|
+
attr_accessor :job_id
|
86
|
+
|
81
87
|
# Output only. The generated BigQuery SQL script that will be executed.
|
82
88
|
# Corresponds to the JSON property `sqlScript`
|
83
89
|
# @return [String]
|
@@ -89,6 +95,7 @@ module Google
|
|
89
95
|
|
90
96
|
# Update properties of this object
|
91
97
|
def update!(**args)
|
98
|
+
@job_id = args[:job_id] if args.key?(:job_id)
|
92
99
|
@sql_script = args[:sql_script] if args.key?(:sql_script)
|
93
100
|
end
|
94
101
|
end
|
@@ -234,6 +241,11 @@ module Google
|
|
234
241
|
# @return [String]
|
235
242
|
attr_accessor :default_location
|
236
243
|
|
244
|
+
#
|
245
|
+
# Corresponds to the JSON property `defaultNotebookRuntimeOptions`
|
246
|
+
# @return [Google::Apis::DataformV1beta1::NotebookRuntimeOptions]
|
247
|
+
attr_accessor :default_notebook_runtime_options
|
248
|
+
|
237
249
|
# Optional. The default schema (BigQuery dataset ID).
|
238
250
|
# Corresponds to the JSON property `defaultSchema`
|
239
251
|
# @return [String]
|
@@ -266,6 +278,7 @@ module Google
|
|
266
278
|
@database_suffix = args[:database_suffix] if args.key?(:database_suffix)
|
267
279
|
@default_database = args[:default_database] if args.key?(:default_database)
|
268
280
|
@default_location = args[:default_location] if args.key?(:default_location)
|
281
|
+
@default_notebook_runtime_options = args[:default_notebook_runtime_options] if args.key?(:default_notebook_runtime_options)
|
269
282
|
@default_schema = args[:default_schema] if args.key?(:default_schema)
|
270
283
|
@schema_suffix = args[:schema_suffix] if args.key?(:schema_suffix)
|
271
284
|
@table_prefix = args[:table_prefix] if args.key?(:table_prefix)
|
@@ -426,6 +439,25 @@ module Google
|
|
426
439
|
end
|
427
440
|
end
|
428
441
|
|
442
|
+
# `CommitRepositoryChanges` response message.
|
443
|
+
class CommitRepositoryChangesResponse
|
444
|
+
include Google::Apis::Core::Hashable
|
445
|
+
|
446
|
+
# The commit SHA of the current commit.
|
447
|
+
# Corresponds to the JSON property `commitSha`
|
448
|
+
# @return [String]
|
449
|
+
attr_accessor :commit_sha
|
450
|
+
|
451
|
+
def initialize(**args)
|
452
|
+
update!(**args)
|
453
|
+
end
|
454
|
+
|
455
|
+
# Update properties of this object
|
456
|
+
def update!(**args)
|
457
|
+
@commit_sha = args[:commit_sha] if args.key?(:commit_sha)
|
458
|
+
end
|
459
|
+
end
|
460
|
+
|
429
461
|
# `CommitWorkspaceChanges` request message.
|
430
462
|
class CommitWorkspaceChangesRequest
|
431
463
|
include Google::Apis::Core::Hashable
|
@@ -511,6 +543,11 @@ module Google
|
|
511
543
|
# @return [Array<Google::Apis::DataformV1beta1::CompilationError>]
|
512
544
|
attr_accessor :compilation_errors
|
513
545
|
|
546
|
+
# Describes encryption state of a resource.
|
547
|
+
# Corresponds to the JSON property `dataEncryptionState`
|
548
|
+
# @return [Google::Apis::DataformV1beta1::DataEncryptionState]
|
549
|
+
attr_accessor :data_encryption_state
|
550
|
+
|
514
551
|
# Output only. The version of `@dataform/core` that was used for compilation.
|
515
552
|
# Corresponds to the JSON property `dataformCoreVersion`
|
516
553
|
# @return [String]
|
@@ -554,6 +591,7 @@ module Google
|
|
554
591
|
def update!(**args)
|
555
592
|
@code_compilation_config = args[:code_compilation_config] if args.key?(:code_compilation_config)
|
556
593
|
@compilation_errors = args[:compilation_errors] if args.key?(:compilation_errors)
|
594
|
+
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
557
595
|
@dataform_core_version = args[:dataform_core_version] if args.key?(:dataform_core_version)
|
558
596
|
@git_commitish = args[:git_commitish] if args.key?(:git_commitish)
|
559
597
|
@name = args[:name] if args.key?(:name)
|
@@ -590,6 +628,11 @@ module Google
|
|
590
628
|
# @return [String]
|
591
629
|
attr_accessor :file_path
|
592
630
|
|
631
|
+
# The notebook executed by this action.
|
632
|
+
# Corresponds to the JSON property `notebook`
|
633
|
+
# @return [Google::Apis::DataformV1beta1::Notebook]
|
634
|
+
attr_accessor :notebook
|
635
|
+
|
593
636
|
# Represents a list of arbitrary database operations.
|
594
637
|
# Corresponds to the JSON property `operations`
|
595
638
|
# @return [Google::Apis::DataformV1beta1::Operations]
|
@@ -616,6 +659,7 @@ module Google
|
|
616
659
|
@canonical_target = args[:canonical_target] if args.key?(:canonical_target)
|
617
660
|
@declaration = args[:declaration] if args.key?(:declaration)
|
618
661
|
@file_path = args[:file_path] if args.key?(:file_path)
|
662
|
+
@notebook = args[:notebook] if args.key?(:notebook)
|
619
663
|
@operations = args[:operations] if args.key?(:operations)
|
620
664
|
@relation = args[:relation] if args.key?(:relation)
|
621
665
|
@target = args[:target] if args.key?(:target)
|
@@ -641,6 +685,25 @@ module Google
|
|
641
685
|
end
|
642
686
|
end
|
643
687
|
|
688
|
+
# Describes encryption state of a resource.
|
689
|
+
class DataEncryptionState
|
690
|
+
include Google::Apis::Core::Hashable
|
691
|
+
|
692
|
+
# The KMS key version name with which data of a resource is encrypted.
|
693
|
+
# Corresponds to the JSON property `kmsKeyVersionName`
|
694
|
+
# @return [String]
|
695
|
+
attr_accessor :kms_key_version_name
|
696
|
+
|
697
|
+
def initialize(**args)
|
698
|
+
update!(**args)
|
699
|
+
end
|
700
|
+
|
701
|
+
# Update properties of this object
|
702
|
+
def update!(**args)
|
703
|
+
@kms_key_version_name = args[:kms_key_version_name] if args.key?(:kms_key_version_name)
|
704
|
+
end
|
705
|
+
end
|
706
|
+
|
644
707
|
# Represents a relation which is not managed by Dataform but which may be
|
645
708
|
# referenced by Dataform actions.
|
646
709
|
class Declaration
|
@@ -1531,6 +1594,90 @@ module Google
|
|
1531
1594
|
end
|
1532
1595
|
end
|
1533
1596
|
|
1597
|
+
#
|
1598
|
+
class Notebook
|
1599
|
+
include Google::Apis::Core::Hashable
|
1600
|
+
|
1601
|
+
# The contents of the notebook.
|
1602
|
+
# Corresponds to the JSON property `contents`
|
1603
|
+
# @return [String]
|
1604
|
+
attr_accessor :contents
|
1605
|
+
|
1606
|
+
# A list of actions that this action depends on.
|
1607
|
+
# Corresponds to the JSON property `dependencyTargets`
|
1608
|
+
# @return [Array<Google::Apis::DataformV1beta1::Target>]
|
1609
|
+
attr_accessor :dependency_targets
|
1610
|
+
|
1611
|
+
# Whether this action is disabled (i.e. should not be run).
|
1612
|
+
# Corresponds to the JSON property `disabled`
|
1613
|
+
# @return [Boolean]
|
1614
|
+
attr_accessor :disabled
|
1615
|
+
alias_method :disabled?, :disabled
|
1616
|
+
|
1617
|
+
# Arbitrary, user-defined tags on this action.
|
1618
|
+
# Corresponds to the JSON property `tags`
|
1619
|
+
# @return [Array<String>]
|
1620
|
+
attr_accessor :tags
|
1621
|
+
|
1622
|
+
def initialize(**args)
|
1623
|
+
update!(**args)
|
1624
|
+
end
|
1625
|
+
|
1626
|
+
# Update properties of this object
|
1627
|
+
def update!(**args)
|
1628
|
+
@contents = args[:contents] if args.key?(:contents)
|
1629
|
+
@dependency_targets = args[:dependency_targets] if args.key?(:dependency_targets)
|
1630
|
+
@disabled = args[:disabled] if args.key?(:disabled)
|
1631
|
+
@tags = args[:tags] if args.key?(:tags)
|
1632
|
+
end
|
1633
|
+
end
|
1634
|
+
|
1635
|
+
# Represents a workflow action that will run against a Notebook runtime.
|
1636
|
+
class NotebookAction
|
1637
|
+
include Google::Apis::Core::Hashable
|
1638
|
+
|
1639
|
+
# Output only. The code contents of a Notebook to be run.
|
1640
|
+
# Corresponds to the JSON property `contents`
|
1641
|
+
# @return [String]
|
1642
|
+
attr_accessor :contents
|
1643
|
+
|
1644
|
+
# Output only. The ID of the Vertex job that executed the notebook in contents
|
1645
|
+
# and also the ID used for the outputs created in GCS buckets. Only set once the
|
1646
|
+
# job has started to run.
|
1647
|
+
# Corresponds to the JSON property `jobId`
|
1648
|
+
# @return [String]
|
1649
|
+
attr_accessor :job_id
|
1650
|
+
|
1651
|
+
def initialize(**args)
|
1652
|
+
update!(**args)
|
1653
|
+
end
|
1654
|
+
|
1655
|
+
# Update properties of this object
|
1656
|
+
def update!(**args)
|
1657
|
+
@contents = args[:contents] if args.key?(:contents)
|
1658
|
+
@job_id = args[:job_id] if args.key?(:job_id)
|
1659
|
+
end
|
1660
|
+
end
|
1661
|
+
|
1662
|
+
#
|
1663
|
+
class NotebookRuntimeOptions
|
1664
|
+
include Google::Apis::Core::Hashable
|
1665
|
+
|
1666
|
+
# Optional. The GCS location to upload the result to. Format: `gs://bucket-name`.
|
1667
|
+
# Corresponds to the JSON property `gcsOutputBucket`
|
1668
|
+
# @return [String]
|
1669
|
+
attr_accessor :gcs_output_bucket
|
1670
|
+
|
1671
|
+
def initialize(**args)
|
1672
|
+
update!(**args)
|
1673
|
+
end
|
1674
|
+
|
1675
|
+
# Update properties of this object
|
1676
|
+
def update!(**args)
|
1677
|
+
@gcs_output_bucket = args[:gcs_output_bucket] if args.key?(:gcs_output_bucket)
|
1678
|
+
end
|
1679
|
+
end
|
1680
|
+
|
1534
1681
|
# Represents the metadata of the long-running operation.
|
1535
1682
|
class OperationMetadata
|
1536
1683
|
include Google::Apis::Core::Hashable
|
@@ -2178,6 +2325,11 @@ module Google
|
|
2178
2325
|
# @return [String]
|
2179
2326
|
attr_accessor :create_time
|
2180
2327
|
|
2328
|
+
# Describes encryption state of a resource.
|
2329
|
+
# Corresponds to the JSON property `dataEncryptionState`
|
2330
|
+
# @return [Google::Apis::DataformV1beta1::DataEncryptionState]
|
2331
|
+
attr_accessor :data_encryption_state
|
2332
|
+
|
2181
2333
|
# Optional. The repository's user-friendly name.
|
2182
2334
|
# Corresponds to the JSON property `displayName`
|
2183
2335
|
# @return [String]
|
@@ -2188,6 +2340,15 @@ module Google
|
|
2188
2340
|
# @return [Google::Apis::DataformV1beta1::GitRemoteSettings]
|
2189
2341
|
attr_accessor :git_remote_settings
|
2190
2342
|
|
2343
|
+
# Optional. The reference to a KMS encryption key. If provided, it will be used
|
2344
|
+
# to encrypt user data in the repository and all child resources. It is not
|
2345
|
+
# possible to add or update the encryption key after the repository is created.
|
2346
|
+
# Example: `projects/[kms_project_id]/locations/[region]/keyRings/[key_region]/
|
2347
|
+
# cryptoKeys/[key]`
|
2348
|
+
# Corresponds to the JSON property `kmsKeyName`
|
2349
|
+
# @return [String]
|
2350
|
+
attr_accessor :kms_key_name
|
2351
|
+
|
2191
2352
|
# Optional. Repository user labels.
|
2192
2353
|
# Corresponds to the JSON property `labels`
|
2193
2354
|
# @return [Hash<String,String>]
|
@@ -2239,8 +2400,10 @@ module Google
|
|
2239
2400
|
# Update properties of this object
|
2240
2401
|
def update!(**args)
|
2241
2402
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2403
|
+
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
2242
2404
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2243
2405
|
@git_remote_settings = args[:git_remote_settings] if args.key?(:git_remote_settings)
|
2406
|
+
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
2244
2407
|
@labels = args[:labels] if args.key?(:labels)
|
2245
2408
|
@name = args[:name] if args.key?(:name)
|
2246
2409
|
@npmrc_environment_variables_secret_version = args[:npmrc_environment_variables_secret_version] if args.key?(:npmrc_environment_variables_secret_version)
|
@@ -2681,6 +2844,11 @@ module Google
|
|
2681
2844
|
# @return [String]
|
2682
2845
|
attr_accessor :compilation_result
|
2683
2846
|
|
2847
|
+
# Describes encryption state of a resource.
|
2848
|
+
# Corresponds to the JSON property `dataEncryptionState`
|
2849
|
+
# @return [Google::Apis::DataformV1beta1::DataEncryptionState]
|
2850
|
+
attr_accessor :data_encryption_state
|
2851
|
+
|
2684
2852
|
# Includes various configuration options for a workflow invocation. If both `
|
2685
2853
|
# included_targets` and `included_tags` are unset, all actions will be included.
|
2686
2854
|
# Corresponds to the JSON property `invocationConfig`
|
@@ -2725,6 +2893,7 @@ module Google
|
|
2725
2893
|
# Update properties of this object
|
2726
2894
|
def update!(**args)
|
2727
2895
|
@compilation_result = args[:compilation_result] if args.key?(:compilation_result)
|
2896
|
+
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
2728
2897
|
@invocation_config = args[:invocation_config] if args.key?(:invocation_config)
|
2729
2898
|
@invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
|
2730
2899
|
@name = args[:name] if args.key?(:name)
|
@@ -2762,6 +2931,11 @@ module Google
|
|
2762
2931
|
# @return [Google::Apis::DataformV1beta1::Interval]
|
2763
2932
|
attr_accessor :invocation_timing
|
2764
2933
|
|
2934
|
+
# Represents a workflow action that will run against a Notebook runtime.
|
2935
|
+
# Corresponds to the JSON property `notebookAction`
|
2936
|
+
# @return [Google::Apis::DataformV1beta1::NotebookAction]
|
2937
|
+
attr_accessor :notebook_action
|
2938
|
+
|
2765
2939
|
# Output only. This action's current state.
|
2766
2940
|
# Corresponds to the JSON property `state`
|
2767
2941
|
# @return [String]
|
@@ -2783,6 +2957,7 @@ module Google
|
|
2783
2957
|
@canonical_target = args[:canonical_target] if args.key?(:canonical_target)
|
2784
2958
|
@failure_reason = args[:failure_reason] if args.key?(:failure_reason)
|
2785
2959
|
@invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
|
2960
|
+
@notebook_action = args[:notebook_action] if args.key?(:notebook_action)
|
2786
2961
|
@state = args[:state] if args.key?(:state)
|
2787
2962
|
@target = args[:target] if args.key?(:target)
|
2788
2963
|
end
|
@@ -2792,6 +2967,11 @@ module Google
|
|
2792
2967
|
class Workspace
|
2793
2968
|
include Google::Apis::Core::Hashable
|
2794
2969
|
|
2970
|
+
# Describes encryption state of a resource.
|
2971
|
+
# Corresponds to the JSON property `dataEncryptionState`
|
2972
|
+
# @return [Google::Apis::DataformV1beta1::DataEncryptionState]
|
2973
|
+
attr_accessor :data_encryption_state
|
2974
|
+
|
2795
2975
|
# Identifier. The workspace's name.
|
2796
2976
|
# Corresponds to the JSON property `name`
|
2797
2977
|
# @return [String]
|
@@ -2803,6 +2983,7 @@ module Google
|
|
2803
2983
|
|
2804
2984
|
# Update properties of this object
|
2805
2985
|
def update!(**args)
|
2986
|
+
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
2806
2987
|
@name = args[:name] if args.key?(:name)
|
2807
2988
|
end
|
2808
2989
|
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.29.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240427"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -82,6 +82,12 @@ module Google
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
83
83
|
end
|
84
84
|
|
85
|
+
class CommitRepositoryChangesResponse
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
85
91
|
class CommitWorkspaceChangesRequest
|
86
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
93
|
|
@@ -112,6 +118,12 @@ module Google
|
|
112
118
|
include Google::Apis::Core::JsonObjectSupport
|
113
119
|
end
|
114
120
|
|
121
|
+
class DataEncryptionState
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
115
127
|
class Declaration
|
116
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
129
|
|
@@ -310,6 +322,24 @@ module Google
|
|
310
322
|
include Google::Apis::Core::JsonObjectSupport
|
311
323
|
end
|
312
324
|
|
325
|
+
class Notebook
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
331
|
+
class NotebookAction
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
337
|
+
class NotebookRuntimeOptions
|
338
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
|
+
|
340
|
+
include Google::Apis::Core::JsonObjectSupport
|
341
|
+
end
|
342
|
+
|
313
343
|
class OperationMetadata
|
314
344
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
345
|
|
@@ -550,6 +580,7 @@ module Google
|
|
550
580
|
class BigQueryAction
|
551
581
|
# @private
|
552
582
|
class Representation < Google::Apis::Core::JsonRepresentation
|
583
|
+
property :job_id, as: 'jobId'
|
553
584
|
property :sql_script, as: 'sqlScript'
|
554
585
|
end
|
555
586
|
end
|
@@ -577,6 +608,8 @@ module Google
|
|
577
608
|
property :database_suffix, as: 'databaseSuffix'
|
578
609
|
property :default_database, as: 'defaultDatabase'
|
579
610
|
property :default_location, as: 'defaultLocation'
|
611
|
+
property :default_notebook_runtime_options, as: 'defaultNotebookRuntimeOptions', class: Google::Apis::DataformV1beta1::NotebookRuntimeOptions, decorator: Google::Apis::DataformV1beta1::NotebookRuntimeOptions::Representation
|
612
|
+
|
580
613
|
property :default_schema, as: 'defaultSchema'
|
581
614
|
property :schema_suffix, as: 'schemaSuffix'
|
582
615
|
property :table_prefix, as: 'tablePrefix'
|
@@ -632,6 +665,13 @@ module Google
|
|
632
665
|
end
|
633
666
|
end
|
634
667
|
|
668
|
+
class CommitRepositoryChangesResponse
|
669
|
+
# @private
|
670
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
671
|
+
property :commit_sha, as: 'commitSha'
|
672
|
+
end
|
673
|
+
end
|
674
|
+
|
635
675
|
class CommitWorkspaceChangesRequest
|
636
676
|
# @private
|
637
677
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -660,6 +700,8 @@ module Google
|
|
660
700
|
|
661
701
|
collection :compilation_errors, as: 'compilationErrors', class: Google::Apis::DataformV1beta1::CompilationError, decorator: Google::Apis::DataformV1beta1::CompilationError::Representation
|
662
702
|
|
703
|
+
property :data_encryption_state, as: 'dataEncryptionState', class: Google::Apis::DataformV1beta1::DataEncryptionState, decorator: Google::Apis::DataformV1beta1::DataEncryptionState::Representation
|
704
|
+
|
663
705
|
property :dataform_core_version, as: 'dataformCoreVersion'
|
664
706
|
property :git_commitish, as: 'gitCommitish'
|
665
707
|
property :name, as: 'name'
|
@@ -679,6 +721,8 @@ module Google
|
|
679
721
|
property :declaration, as: 'declaration', class: Google::Apis::DataformV1beta1::Declaration, decorator: Google::Apis::DataformV1beta1::Declaration::Representation
|
680
722
|
|
681
723
|
property :file_path, as: 'filePath'
|
724
|
+
property :notebook, as: 'notebook', class: Google::Apis::DataformV1beta1::Notebook, decorator: Google::Apis::DataformV1beta1::Notebook::Representation
|
725
|
+
|
682
726
|
property :operations, as: 'operations', class: Google::Apis::DataformV1beta1::Operations, decorator: Google::Apis::DataformV1beta1::Operations::Representation
|
683
727
|
|
684
728
|
property :relation, as: 'relation', class: Google::Apis::DataformV1beta1::Relation, decorator: Google::Apis::DataformV1beta1::Relation::Representation
|
@@ -695,6 +739,13 @@ module Google
|
|
695
739
|
end
|
696
740
|
end
|
697
741
|
|
742
|
+
class DataEncryptionState
|
743
|
+
# @private
|
744
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
745
|
+
property :kms_key_version_name, as: 'kmsKeyVersionName'
|
746
|
+
end
|
747
|
+
end
|
748
|
+
|
698
749
|
class Declaration
|
699
750
|
# @private
|
700
751
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -974,6 +1025,32 @@ module Google
|
|
974
1025
|
end
|
975
1026
|
end
|
976
1027
|
|
1028
|
+
class Notebook
|
1029
|
+
# @private
|
1030
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1031
|
+
property :contents, as: 'contents'
|
1032
|
+
collection :dependency_targets, as: 'dependencyTargets', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
|
1033
|
+
|
1034
|
+
property :disabled, as: 'disabled'
|
1035
|
+
collection :tags, as: 'tags'
|
1036
|
+
end
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
class NotebookAction
|
1040
|
+
# @private
|
1041
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1042
|
+
property :contents, as: 'contents'
|
1043
|
+
property :job_id, as: 'jobId'
|
1044
|
+
end
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
class NotebookRuntimeOptions
|
1048
|
+
# @private
|
1049
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1050
|
+
property :gcs_output_bucket, as: 'gcsOutputBucket'
|
1051
|
+
end
|
1052
|
+
end
|
1053
|
+
|
977
1054
|
class OperationMetadata
|
978
1055
|
# @private
|
979
1056
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1144,9 +1221,12 @@ module Google
|
|
1144
1221
|
# @private
|
1145
1222
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1146
1223
|
property :create_time, as: 'createTime'
|
1224
|
+
property :data_encryption_state, as: 'dataEncryptionState', class: Google::Apis::DataformV1beta1::DataEncryptionState, decorator: Google::Apis::DataformV1beta1::DataEncryptionState::Representation
|
1225
|
+
|
1147
1226
|
property :display_name, as: 'displayName'
|
1148
1227
|
property :git_remote_settings, as: 'gitRemoteSettings', class: Google::Apis::DataformV1beta1::GitRemoteSettings, decorator: Google::Apis::DataformV1beta1::GitRemoteSettings::Representation
|
1149
1228
|
|
1229
|
+
property :kms_key_name, as: 'kmsKeyName'
|
1150
1230
|
hash :labels, as: 'labels'
|
1151
1231
|
property :name, as: 'name'
|
1152
1232
|
property :npmrc_environment_variables_secret_version, as: 'npmrcEnvironmentVariablesSecretVersion'
|
@@ -1278,6 +1358,8 @@ module Google
|
|
1278
1358
|
# @private
|
1279
1359
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1280
1360
|
property :compilation_result, as: 'compilationResult'
|
1361
|
+
property :data_encryption_state, as: 'dataEncryptionState', class: Google::Apis::DataformV1beta1::DataEncryptionState, decorator: Google::Apis::DataformV1beta1::DataEncryptionState::Representation
|
1362
|
+
|
1281
1363
|
property :invocation_config, as: 'invocationConfig', class: Google::Apis::DataformV1beta1::InvocationConfig, decorator: Google::Apis::DataformV1beta1::InvocationConfig::Representation
|
1282
1364
|
|
1283
1365
|
property :invocation_timing, as: 'invocationTiming', class: Google::Apis::DataformV1beta1::Interval, decorator: Google::Apis::DataformV1beta1::Interval::Representation
|
@@ -1299,6 +1381,8 @@ module Google
|
|
1299
1381
|
property :failure_reason, as: 'failureReason'
|
1300
1382
|
property :invocation_timing, as: 'invocationTiming', class: Google::Apis::DataformV1beta1::Interval, decorator: Google::Apis::DataformV1beta1::Interval::Representation
|
1301
1383
|
|
1384
|
+
property :notebook_action, as: 'notebookAction', class: Google::Apis::DataformV1beta1::NotebookAction, decorator: Google::Apis::DataformV1beta1::NotebookAction::Representation
|
1385
|
+
|
1302
1386
|
property :state, as: 'state'
|
1303
1387
|
property :target, as: 'target', class: Google::Apis::DataformV1beta1::Target, decorator: Google::Apis::DataformV1beta1::Target::Representation
|
1304
1388
|
|
@@ -1308,6 +1392,8 @@ module Google
|
|
1308
1392
|
class Workspace
|
1309
1393
|
# @private
|
1310
1394
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1395
|
+
property :data_encryption_state, as: 'dataEncryptionState', class: Google::Apis::DataformV1beta1::DataEncryptionState, decorator: Google::Apis::DataformV1beta1::DataEncryptionState::Representation
|
1396
|
+
|
1311
1397
|
property :name, as: 'name'
|
1312
1398
|
end
|
1313
1399
|
end
|
@@ -260,10 +260,10 @@ module Google
|
|
260
260
|
# Request-specific options
|
261
261
|
#
|
262
262
|
# @yield [result, err] Result & error if block supplied
|
263
|
-
# @yieldparam result [Google::Apis::DataformV1beta1::
|
263
|
+
# @yieldparam result [Google::Apis::DataformV1beta1::CommitRepositoryChangesResponse] parsed result object
|
264
264
|
# @yieldparam err [StandardError] error object if request failed
|
265
265
|
#
|
266
|
-
# @return [Google::Apis::DataformV1beta1::
|
266
|
+
# @return [Google::Apis::DataformV1beta1::CommitRepositoryChangesResponse]
|
267
267
|
#
|
268
268
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
269
269
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
@@ -272,8 +272,8 @@ module Google
|
|
272
272
|
command = make_simple_command(:post, 'v1beta1/{+name}:commit', options)
|
273
273
|
command.request_representation = Google::Apis::DataformV1beta1::CommitRepositoryChangesRequest::Representation
|
274
274
|
command.request_object = commit_repository_changes_request_object
|
275
|
-
command.response_representation = Google::Apis::DataformV1beta1::
|
276
|
-
command.response_class = Google::Apis::DataformV1beta1::
|
275
|
+
command.response_representation = Google::Apis::DataformV1beta1::CommitRepositoryChangesResponse::Representation
|
276
|
+
command.response_class = Google::Apis::DataformV1beta1::CommitRepositoryChangesResponse
|
277
277
|
command.params['name'] = name unless name.nil?
|
278
278
|
command.query['fields'] = fields unless fields.nil?
|
279
279
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -851,6 +851,10 @@ module Google
|
|
851
851
|
# format `projects/*/locations/*/repositories/*`.
|
852
852
|
# @param [String] filter
|
853
853
|
# Optional. Filter for the returned list.
|
854
|
+
# @param [String] order_by
|
855
|
+
# Optional. This field only supports ordering by `name` and `create_time`. If
|
856
|
+
# unspecified, the server will choose the ordering. If specified, the default
|
857
|
+
# order is ascending for the `name` field.
|
854
858
|
# @param [Fixnum] page_size
|
855
859
|
# Optional. Maximum number of compilation results to return. The server may
|
856
860
|
# return fewer items than requested. If unspecified, the server will pick an
|
@@ -877,12 +881,13 @@ module Google
|
|
877
881
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
878
882
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
879
883
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
880
|
-
def list_project_location_repository_compilation_results(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
884
|
+
def list_project_location_repository_compilation_results(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
881
885
|
command = make_simple_command(:get, 'v1beta1/{+parent}/compilationResults', options)
|
882
886
|
command.response_representation = Google::Apis::DataformV1beta1::ListCompilationResultsResponse::Representation
|
883
887
|
command.response_class = Google::Apis::DataformV1beta1::ListCompilationResultsResponse
|
884
888
|
command.params['parent'] = parent unless parent.nil?
|
885
889
|
command.query['filter'] = filter unless filter.nil?
|
890
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
886
891
|
command.query['pageSize'] = page_size unless page_size.nil?
|
887
892
|
command.query['pageToken'] = page_token unless page_token.nil?
|
888
893
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.29.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-05-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.29.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|