google-apis-dataplex_v1 0.13.0 → 0.14.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: a156c23c2e72613c1f78504cedae5038d140fcc296376da5434ce9ff5b45ecb4
|
4
|
+
data.tar.gz: '04935fb92de9736332a171cc035e31d2644c3691bb34b14245ac4b3544b7c905'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7401894a6d9b0167927aac45e3173b2191aad4729e1fb3f4ebba2ab5c017dedbc31615844972e05a07c4b199b379bae97c2cec4cd247c6c5dc16844b6d8688cb
|
7
|
+
data.tar.gz: ea2384e501adb0c50a37cc4c53586c4d105e6438d6f66792787820fbc0bcb6e3c27206c850df6e36b113a1b31c35cfba735320f040f7530c3a27dea0c690b29f
|
data/CHANGELOG.md
CHANGED
@@ -2633,6 +2633,11 @@ module Google
|
|
2633
2633
|
# @return [String]
|
2634
2634
|
attr_accessor :name
|
2635
2635
|
|
2636
|
+
# Config for running scheduled notebooks.
|
2637
|
+
# Corresponds to the JSON property `notebook`
|
2638
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskNotebookTaskConfig]
|
2639
|
+
attr_accessor :notebook
|
2640
|
+
|
2636
2641
|
# User-specified config for running a Spark task.
|
2637
2642
|
# Corresponds to the JSON property `spark`
|
2638
2643
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig]
|
@@ -2672,6 +2677,7 @@ module Google
|
|
2672
2677
|
@execution_status = args[:execution_status] if args.key?(:execution_status)
|
2673
2678
|
@labels = args[:labels] if args.key?(:labels)
|
2674
2679
|
@name = args[:name] if args.key?(:name)
|
2680
|
+
@notebook = args[:notebook] if args.key?(:notebook)
|
2675
2681
|
@spark = args[:spark] if args.key?(:spark)
|
2676
2682
|
@state = args[:state] if args.key?(:state)
|
2677
2683
|
@trigger_spec = args[:trigger_spec] if args.key?(:trigger_spec)
|
@@ -2896,6 +2902,47 @@ module Google
|
|
2896
2902
|
end
|
2897
2903
|
end
|
2898
2904
|
|
2905
|
+
# Config for running scheduled notebooks.
|
2906
|
+
class GoogleCloudDataplexV1TaskNotebookTaskConfig
|
2907
|
+
include Google::Apis::Core::Hashable
|
2908
|
+
|
2909
|
+
# Optional. GCS URIs of archives to be extracted into the working directory of
|
2910
|
+
# each executor. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
|
2911
|
+
# Corresponds to the JSON property `archiveUris`
|
2912
|
+
# @return [Array<String>]
|
2913
|
+
attr_accessor :archive_uris
|
2914
|
+
|
2915
|
+
# Optional. GCS URIs of files to be placed in the working directory of each
|
2916
|
+
# executor.
|
2917
|
+
# Corresponds to the JSON property `fileUris`
|
2918
|
+
# @return [Array<String>]
|
2919
|
+
attr_accessor :file_uris
|
2920
|
+
|
2921
|
+
# Configuration for the underlying infrastructure used to run workloads.
|
2922
|
+
# Corresponds to the JSON property `infrastructureSpec`
|
2923
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpec]
|
2924
|
+
attr_accessor :infrastructure_spec
|
2925
|
+
|
2926
|
+
# Required. Path to input notebook. This can be the GCS URI of the notebook file
|
2927
|
+
# or the path to a Notebook Content. The execution args are accessible as
|
2928
|
+
# environment variables (TASK_key=value).
|
2929
|
+
# Corresponds to the JSON property `notebook`
|
2930
|
+
# @return [String]
|
2931
|
+
attr_accessor :notebook
|
2932
|
+
|
2933
|
+
def initialize(**args)
|
2934
|
+
update!(**args)
|
2935
|
+
end
|
2936
|
+
|
2937
|
+
# Update properties of this object
|
2938
|
+
def update!(**args)
|
2939
|
+
@archive_uris = args[:archive_uris] if args.key?(:archive_uris)
|
2940
|
+
@file_uris = args[:file_uris] if args.key?(:file_uris)
|
2941
|
+
@infrastructure_spec = args[:infrastructure_spec] if args.key?(:infrastructure_spec)
|
2942
|
+
@notebook = args[:notebook] if args.key?(:notebook)
|
2943
|
+
end
|
2944
|
+
end
|
2945
|
+
|
2899
2946
|
# User-specified config for running a Spark task.
|
2900
2947
|
class GoogleCloudDataplexV1TaskSparkTaskConfig
|
2901
2948
|
include Google::Apis::Core::Hashable
|
@@ -3433,22 +3480,23 @@ module Google
|
|
3433
3480
|
# members can have the following values: allUsers: A special identifier that
|
3434
3481
|
# represents anyone who is on the internet; with or without a Google account.
|
3435
3482
|
# allAuthenticatedUsers: A special identifier that represents anyone who is
|
3436
|
-
# authenticated with a Google account or a service account.
|
3437
|
-
#
|
3438
|
-
#
|
3439
|
-
#
|
3440
|
-
#
|
3441
|
-
#
|
3442
|
-
# kubernetes-
|
3443
|
-
#
|
3444
|
-
#
|
3445
|
-
#
|
3446
|
-
#
|
3447
|
-
#
|
3448
|
-
#
|
3449
|
-
#
|
3450
|
-
#
|
3451
|
-
#
|
3483
|
+
# authenticated with a Google account or a service account. Does not include
|
3484
|
+
# identities that come from external identity providers (IdPs) through identity
|
3485
|
+
# federation. user:`emailid`: An email address that represents a specific Google
|
3486
|
+
# account. For example, alice@example.com . serviceAccount:`emailid`: An email
|
3487
|
+
# address that represents a Google service account. For example, my-other-app@
|
3488
|
+
# appspot.gserviceaccount.com. serviceAccount:`projectid`.svc.id.goog[`namespace`
|
3489
|
+
# /`kubernetes-sa`]: An identifier for a Kubernetes service account (https://
|
3490
|
+
# cloud.google.com/kubernetes-engine/docs/how-to/kubernetes-service-accounts).
|
3491
|
+
# For example, my-project.svc.id.goog[my-namespace/my-kubernetes-sa]. group:`
|
3492
|
+
# emailid`: An email address that represents a Google group. For example, admins@
|
3493
|
+
# example.com. deleted:user:`emailid`?uid=`uniqueid`: An email address (plus
|
3494
|
+
# unique identifier) representing a user that has been recently deleted. For
|
3495
|
+
# example, alice@example.com?uid=123456789012345678901. If the user is recovered,
|
3496
|
+
# this value reverts to user:`emailid` and the recovered user retains the role
|
3497
|
+
# in the binding. deleted:serviceAccount:`emailid`?uid=`uniqueid`: An email
|
3498
|
+
# address (plus unique identifier) representing a service account that has been
|
3499
|
+
# recently deleted. For example, my-other-app@appspot.gserviceaccount.com?uid=
|
3452
3500
|
# 123456789012345678901. If the service account is undeleted, this value reverts
|
3453
3501
|
# to serviceAccount:`emailid` and the undeleted service account retains the role
|
3454
3502
|
# in the binding. deleted:group:`emailid`?uid=`uniqueid`: An email address (plus
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DataplexV1
|
18
18
|
# Version of the google-apis-dataplex_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220920"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -460,6 +460,12 @@ module Google
|
|
460
460
|
include Google::Apis::Core::JsonObjectSupport
|
461
461
|
end
|
462
462
|
|
463
|
+
class GoogleCloudDataplexV1TaskNotebookTaskConfig
|
464
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
|
+
|
466
|
+
include Google::Apis::Core::JsonObjectSupport
|
467
|
+
end
|
468
|
+
|
463
469
|
class GoogleCloudDataplexV1TaskSparkTaskConfig
|
464
470
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
465
471
|
|
@@ -1304,6 +1310,8 @@ module Google
|
|
1304
1310
|
|
1305
1311
|
hash :labels, as: 'labels'
|
1306
1312
|
property :name, as: 'name'
|
1313
|
+
property :notebook, as: 'notebook', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskNotebookTaskConfig, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskNotebookTaskConfig::Representation
|
1314
|
+
|
1307
1315
|
property :spark, as: 'spark', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig::Representation
|
1308
1316
|
|
1309
1317
|
property :state, as: 'state'
|
@@ -1373,6 +1381,17 @@ module Google
|
|
1373
1381
|
end
|
1374
1382
|
end
|
1375
1383
|
|
1384
|
+
class GoogleCloudDataplexV1TaskNotebookTaskConfig
|
1385
|
+
# @private
|
1386
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1387
|
+
collection :archive_uris, as: 'archiveUris'
|
1388
|
+
collection :file_uris, as: 'fileUris'
|
1389
|
+
property :infrastructure_spec, as: 'infrastructureSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpec::Representation
|
1390
|
+
|
1391
|
+
property :notebook, as: 'notebook'
|
1392
|
+
end
|
1393
|
+
end
|
1394
|
+
|
1376
1395
|
class GoogleCloudDataplexV1TaskSparkTaskConfig
|
1377
1396
|
# @private
|
1378
1397
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dataplex_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.14.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: 2022-09-
|
11
|
+
date: 2022-09-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.9.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.9.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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-dataplex_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dataplex_v1/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataplex_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|