google-apis-dataform_v1 0.10.0 → 0.12.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: 6fe805f5ad1a74e6f38654c484af1c507ed1715f7e4a9e53933422e5c8d949de
|
|
4
|
+
data.tar.gz: aaae01ce193f0fff91d8f48bb27bedad44eb42e272c5c5c9ea24c8a5922ecf79
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11964257315e085c5eb29ff4041aef9df587b89f297df3f07e9c21a73cd77ffec22e6a220d89e4f3df98035310364126f5ace1cfc5e0a88e61ee465b9e91d908
|
|
7
|
+
data.tar.gz: ec9b564d55160cf2606d1bee103d77e3916d845ea868858e96ddbf640a1b7a79a0372297bf6f234980ef800f7c3a81626732ae94dfe563f1e944ad4bd114c420
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dataform_v1
|
|
2
2
|
|
|
3
|
+
### v0.12.0 (2026-08-09)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260802
|
|
6
|
+
|
|
7
|
+
### v0.11.0 (2026-06-28)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260621
|
|
10
|
+
|
|
3
11
|
### v0.10.0 (2026-06-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260607
|
|
@@ -409,6 +409,11 @@ module Google
|
|
|
409
409
|
# @return [String]
|
|
410
410
|
attr_accessor :default_schema
|
|
411
411
|
|
|
412
|
+
# Defines the pipeline type and path within the Git repository.
|
|
413
|
+
# Corresponds to the JSON property `pipelineConfig`
|
|
414
|
+
# @return [Google::Apis::DataformV1::PipelineConfig]
|
|
415
|
+
attr_accessor :pipeline_config
|
|
416
|
+
|
|
412
417
|
# Optional. The suffix that should be appended to all schema (BigQuery dataset
|
|
413
418
|
# ID) names.
|
|
414
419
|
# Corresponds to the JSON property `schemaSuffix`
|
|
@@ -439,6 +444,7 @@ module Google
|
|
|
439
444
|
@default_location = args[:default_location] if args.key?(:default_location)
|
|
440
445
|
@default_notebook_runtime_options = args[:default_notebook_runtime_options] if args.key?(:default_notebook_runtime_options)
|
|
441
446
|
@default_schema = args[:default_schema] if args.key?(:default_schema)
|
|
447
|
+
@pipeline_config = args[:pipeline_config] if args.key?(:pipeline_config)
|
|
442
448
|
@schema_suffix = args[:schema_suffix] if args.key?(:schema_suffix)
|
|
443
449
|
@table_prefix = args[:table_prefix] if args.key?(:table_prefix)
|
|
444
450
|
@vars = args[:vars] if args.key?(:vars)
|
|
@@ -730,6 +736,11 @@ module Google
|
|
|
730
736
|
# @return [String]
|
|
731
737
|
attr_accessor :dataform_core_version
|
|
732
738
|
|
|
739
|
+
# Metadata about a repository snapshot stored in Google Cloud Storage.
|
|
740
|
+
# Corresponds to the JSON property `gcsRepositorySnapshotMetadata`
|
|
741
|
+
# @return [Google::Apis::DataformV1::GcsRepositorySnapshotMetadata]
|
|
742
|
+
attr_accessor :gcs_repository_snapshot_metadata
|
|
743
|
+
|
|
733
744
|
# Immutable. Git commit/tag/branch name at which the repository should be
|
|
734
745
|
# compiled. Must exist in the remote repository. Examples: - a commit SHA: `
|
|
735
746
|
# 12ade345` - a tag: `tag1` - a branch name: `branch1`
|
|
@@ -783,6 +794,7 @@ module Google
|
|
|
783
794
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
784
795
|
@data_encryption_state = args[:data_encryption_state] if args.key?(:data_encryption_state)
|
|
785
796
|
@dataform_core_version = args[:dataform_core_version] if args.key?(:dataform_core_version)
|
|
797
|
+
@gcs_repository_snapshot_metadata = args[:gcs_repository_snapshot_metadata] if args.key?(:gcs_repository_snapshot_metadata)
|
|
786
798
|
@git_commitish = args[:git_commitish] if args.key?(:git_commitish)
|
|
787
799
|
@internal_metadata = args[:internal_metadata] if args.key?(:internal_metadata)
|
|
788
800
|
@name = args[:name] if args.key?(:name)
|
|
@@ -1532,6 +1544,59 @@ module Google
|
|
|
1532
1544
|
end
|
|
1533
1545
|
end
|
|
1534
1546
|
|
|
1547
|
+
# Configures the destination for a repository snapshot.
|
|
1548
|
+
class GcsRepositorySnapshotDestination
|
|
1549
|
+
include Google::Apis::Core::Hashable
|
|
1550
|
+
|
|
1551
|
+
# Optional. The Google Cloud Storage destination to upload the repository
|
|
1552
|
+
# snapshot to. Format: `gs://bucket-name/path/`.
|
|
1553
|
+
# Corresponds to the JSON property `repositorySnapshotUri`
|
|
1554
|
+
# @return [String]
|
|
1555
|
+
attr_accessor :repository_snapshot_uri
|
|
1556
|
+
|
|
1557
|
+
def initialize(**args)
|
|
1558
|
+
update!(**args)
|
|
1559
|
+
end
|
|
1560
|
+
|
|
1561
|
+
# Update properties of this object
|
|
1562
|
+
def update!(**args)
|
|
1563
|
+
@repository_snapshot_uri = args[:repository_snapshot_uri] if args.key?(:repository_snapshot_uri)
|
|
1564
|
+
end
|
|
1565
|
+
end
|
|
1566
|
+
|
|
1567
|
+
# Metadata about a repository snapshot stored in Google Cloud Storage.
|
|
1568
|
+
class GcsRepositorySnapshotMetadata
|
|
1569
|
+
include Google::Apis::Core::Hashable
|
|
1570
|
+
|
|
1571
|
+
# Output only. The crc32c checksum of the repository snapshot, big-endian base64
|
|
1572
|
+
# encoded.
|
|
1573
|
+
# Corresponds to the JSON property `crc32cChecksum`
|
|
1574
|
+
# @return [String]
|
|
1575
|
+
attr_accessor :crc32c_checksum
|
|
1576
|
+
|
|
1577
|
+
# Output only. The generation number of the Cloud Storage object. See https://
|
|
1578
|
+
# cloud.google.com/storage/docs/metadata#generation-number.
|
|
1579
|
+
# Corresponds to the JSON property `generation`
|
|
1580
|
+
# @return [Fixnum]
|
|
1581
|
+
attr_accessor :generation
|
|
1582
|
+
|
|
1583
|
+
# Output only. The Google Cloud Storage URI of the repository snapshot.
|
|
1584
|
+
# Corresponds to the JSON property `repositorySnapshotUri`
|
|
1585
|
+
# @return [String]
|
|
1586
|
+
attr_accessor :repository_snapshot_uri
|
|
1587
|
+
|
|
1588
|
+
def initialize(**args)
|
|
1589
|
+
update!(**args)
|
|
1590
|
+
end
|
|
1591
|
+
|
|
1592
|
+
# Update properties of this object
|
|
1593
|
+
def update!(**args)
|
|
1594
|
+
@crc32c_checksum = args[:crc32c_checksum] if args.key?(:crc32c_checksum)
|
|
1595
|
+
@generation = args[:generation] if args.key?(:generation)
|
|
1596
|
+
@repository_snapshot_uri = args[:repository_snapshot_uri] if args.key?(:repository_snapshot_uri)
|
|
1597
|
+
end
|
|
1598
|
+
end
|
|
1599
|
+
|
|
1535
1600
|
# Controls Git remote configuration for a repository.
|
|
1536
1601
|
class GitRemoteSettings
|
|
1537
1602
|
include Google::Apis::Core::Hashable
|
|
@@ -1543,7 +1608,8 @@ module Google
|
|
|
1543
1608
|
# @return [String]
|
|
1544
1609
|
attr_accessor :authentication_token_secret_version
|
|
1545
1610
|
|
|
1546
|
-
# Optional. The Git remote's default branch name. If not set `main` will be
|
|
1611
|
+
# Optional. The Git remote's default branch name. If not set, `main` will be
|
|
1612
|
+
# used.
|
|
1547
1613
|
# Corresponds to the JSON property `defaultBranch`
|
|
1548
1614
|
# @return [String]
|
|
1549
1615
|
attr_accessor :default_branch
|
|
@@ -1554,8 +1620,8 @@ module Google
|
|
|
1554
1620
|
# @return [String]
|
|
1555
1621
|
attr_accessor :effective_default_branch
|
|
1556
1622
|
|
|
1557
|
-
# Optional. Resource name for the GitRepositoryLink used for machine
|
|
1558
|
-
# Must be in the format `projects/*/locations/*/connections/*/
|
|
1623
|
+
# Optional. Resource name for the `GitRepositoryLink` used for machine
|
|
1624
|
+
# credentials. Must be in the format `projects/*/locations/*/connections/*/
|
|
1559
1625
|
# gitRepositoryLinks/*`
|
|
1560
1626
|
# Corresponds to the JSON property `gitRepositoryLink`
|
|
1561
1627
|
# @return [String]
|
|
@@ -1702,12 +1768,18 @@ module Google
|
|
|
1702
1768
|
class InstallNpmPackagesRequest
|
|
1703
1769
|
include Google::Apis::Core::Hashable
|
|
1704
1770
|
|
|
1771
|
+
# Defines the pipeline type and path within the Git repository.
|
|
1772
|
+
# Corresponds to the JSON property `pipelineConfig`
|
|
1773
|
+
# @return [Google::Apis::DataformV1::PipelineConfig]
|
|
1774
|
+
attr_accessor :pipeline_config
|
|
1775
|
+
|
|
1705
1776
|
def initialize(**args)
|
|
1706
1777
|
update!(**args)
|
|
1707
1778
|
end
|
|
1708
1779
|
|
|
1709
1780
|
# Update properties of this object
|
|
1710
1781
|
def update!(**args)
|
|
1782
|
+
@pipeline_config = args[:pipeline_config] if args.key?(:pipeline_config)
|
|
1711
1783
|
end
|
|
1712
1784
|
end
|
|
1713
1785
|
|
|
@@ -1832,8 +1904,7 @@ module Google
|
|
|
1832
1904
|
# @return [String]
|
|
1833
1905
|
attr_accessor :next_page_token
|
|
1834
1906
|
|
|
1835
|
-
# Locations which could not be reached.
|
|
1836
|
-
# cloud/dataform/v2main/data_pipelines.proto:ListCompilationResultsResponse)
|
|
1907
|
+
# Locations which could not be reached.
|
|
1837
1908
|
# Corresponds to the JSON property `unreachable`
|
|
1838
1909
|
# @return [Array<String>]
|
|
1839
1910
|
attr_accessor :unreachable
|
|
@@ -1924,8 +1995,7 @@ module Google
|
|
|
1924
1995
|
# @return [Array<Google::Apis::DataformV1::ReleaseConfig>]
|
|
1925
1996
|
attr_accessor :release_configs
|
|
1926
1997
|
|
|
1927
|
-
# Locations which could not be reached.
|
|
1928
|
-
# cloud/dataform/v2main/data_pipelines.proto:ListReleaseConfigsResponse)
|
|
1998
|
+
# Locations which could not be reached.
|
|
1929
1999
|
# Corresponds to the JSON property `unreachable`
|
|
1930
2000
|
# @return [Array<String>]
|
|
1931
2001
|
attr_accessor :unreachable
|
|
@@ -2356,6 +2426,11 @@ module Google
|
|
|
2356
2426
|
# @return [String]
|
|
2357
2427
|
attr_accessor :contents
|
|
2358
2428
|
|
|
2429
|
+
# Output only. The path to the notebook file in the repository.
|
|
2430
|
+
# Corresponds to the JSON property `filePath`
|
|
2431
|
+
# @return [String]
|
|
2432
|
+
attr_accessor :file_path
|
|
2433
|
+
|
|
2359
2434
|
# Output only. The ID of the Gemini Enterprise Agent Platform job that executed
|
|
2360
2435
|
# the notebook in contents and also the ID used for the outputs created in
|
|
2361
2436
|
# Google Cloud Storage buckets. Only set once the job has started to run.
|
|
@@ -2370,6 +2445,7 @@ module Google
|
|
|
2370
2445
|
# Update properties of this object
|
|
2371
2446
|
def update!(**args)
|
|
2372
2447
|
@contents = args[:contents] if args.key?(:contents)
|
|
2448
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
2373
2449
|
@job_id = args[:job_id] if args.key?(:job_id)
|
|
2374
2450
|
end
|
|
2375
2451
|
end
|
|
@@ -2392,6 +2468,11 @@ module Google
|
|
|
2392
2468
|
# @return [String]
|
|
2393
2469
|
attr_accessor :gcs_output_bucket
|
|
2394
2470
|
|
|
2471
|
+
# Configures the destination for a repository snapshot.
|
|
2472
|
+
# Corresponds to the JSON property `gcsRepositorySnapshotDestination`
|
|
2473
|
+
# @return [Google::Apis::DataformV1::GcsRepositorySnapshotDestination]
|
|
2474
|
+
attr_accessor :gcs_repository_snapshot_destination
|
|
2475
|
+
|
|
2395
2476
|
def initialize(**args)
|
|
2396
2477
|
update!(**args)
|
|
2397
2478
|
end
|
|
@@ -2400,6 +2481,7 @@ module Google
|
|
|
2400
2481
|
def update!(**args)
|
|
2401
2482
|
@ai_platform_notebook_runtime_template = args[:ai_platform_notebook_runtime_template] if args.key?(:ai_platform_notebook_runtime_template)
|
|
2402
2483
|
@gcs_output_bucket = args[:gcs_output_bucket] if args.key?(:gcs_output_bucket)
|
|
2484
|
+
@gcs_repository_snapshot_destination = args[:gcs_repository_snapshot_destination] if args.key?(:gcs_repository_snapshot_destination)
|
|
2403
2485
|
end
|
|
2404
2486
|
end
|
|
2405
2487
|
|
|
@@ -2575,6 +2657,33 @@ module Google
|
|
|
2575
2657
|
end
|
|
2576
2658
|
end
|
|
2577
2659
|
|
|
2660
|
+
# Defines the pipeline type and path within the Git repository.
|
|
2661
|
+
class PipelineConfig
|
|
2662
|
+
include Google::Apis::Core::Hashable
|
|
2663
|
+
|
|
2664
|
+
# Required. The relative path within the Git repository where the pipeline is
|
|
2665
|
+
# defined. For example, for a Dataform pipeline, it is a path to the folder
|
|
2666
|
+
# where `workflow_settings.yaml` or `dataform.json` is located.
|
|
2667
|
+
# Corresponds to the JSON property `path`
|
|
2668
|
+
# @return [String]
|
|
2669
|
+
attr_accessor :path
|
|
2670
|
+
|
|
2671
|
+
# Required. The type of the pipeline.
|
|
2672
|
+
# Corresponds to the JSON property `pipelineType`
|
|
2673
|
+
# @return [String]
|
|
2674
|
+
attr_accessor :pipeline_type
|
|
2675
|
+
|
|
2676
|
+
def initialize(**args)
|
|
2677
|
+
update!(**args)
|
|
2678
|
+
end
|
|
2679
|
+
|
|
2680
|
+
# Update properties of this object
|
|
2681
|
+
def update!(**args)
|
|
2682
|
+
@path = args[:path] if args.key?(:path)
|
|
2683
|
+
@pipeline_type = args[:pipeline_type] if args.key?(:pipeline_type)
|
|
2684
|
+
end
|
|
2685
|
+
end
|
|
2686
|
+
|
|
2578
2687
|
# An Identity and Access Management (IAM) policy, which specifies access
|
|
2579
2688
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
|
2580
2689
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
|
@@ -3212,8 +3321,7 @@ module Google
|
|
|
3212
3321
|
|
|
3213
3322
|
# Output only. All the metadata information that is used internally to serve the
|
|
3214
3323
|
# resource. For example: timestamps, flags, status fields, etc. The format of
|
|
3215
|
-
# this field is a JSON string.
|
|
3216
|
-
# dataform/v2main/data_pipelines.proto:ReleaseConfig)
|
|
3324
|
+
# this field is a JSON string.
|
|
3217
3325
|
# Corresponds to the JSON property `internalMetadata`
|
|
3218
3326
|
# @return [String]
|
|
3219
3327
|
attr_accessor :internal_metadata
|
|
@@ -3242,8 +3350,9 @@ module Google
|
|
|
3242
3350
|
attr_accessor :release_compilation_result
|
|
3243
3351
|
|
|
3244
3352
|
# Optional. Specifies the time zone to be used when interpreting cron_schedule.
|
|
3245
|
-
# Must be a time zone name from the time zone database
|
|
3246
|
-
# wiki/List_of_tz_database_time_zones). If left unspecified, the default is
|
|
3353
|
+
# Must be a time zone name from the [time zone database](https://en.wikipedia.
|
|
3354
|
+
# org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is `
|
|
3355
|
+
# UTC`.
|
|
3247
3356
|
# Corresponds to the JSON property `timeZone`
|
|
3248
3357
|
# @return [String]
|
|
3249
3358
|
attr_accessor :time_zone
|
|
@@ -4073,8 +4182,9 @@ module Google
|
|
|
4073
4182
|
attr_accessor :release_config
|
|
4074
4183
|
|
|
4075
4184
|
# Optional. Specifies the time zone to be used when interpreting cron_schedule.
|
|
4076
|
-
# Must be a time zone name from the time zone database
|
|
4077
|
-
# wiki/List_of_tz_database_time_zones). If left unspecified, the default is
|
|
4185
|
+
# Must be a time zone name from the [time zone database](https://en.wikipedia.
|
|
4186
|
+
# org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is `
|
|
4187
|
+
# UTC`.
|
|
4078
4188
|
# Corresponds to the JSON property `timeZone`
|
|
4079
4189
|
# @return [String]
|
|
4080
4190
|
attr_accessor :time_zone
|
|
@@ -4144,6 +4254,11 @@ module Google
|
|
|
4144
4254
|
# @return [String]
|
|
4145
4255
|
attr_accessor :name
|
|
4146
4256
|
|
|
4257
|
+
# Defines the pipeline type and path within the Git repository.
|
|
4258
|
+
# Corresponds to the JSON property `pipelineConfig`
|
|
4259
|
+
# @return [Google::Apis::DataformV1::PipelineConfig]
|
|
4260
|
+
attr_accessor :pipeline_config
|
|
4261
|
+
|
|
4147
4262
|
# Metadata used to identify if a resource is user scoped.
|
|
4148
4263
|
# Corresponds to the JSON property `privateResourceMetadata`
|
|
4149
4264
|
# @return [Google::Apis::DataformV1::PrivateResourceMetadata]
|
|
@@ -4179,6 +4294,7 @@ module Google
|
|
|
4179
4294
|
@invocation_config = args[:invocation_config] if args.key?(:invocation_config)
|
|
4180
4295
|
@invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
|
|
4181
4296
|
@name = args[:name] if args.key?(:name)
|
|
4297
|
+
@pipeline_config = args[:pipeline_config] if args.key?(:pipeline_config)
|
|
4182
4298
|
@private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
|
|
4183
4299
|
@resolved_compilation_result = args[:resolved_compilation_result] if args.key?(:resolved_compilation_result)
|
|
4184
4300
|
@state = args[:state] if args.key?(:state)
|
|
@@ -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.12.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260802"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -304,6 +304,18 @@ module Google
|
|
|
304
304
|
include Google::Apis::Core::JsonObjectSupport
|
|
305
305
|
end
|
|
306
306
|
|
|
307
|
+
class GcsRepositorySnapshotDestination
|
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
309
|
+
|
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
311
|
+
end
|
|
312
|
+
|
|
313
|
+
class GcsRepositorySnapshotMetadata
|
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
315
|
+
|
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
317
|
+
end
|
|
318
|
+
|
|
307
319
|
class GitRemoteSettings
|
|
308
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
309
321
|
|
|
@@ -496,6 +508,12 @@ module Google
|
|
|
496
508
|
include Google::Apis::Core::JsonObjectSupport
|
|
497
509
|
end
|
|
498
510
|
|
|
511
|
+
class PipelineConfig
|
|
512
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
513
|
+
|
|
514
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
515
|
+
end
|
|
516
|
+
|
|
499
517
|
class Policy
|
|
500
518
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
501
519
|
|
|
@@ -917,6 +935,8 @@ module Google
|
|
|
917
935
|
property :default_notebook_runtime_options, as: 'defaultNotebookRuntimeOptions', class: Google::Apis::DataformV1::NotebookRuntimeOptions, decorator: Google::Apis::DataformV1::NotebookRuntimeOptions::Representation
|
|
918
936
|
|
|
919
937
|
property :default_schema, as: 'defaultSchema'
|
|
938
|
+
property :pipeline_config, as: 'pipelineConfig', class: Google::Apis::DataformV1::PipelineConfig, decorator: Google::Apis::DataformV1::PipelineConfig::Representation
|
|
939
|
+
|
|
920
940
|
property :schema_suffix, as: 'schemaSuffix'
|
|
921
941
|
property :table_prefix, as: 'tablePrefix'
|
|
922
942
|
hash :vars, as: 'vars'
|
|
@@ -1016,6 +1036,8 @@ module Google
|
|
|
1016
1036
|
property :data_encryption_state, as: 'dataEncryptionState', class: Google::Apis::DataformV1::DataEncryptionState, decorator: Google::Apis::DataformV1::DataEncryptionState::Representation
|
|
1017
1037
|
|
|
1018
1038
|
property :dataform_core_version, as: 'dataformCoreVersion'
|
|
1039
|
+
property :gcs_repository_snapshot_metadata, as: 'gcsRepositorySnapshotMetadata', class: Google::Apis::DataformV1::GcsRepositorySnapshotMetadata, decorator: Google::Apis::DataformV1::GcsRepositorySnapshotMetadata::Representation
|
|
1040
|
+
|
|
1019
1041
|
property :git_commitish, as: 'gitCommitish'
|
|
1020
1042
|
property :internal_metadata, as: 'internalMetadata'
|
|
1021
1043
|
property :name, as: 'name'
|
|
@@ -1256,6 +1278,22 @@ module Google
|
|
|
1256
1278
|
end
|
|
1257
1279
|
end
|
|
1258
1280
|
|
|
1281
|
+
class GcsRepositorySnapshotDestination
|
|
1282
|
+
# @private
|
|
1283
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1284
|
+
property :repository_snapshot_uri, as: 'repositorySnapshotUri'
|
|
1285
|
+
end
|
|
1286
|
+
end
|
|
1287
|
+
|
|
1288
|
+
class GcsRepositorySnapshotMetadata
|
|
1289
|
+
# @private
|
|
1290
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1291
|
+
property :crc32c_checksum, as: 'crc32cChecksum'
|
|
1292
|
+
property :generation, :numeric_string => true, as: 'generation'
|
|
1293
|
+
property :repository_snapshot_uri, as: 'repositorySnapshotUri'
|
|
1294
|
+
end
|
|
1295
|
+
end
|
|
1296
|
+
|
|
1259
1297
|
class GitRemoteSettings
|
|
1260
1298
|
# @private
|
|
1261
1299
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1301,6 +1339,8 @@ module Google
|
|
|
1301
1339
|
class InstallNpmPackagesRequest
|
|
1302
1340
|
# @private
|
|
1303
1341
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1342
|
+
property :pipeline_config, as: 'pipelineConfig', class: Google::Apis::DataformV1::PipelineConfig, decorator: Google::Apis::DataformV1::PipelineConfig::Representation
|
|
1343
|
+
|
|
1304
1344
|
end
|
|
1305
1345
|
end
|
|
1306
1346
|
|
|
@@ -1506,6 +1546,7 @@ module Google
|
|
|
1506
1546
|
# @private
|
|
1507
1547
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1508
1548
|
property :contents, as: 'contents'
|
|
1549
|
+
property :file_path, as: 'filePath'
|
|
1509
1550
|
property :job_id, as: 'jobId'
|
|
1510
1551
|
end
|
|
1511
1552
|
end
|
|
@@ -1515,6 +1556,8 @@ module Google
|
|
|
1515
1556
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1516
1557
|
property :ai_platform_notebook_runtime_template, as: 'aiPlatformNotebookRuntimeTemplate'
|
|
1517
1558
|
property :gcs_output_bucket, as: 'gcsOutputBucket'
|
|
1559
|
+
property :gcs_repository_snapshot_destination, as: 'gcsRepositorySnapshotDestination', class: Google::Apis::DataformV1::GcsRepositorySnapshotDestination, decorator: Google::Apis::DataformV1::GcsRepositorySnapshotDestination::Representation
|
|
1560
|
+
|
|
1518
1561
|
end
|
|
1519
1562
|
end
|
|
1520
1563
|
|
|
@@ -1557,6 +1600,14 @@ module Google
|
|
|
1557
1600
|
end
|
|
1558
1601
|
end
|
|
1559
1602
|
|
|
1603
|
+
class PipelineConfig
|
|
1604
|
+
# @private
|
|
1605
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1606
|
+
property :path, as: 'path'
|
|
1607
|
+
property :pipeline_type, as: 'pipelineType'
|
|
1608
|
+
end
|
|
1609
|
+
end
|
|
1610
|
+
|
|
1560
1611
|
class Policy
|
|
1561
1612
|
# @private
|
|
1562
1613
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1996,6 +2047,8 @@ module Google
|
|
|
1996
2047
|
property :invocation_timing, as: 'invocationTiming', class: Google::Apis::DataformV1::Interval, decorator: Google::Apis::DataformV1::Interval::Representation
|
|
1997
2048
|
|
|
1998
2049
|
property :name, as: 'name'
|
|
2050
|
+
property :pipeline_config, as: 'pipelineConfig', class: Google::Apis::DataformV1::PipelineConfig, decorator: Google::Apis::DataformV1::PipelineConfig::Representation
|
|
2051
|
+
|
|
1999
2052
|
property :private_resource_metadata, as: 'privateResourceMetadata', class: Google::Apis::DataformV1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1::PrivateResourceMetadata::Representation
|
|
2000
2053
|
|
|
2001
2054
|
property :resolved_compilation_result, as: 'resolvedCompilationResult'
|
|
@@ -1400,8 +1400,7 @@ module Google
|
|
|
1400
1400
|
|
|
1401
1401
|
# Fetches a single CompilationResult.
|
|
1402
1402
|
# @param [String] name
|
|
1403
|
-
# Required. The compilation result's name.
|
|
1404
|
-
# google/cloud/dataform/v2main/data_pipelines.proto:GetCompilationResultRequest)
|
|
1403
|
+
# Required. The compilation result's name.
|
|
1405
1404
|
# @param [String] fields
|
|
1406
1405
|
# Selector specifying which fields to include in a partial response.
|
|
1407
1406
|
# @param [String] quota_user
|
|
@@ -1434,8 +1433,7 @@ module Google
|
|
|
1434
1433
|
# Required. The repository in which to list compilation results. Must be in the
|
|
1435
1434
|
# format `projects/*/locations/*/repositories/*`.
|
|
1436
1435
|
# @param [String] filter
|
|
1437
|
-
# Optional. Filter for the returned list.
|
|
1438
|
-
# cloud/dataform/v2main/data_pipelines.proto:ListCompilationResultsRequest)
|
|
1436
|
+
# Optional. Filter for the returned list.
|
|
1439
1437
|
# @param [String] order_by
|
|
1440
1438
|
# Optional. This field only supports ordering by `name` and `create_time`. If
|
|
1441
1439
|
# unspecified, the server will choose the ordering. If specified, the default
|
|
@@ -1532,9 +1530,7 @@ module Google
|
|
|
1532
1530
|
# @param [Google::Apis::DataformV1::ReleaseConfig] release_config_object
|
|
1533
1531
|
# @param [String] release_config_id
|
|
1534
1532
|
# Required. The ID to use for the release config, which will become the final
|
|
1535
|
-
# component of the release config's resource name.
|
|
1536
|
-
# google3/google/cloud/dataform/v2main/data_pipelines.proto:
|
|
1537
|
-
# CreateReleaseConfigRequest)
|
|
1533
|
+
# component of the release config's resource name.
|
|
1538
1534
|
# @param [String] fields
|
|
1539
1535
|
# Selector specifying which fields to include in a partial response.
|
|
1540
1536
|
# @param [String] quota_user
|
|
@@ -1567,8 +1563,7 @@ module Google
|
|
|
1567
1563
|
|
|
1568
1564
|
# Deletes a single ReleaseConfig.
|
|
1569
1565
|
# @param [String] name
|
|
1570
|
-
# Required. The release config's name.
|
|
1571
|
-
# cloud/dataform/v2main/data_pipelines.proto:DeleteReleaseConfigRequest)
|
|
1566
|
+
# Required. The release config's name.
|
|
1572
1567
|
# @param [String] fields
|
|
1573
1568
|
# Selector specifying which fields to include in a partial response.
|
|
1574
1569
|
# @param [String] quota_user
|
|
@@ -1598,8 +1593,7 @@ module Google
|
|
|
1598
1593
|
|
|
1599
1594
|
# Fetches a single ReleaseConfig.
|
|
1600
1595
|
# @param [String] name
|
|
1601
|
-
# Required. The release config's name.
|
|
1602
|
-
# cloud/dataform/v2main/data_pipelines.proto:GetReleaseConfigRequest)
|
|
1596
|
+
# Required. The release config's name.
|
|
1603
1597
|
# @param [String] fields
|
|
1604
1598
|
# Selector specifying which fields to include in a partial response.
|
|
1605
1599
|
# @param [String] quota_user
|
|
@@ -1639,9 +1633,7 @@ module Google
|
|
|
1639
1633
|
# Optional. Page token received from a previous `ListReleaseConfigs` call.
|
|
1640
1634
|
# Provide this to retrieve the subsequent page. When paginating, all other
|
|
1641
1635
|
# parameters provided to `ListReleaseConfigs`, with the exception of `page_size`,
|
|
1642
|
-
# must match the call that provided the page token.
|
|
1643
|
-
# google3/google/cloud/dataform/v2main/data_pipelines.proto:
|
|
1644
|
-
# ListReleaseConfigsRequest)
|
|
1636
|
+
# must match the call that provided the page token.
|
|
1645
1637
|
# @param [String] fields
|
|
1646
1638
|
# Selector specifying which fields to include in a partial response.
|
|
1647
1639
|
# @param [String] quota_user
|
|
@@ -3252,9 +3244,9 @@ module Google
|
|
|
3252
3244
|
# display_name` (default), `create_time`, `last_modified_time`. Examples: * `
|
|
3253
3245
|
# orderBy="display_name"` * `orderBy="display_name desc"`
|
|
3254
3246
|
# @param [Fixnum] page_size
|
|
3255
|
-
# Optional. Maximum number of TeamFolders to return. The server may return
|
|
3256
|
-
# items than requested. If unspecified, the server will pick a default of
|
|
3257
|
-
# page_size = 50.
|
|
3247
|
+
# Optional. Maximum number of `TeamFolders` to return. The server may return
|
|
3248
|
+
# fewer items than requested. If unspecified, the server will pick a default of `
|
|
3249
|
+
# page_size` = 50.
|
|
3258
3250
|
# @param [String] page_token
|
|
3259
3251
|
# Optional. Page token received from a previous `SearchTeamFolders` call.
|
|
3260
3252
|
# 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_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.12.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.12.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:
|