google-apis-dataform_v1beta1 0.60.0 → 0.61.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: fb2b34b1d4e8605a619a8086d445a718938f275f3c69ed32598247df1d58cd66
|
|
4
|
+
data.tar.gz: d7450f15e48283061c1d4125ebbcb41681db25be15e1f10dfc505cec06e515d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7222efffd691d6ab6e6a775f47efef139d8dfb218ebbd08d74557acc730455d2e198a46210c7d581405ad43dc2592a097e6d590b5af2479dba365112afed514
|
|
7
|
+
data.tar.gz: f542d8b21f014eb1a68fc962893ada8ef15ef191e5e6c2b690f214790481b2616e9650d5666d482f31a19e69849a8215df9fce37ff1259f776f866054e18398e
|
data/CHANGELOG.md
CHANGED
|
@@ -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::DataformV1beta1::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::DataformV1beta1::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)
|
|
@@ -1557,6 +1569,59 @@ module Google
|
|
|
1557
1569
|
end
|
|
1558
1570
|
end
|
|
1559
1571
|
|
|
1572
|
+
# Configures the destination for a repository snapshot.
|
|
1573
|
+
class GcsRepositorySnapshotDestination
|
|
1574
|
+
include Google::Apis::Core::Hashable
|
|
1575
|
+
|
|
1576
|
+
# Optional. The Google Cloud Storage destination to upload the repository
|
|
1577
|
+
# snapshot to. Format: `gs://bucket-name/path/`.
|
|
1578
|
+
# Corresponds to the JSON property `repositorySnapshotUri`
|
|
1579
|
+
# @return [String]
|
|
1580
|
+
attr_accessor :repository_snapshot_uri
|
|
1581
|
+
|
|
1582
|
+
def initialize(**args)
|
|
1583
|
+
update!(**args)
|
|
1584
|
+
end
|
|
1585
|
+
|
|
1586
|
+
# Update properties of this object
|
|
1587
|
+
def update!(**args)
|
|
1588
|
+
@repository_snapshot_uri = args[:repository_snapshot_uri] if args.key?(:repository_snapshot_uri)
|
|
1589
|
+
end
|
|
1590
|
+
end
|
|
1591
|
+
|
|
1592
|
+
# Metadata about a repository snapshot stored in Google Cloud Storage.
|
|
1593
|
+
class GcsRepositorySnapshotMetadata
|
|
1594
|
+
include Google::Apis::Core::Hashable
|
|
1595
|
+
|
|
1596
|
+
# Output only. The crc32c checksum of the repository snapshot, big-endian base64
|
|
1597
|
+
# encoded.
|
|
1598
|
+
# Corresponds to the JSON property `crc32cChecksum`
|
|
1599
|
+
# @return [String]
|
|
1600
|
+
attr_accessor :crc32c_checksum
|
|
1601
|
+
|
|
1602
|
+
# Output only. The generation number of the Cloud Storage object. See https://
|
|
1603
|
+
# cloud.google.com/storage/docs/metadata#generation-number.
|
|
1604
|
+
# Corresponds to the JSON property `generation`
|
|
1605
|
+
# @return [Fixnum]
|
|
1606
|
+
attr_accessor :generation
|
|
1607
|
+
|
|
1608
|
+
# Output only. The Google Cloud Storage URI of the repository snapshot.
|
|
1609
|
+
# Corresponds to the JSON property `repositorySnapshotUri`
|
|
1610
|
+
# @return [String]
|
|
1611
|
+
attr_accessor :repository_snapshot_uri
|
|
1612
|
+
|
|
1613
|
+
def initialize(**args)
|
|
1614
|
+
update!(**args)
|
|
1615
|
+
end
|
|
1616
|
+
|
|
1617
|
+
# Update properties of this object
|
|
1618
|
+
def update!(**args)
|
|
1619
|
+
@crc32c_checksum = args[:crc32c_checksum] if args.key?(:crc32c_checksum)
|
|
1620
|
+
@generation = args[:generation] if args.key?(:generation)
|
|
1621
|
+
@repository_snapshot_uri = args[:repository_snapshot_uri] if args.key?(:repository_snapshot_uri)
|
|
1622
|
+
end
|
|
1623
|
+
end
|
|
1624
|
+
|
|
1560
1625
|
# Controls Git remote configuration for a repository.
|
|
1561
1626
|
class GitRemoteSettings
|
|
1562
1627
|
include Google::Apis::Core::Hashable
|
|
@@ -1729,12 +1794,18 @@ module Google
|
|
|
1729
1794
|
class InstallNpmPackagesRequest
|
|
1730
1795
|
include Google::Apis::Core::Hashable
|
|
1731
1796
|
|
|
1797
|
+
# Defines the pipeline type and path within the Git repository.
|
|
1798
|
+
# Corresponds to the JSON property `pipelineConfig`
|
|
1799
|
+
# @return [Google::Apis::DataformV1beta1::PipelineConfig]
|
|
1800
|
+
attr_accessor :pipeline_config
|
|
1801
|
+
|
|
1732
1802
|
def initialize(**args)
|
|
1733
1803
|
update!(**args)
|
|
1734
1804
|
end
|
|
1735
1805
|
|
|
1736
1806
|
# Update properties of this object
|
|
1737
1807
|
def update!(**args)
|
|
1808
|
+
@pipeline_config = args[:pipeline_config] if args.key?(:pipeline_config)
|
|
1738
1809
|
end
|
|
1739
1810
|
end
|
|
1740
1811
|
|
|
@@ -2381,6 +2452,11 @@ module Google
|
|
|
2381
2452
|
# @return [String]
|
|
2382
2453
|
attr_accessor :contents
|
|
2383
2454
|
|
|
2455
|
+
# Output only. The path to the notebook file in the repository.
|
|
2456
|
+
# Corresponds to the JSON property `filePath`
|
|
2457
|
+
# @return [String]
|
|
2458
|
+
attr_accessor :file_path
|
|
2459
|
+
|
|
2384
2460
|
# Output only. The ID of the Gemini Enterprise Agent Platform job that executed
|
|
2385
2461
|
# the notebook in contents and also the ID used for the outputs created in
|
|
2386
2462
|
# Google Cloud Storage buckets. Only set once the job has started to run.
|
|
@@ -2395,6 +2471,7 @@ module Google
|
|
|
2395
2471
|
# Update properties of this object
|
|
2396
2472
|
def update!(**args)
|
|
2397
2473
|
@contents = args[:contents] if args.key?(:contents)
|
|
2474
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
2398
2475
|
@job_id = args[:job_id] if args.key?(:job_id)
|
|
2399
2476
|
end
|
|
2400
2477
|
end
|
|
@@ -2417,6 +2494,11 @@ module Google
|
|
|
2417
2494
|
# @return [String]
|
|
2418
2495
|
attr_accessor :gcs_output_bucket
|
|
2419
2496
|
|
|
2497
|
+
# Configures the destination for a repository snapshot.
|
|
2498
|
+
# Corresponds to the JSON property `gcsRepositorySnapshotDestination`
|
|
2499
|
+
# @return [Google::Apis::DataformV1beta1::GcsRepositorySnapshotDestination]
|
|
2500
|
+
attr_accessor :gcs_repository_snapshot_destination
|
|
2501
|
+
|
|
2420
2502
|
def initialize(**args)
|
|
2421
2503
|
update!(**args)
|
|
2422
2504
|
end
|
|
@@ -2425,6 +2507,7 @@ module Google
|
|
|
2425
2507
|
def update!(**args)
|
|
2426
2508
|
@ai_platform_notebook_runtime_template = args[:ai_platform_notebook_runtime_template] if args.key?(:ai_platform_notebook_runtime_template)
|
|
2427
2509
|
@gcs_output_bucket = args[:gcs_output_bucket] if args.key?(:gcs_output_bucket)
|
|
2510
|
+
@gcs_repository_snapshot_destination = args[:gcs_repository_snapshot_destination] if args.key?(:gcs_repository_snapshot_destination)
|
|
2428
2511
|
end
|
|
2429
2512
|
end
|
|
2430
2513
|
|
|
@@ -2600,6 +2683,33 @@ module Google
|
|
|
2600
2683
|
end
|
|
2601
2684
|
end
|
|
2602
2685
|
|
|
2686
|
+
# Defines the pipeline type and path within the Git repository.
|
|
2687
|
+
class PipelineConfig
|
|
2688
|
+
include Google::Apis::Core::Hashable
|
|
2689
|
+
|
|
2690
|
+
# Required. The relative path within the Git repository where the pipeline is
|
|
2691
|
+
# defined. For example, for a Dataform pipeline, it is a path to the folder
|
|
2692
|
+
# where `workflow_settings.yaml` or `dataform.json` is located.
|
|
2693
|
+
# Corresponds to the JSON property `path`
|
|
2694
|
+
# @return [String]
|
|
2695
|
+
attr_accessor :path
|
|
2696
|
+
|
|
2697
|
+
# Required. The type of the pipeline.
|
|
2698
|
+
# Corresponds to the JSON property `pipelineType`
|
|
2699
|
+
# @return [String]
|
|
2700
|
+
attr_accessor :pipeline_type
|
|
2701
|
+
|
|
2702
|
+
def initialize(**args)
|
|
2703
|
+
update!(**args)
|
|
2704
|
+
end
|
|
2705
|
+
|
|
2706
|
+
# Update properties of this object
|
|
2707
|
+
def update!(**args)
|
|
2708
|
+
@path = args[:path] if args.key?(:path)
|
|
2709
|
+
@pipeline_type = args[:pipeline_type] if args.key?(:pipeline_type)
|
|
2710
|
+
end
|
|
2711
|
+
end
|
|
2712
|
+
|
|
2603
2713
|
# An Identity and Access Management (IAM) policy, which specifies access
|
|
2604
2714
|
# controls for Google Cloud resources. A `Policy` is a collection of `bindings`.
|
|
2605
2715
|
# A `binding` binds one or more `members`, or principals, to a single `role`.
|
|
@@ -3266,8 +3376,9 @@ module Google
|
|
|
3266
3376
|
attr_accessor :release_compilation_result
|
|
3267
3377
|
|
|
3268
3378
|
# Optional. Specifies the time zone to be used when interpreting cron_schedule.
|
|
3269
|
-
# Must be a time zone name from the time zone database
|
|
3270
|
-
# wiki/List_of_tz_database_time_zones). If left unspecified, the default is
|
|
3379
|
+
# Must be a time zone name from the [time zone database](https://en.wikipedia.
|
|
3380
|
+
# org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is `
|
|
3381
|
+
# UTC`.
|
|
3271
3382
|
# Corresponds to the JSON property `timeZone`
|
|
3272
3383
|
# @return [String]
|
|
3273
3384
|
attr_accessor :time_zone
|
|
@@ -4164,8 +4275,9 @@ module Google
|
|
|
4164
4275
|
attr_accessor :release_config
|
|
4165
4276
|
|
|
4166
4277
|
# Optional. Specifies the time zone to be used when interpreting cron_schedule.
|
|
4167
|
-
# Must be a time zone name from the time zone database
|
|
4168
|
-
# wiki/List_of_tz_database_time_zones). If left unspecified, the default is
|
|
4278
|
+
# Must be a time zone name from the [time zone database](https://en.wikipedia.
|
|
4279
|
+
# org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is `
|
|
4280
|
+
# UTC`.
|
|
4169
4281
|
# Corresponds to the JSON property `timeZone`
|
|
4170
4282
|
# @return [String]
|
|
4171
4283
|
attr_accessor :time_zone
|
|
@@ -4241,6 +4353,11 @@ module Google
|
|
|
4241
4353
|
# @return [String]
|
|
4242
4354
|
attr_accessor :name
|
|
4243
4355
|
|
|
4356
|
+
# Defines the pipeline type and path within the Git repository.
|
|
4357
|
+
# Corresponds to the JSON property `pipelineConfig`
|
|
4358
|
+
# @return [Google::Apis::DataformV1beta1::PipelineConfig]
|
|
4359
|
+
attr_accessor :pipeline_config
|
|
4360
|
+
|
|
4244
4361
|
# Metadata used to identify if a resource is user scoped.
|
|
4245
4362
|
# Corresponds to the JSON property `privateResourceMetadata`
|
|
4246
4363
|
# @return [Google::Apis::DataformV1beta1::PrivateResourceMetadata]
|
|
@@ -4276,6 +4393,7 @@ module Google
|
|
|
4276
4393
|
@invocation_config = args[:invocation_config] if args.key?(:invocation_config)
|
|
4277
4394
|
@invocation_timing = args[:invocation_timing] if args.key?(:invocation_timing)
|
|
4278
4395
|
@name = args[:name] if args.key?(:name)
|
|
4396
|
+
@pipeline_config = args[:pipeline_config] if args.key?(:pipeline_config)
|
|
4279
4397
|
@private_resource_metadata = args[:private_resource_metadata] if args.key?(:private_resource_metadata)
|
|
4280
4398
|
@resolved_compilation_result = args[:resolved_compilation_result] if args.key?(:resolved_compilation_result)
|
|
4281
4399
|
@state = args[:state] if args.key?(:state)
|
|
@@ -4399,7 +4517,7 @@ module Google
|
|
|
4399
4517
|
|
|
4400
4518
|
# Optional. Minimum duration between two consecutive executions. If not
|
|
4401
4519
|
# specified, the workflow will be executed every time trigger conditions are met
|
|
4402
|
-
# and no ongoing workflow execution.
|
|
4520
|
+
# and there is no ongoing workflow execution.
|
|
4403
4521
|
# Corresponds to the JSON property `minExecutionDuration`
|
|
4404
4522
|
# @return [String]
|
|
4405
4523
|
attr_accessor :min_execution_duration
|
|
@@ -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.61.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
|
|
@@ -310,6 +310,18 @@ module Google
|
|
|
310
310
|
include Google::Apis::Core::JsonObjectSupport
|
|
311
311
|
end
|
|
312
312
|
|
|
313
|
+
class GcsRepositorySnapshotDestination
|
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
315
|
+
|
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
317
|
+
end
|
|
318
|
+
|
|
319
|
+
class GcsRepositorySnapshotMetadata
|
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
321
|
+
|
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
323
|
+
end
|
|
324
|
+
|
|
313
325
|
class GitRemoteSettings
|
|
314
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
315
327
|
|
|
@@ -502,6 +514,12 @@ module Google
|
|
|
502
514
|
include Google::Apis::Core::JsonObjectSupport
|
|
503
515
|
end
|
|
504
516
|
|
|
517
|
+
class PipelineConfig
|
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
519
|
+
|
|
520
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
521
|
+
end
|
|
522
|
+
|
|
505
523
|
class Policy
|
|
506
524
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
507
525
|
|
|
@@ -947,6 +965,8 @@ module Google
|
|
|
947
965
|
property :default_notebook_runtime_options, as: 'defaultNotebookRuntimeOptions', class: Google::Apis::DataformV1beta1::NotebookRuntimeOptions, decorator: Google::Apis::DataformV1beta1::NotebookRuntimeOptions::Representation
|
|
948
966
|
|
|
949
967
|
property :default_schema, as: 'defaultSchema'
|
|
968
|
+
property :pipeline_config, as: 'pipelineConfig', class: Google::Apis::DataformV1beta1::PipelineConfig, decorator: Google::Apis::DataformV1beta1::PipelineConfig::Representation
|
|
969
|
+
|
|
950
970
|
property :schema_suffix, as: 'schemaSuffix'
|
|
951
971
|
property :table_prefix, as: 'tablePrefix'
|
|
952
972
|
hash :vars, as: 'vars'
|
|
@@ -1046,6 +1066,8 @@ module Google
|
|
|
1046
1066
|
property :data_encryption_state, as: 'dataEncryptionState', class: Google::Apis::DataformV1beta1::DataEncryptionState, decorator: Google::Apis::DataformV1beta1::DataEncryptionState::Representation
|
|
1047
1067
|
|
|
1048
1068
|
property :dataform_core_version, as: 'dataformCoreVersion'
|
|
1069
|
+
property :gcs_repository_snapshot_metadata, as: 'gcsRepositorySnapshotMetadata', class: Google::Apis::DataformV1beta1::GcsRepositorySnapshotMetadata, decorator: Google::Apis::DataformV1beta1::GcsRepositorySnapshotMetadata::Representation
|
|
1070
|
+
|
|
1049
1071
|
property :git_commitish, as: 'gitCommitish'
|
|
1050
1072
|
property :internal_metadata, as: 'internalMetadata'
|
|
1051
1073
|
property :name, as: 'name'
|
|
@@ -1293,6 +1315,22 @@ module Google
|
|
|
1293
1315
|
end
|
|
1294
1316
|
end
|
|
1295
1317
|
|
|
1318
|
+
class GcsRepositorySnapshotDestination
|
|
1319
|
+
# @private
|
|
1320
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1321
|
+
property :repository_snapshot_uri, as: 'repositorySnapshotUri'
|
|
1322
|
+
end
|
|
1323
|
+
end
|
|
1324
|
+
|
|
1325
|
+
class GcsRepositorySnapshotMetadata
|
|
1326
|
+
# @private
|
|
1327
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1328
|
+
property :crc32c_checksum, as: 'crc32cChecksum'
|
|
1329
|
+
property :generation, :numeric_string => true, as: 'generation'
|
|
1330
|
+
property :repository_snapshot_uri, as: 'repositorySnapshotUri'
|
|
1331
|
+
end
|
|
1332
|
+
end
|
|
1333
|
+
|
|
1296
1334
|
class GitRemoteSettings
|
|
1297
1335
|
# @private
|
|
1298
1336
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1338,6 +1376,8 @@ module Google
|
|
|
1338
1376
|
class InstallNpmPackagesRequest
|
|
1339
1377
|
# @private
|
|
1340
1378
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1379
|
+
property :pipeline_config, as: 'pipelineConfig', class: Google::Apis::DataformV1beta1::PipelineConfig, decorator: Google::Apis::DataformV1beta1::PipelineConfig::Representation
|
|
1380
|
+
|
|
1341
1381
|
end
|
|
1342
1382
|
end
|
|
1343
1383
|
|
|
@@ -1543,6 +1583,7 @@ module Google
|
|
|
1543
1583
|
# @private
|
|
1544
1584
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1545
1585
|
property :contents, as: 'contents'
|
|
1586
|
+
property :file_path, as: 'filePath'
|
|
1546
1587
|
property :job_id, as: 'jobId'
|
|
1547
1588
|
end
|
|
1548
1589
|
end
|
|
@@ -1552,6 +1593,8 @@ module Google
|
|
|
1552
1593
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1553
1594
|
property :ai_platform_notebook_runtime_template, as: 'aiPlatformNotebookRuntimeTemplate'
|
|
1554
1595
|
property :gcs_output_bucket, as: 'gcsOutputBucket'
|
|
1596
|
+
property :gcs_repository_snapshot_destination, as: 'gcsRepositorySnapshotDestination', class: Google::Apis::DataformV1beta1::GcsRepositorySnapshotDestination, decorator: Google::Apis::DataformV1beta1::GcsRepositorySnapshotDestination::Representation
|
|
1597
|
+
|
|
1555
1598
|
end
|
|
1556
1599
|
end
|
|
1557
1600
|
|
|
@@ -1594,6 +1637,14 @@ module Google
|
|
|
1594
1637
|
end
|
|
1595
1638
|
end
|
|
1596
1639
|
|
|
1640
|
+
class PipelineConfig
|
|
1641
|
+
# @private
|
|
1642
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1643
|
+
property :path, as: 'path'
|
|
1644
|
+
property :pipeline_type, as: 'pipelineType'
|
|
1645
|
+
end
|
|
1646
|
+
end
|
|
1647
|
+
|
|
1597
1648
|
class Policy
|
|
1598
1649
|
# @private
|
|
1599
1650
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2053,6 +2104,8 @@ module Google
|
|
|
2053
2104
|
property :invocation_timing, as: 'invocationTiming', class: Google::Apis::DataformV1beta1::Interval, decorator: Google::Apis::DataformV1beta1::Interval::Representation
|
|
2054
2105
|
|
|
2055
2106
|
property :name, as: 'name'
|
|
2107
|
+
property :pipeline_config, as: 'pipelineConfig', class: Google::Apis::DataformV1beta1::PipelineConfig, decorator: Google::Apis::DataformV1beta1::PipelineConfig::Representation
|
|
2108
|
+
|
|
2056
2109
|
property :private_resource_metadata, as: 'privateResourceMetadata', class: Google::Apis::DataformV1beta1::PrivateResourceMetadata, decorator: Google::Apis::DataformV1beta1::PrivateResourceMetadata::Representation
|
|
2057
2110
|
|
|
2058
2111
|
property :resolved_compilation_result, as: 'resolvedCompilationResult'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-dataform_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.61.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataform_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataform_v1beta1/v0.61.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:
|