google-apis-dataplex_v1 0.1.0 → 0.4.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: 6196349661d1780e3d064e7d2efd93e28c148051f145671d5bb5165a7c46f281
|
4
|
+
data.tar.gz: 51dd32b3c1e1b8ad114c4997e06a686b27acd74cbc504fadc4950e681b031bdb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73fbc9573d4df11a618ef544abd84e35953012a2c790026760fe383cc0803a3bbdcd11817c1ee86013f081b37969cbed08c2ae92819bf93118655d9c6d76b028
|
7
|
+
data.tar.gz: 0f51825cd7b9ec6858d243aeb5b0cd13c681c8ad5c08f909384e408993e3c86f21571d23404a41e900a20b24beeaabb24e9b83579ae6a2129d9f7e8928c8ec5a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-dataplex_v1
|
2
2
|
|
3
|
+
### v0.4.0 (2022-05-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220502
|
6
|
+
|
7
|
+
### v0.3.0 (2022-04-07)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220328
|
10
|
+
|
11
|
+
### v0.2.0 (2022-03-06)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220223
|
14
|
+
|
3
15
|
### v0.1.0 (2022-02-15)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220208
|
@@ -25,8 +25,7 @@ module Google
|
|
25
25
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
26
26
|
# messages in your APIs. A typical example is to use it as the request or the
|
27
27
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
28
|
-
# protobuf.Empty) returns (google.protobuf.Empty); `
|
29
|
-
# Empty is empty JSON object ``.
|
28
|
+
# protobuf.Empty) returns (google.protobuf.Empty); `
|
30
29
|
class Empty
|
31
30
|
include Google::Apis::Core::Hashable
|
32
31
|
|
@@ -1051,6 +1050,12 @@ module Google
|
|
1051
1050
|
# @return [String]
|
1052
1051
|
attr_accessor :partition
|
1053
1052
|
|
1053
|
+
# The locations of the data items (e.g., a Cloud Storage objects) sampled for
|
1054
|
+
# metadata inference.
|
1055
|
+
# Corresponds to the JSON property `sampledDataLocations`
|
1056
|
+
# @return [Array<String>]
|
1057
|
+
attr_accessor :sampled_data_locations
|
1058
|
+
|
1054
1059
|
# The type of the containing entity resource.
|
1055
1060
|
# Corresponds to the JSON property `type`
|
1056
1061
|
# @return [String]
|
@@ -1064,6 +1069,7 @@ module Google
|
|
1064
1069
|
def update!(**args)
|
1065
1070
|
@entity = args[:entity] if args.key?(:entity)
|
1066
1071
|
@partition = args[:partition] if args.key?(:partition)
|
1072
|
+
@sampled_data_locations = args[:sampled_data_locations] if args.key?(:sampled_data_locations)
|
1067
1073
|
@type = args[:type] if args.key?(:type)
|
1068
1074
|
end
|
1069
1075
|
end
|
@@ -1114,13 +1120,13 @@ module Google
|
|
1114
1120
|
# @return [String]
|
1115
1121
|
attr_accessor :description
|
1116
1122
|
|
1117
|
-
# Optional. Display name must be shorter than or equal to
|
1123
|
+
# Optional. Display name must be shorter than or equal to 256 characters.
|
1118
1124
|
# Corresponds to the JSON property `displayName`
|
1119
1125
|
# @return [String]
|
1120
1126
|
attr_accessor :display_name
|
1121
1127
|
|
1122
|
-
# Optional. The etag
|
1123
|
-
#
|
1128
|
+
# Optional. The etag associated with the entity, which can be retrieved with a
|
1129
|
+
# GetEntity request. Required for update and delete requests.
|
1124
1130
|
# Corresponds to the JSON property `etag`
|
1125
1131
|
# @return [String]
|
1126
1132
|
attr_accessor :etag
|
@@ -1133,7 +1139,8 @@ module Google
|
|
1133
1139
|
# Required. A user-provided entity ID. It is mutable, and will be used as the
|
1134
1140
|
# published table name. Specifying a new ID in an update entity request will
|
1135
1141
|
# override the existing value. The ID must contain only letters (a-z, A-Z),
|
1136
|
-
# numbers (0-9), and underscores. Must begin with a letter
|
1142
|
+
# numbers (0-9), and underscores. Must begin with a letter and consist of 256 or
|
1143
|
+
# fewer characters.
|
1137
1144
|
# Corresponds to the JSON property `id`
|
1138
1145
|
# @return [String]
|
1139
1146
|
attr_accessor :id
|
@@ -2174,13 +2181,10 @@ module Google
|
|
2174
2181
|
# @return [String]
|
2175
2182
|
attr_accessor :location
|
2176
2183
|
|
2177
|
-
# Output only.
|
2178
|
-
#
|
2179
|
-
#
|
2180
|
-
#
|
2181
|
-
# "US%253ACA/CA%2523Sunnyvale". The final URL will be "https://.../partitions/US%
|
2182
|
-
# 253ACA/CA%2523Sunnyvale". The name field in the responses will always have the
|
2183
|
-
# encoded format.
|
2184
|
+
# Output only. Partition values used in the HTTP URL must be double encoded. For
|
2185
|
+
# example, url_encode(url_encode(value)) can be used to encode "US:CA/CA#
|
2186
|
+
# Sunnyvale so that the request URL ends with "/partitions/US%253ACA/CA%
|
2187
|
+
# 2523Sunnyvale". The name field in the response retains the encoded format.
|
2184
2188
|
# Corresponds to the JSON property `name`
|
2185
2189
|
# @return [String]
|
2186
2190
|
attr_accessor :name
|
@@ -2208,7 +2212,8 @@ module Google
|
|
2208
2212
|
class GoogleCloudDataplexV1Schema
|
2209
2213
|
include Google::Apis::Core::Hashable
|
2210
2214
|
|
2211
|
-
# Optional. The sequence of fields describing data in table entities.
|
2215
|
+
# Optional. The sequence of fields describing data in table entities. Note:
|
2216
|
+
# BigQuery SchemaFields are immutable.
|
2212
2217
|
# Corresponds to the JSON property `fields`
|
2213
2218
|
# @return [Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1SchemaSchemaField>]
|
2214
2219
|
attr_accessor :fields
|
@@ -2224,22 +2229,14 @@ module Google
|
|
2224
2229
|
# @return [String]
|
2225
2230
|
attr_accessor :partition_style
|
2226
2231
|
|
2227
|
-
# Required.
|
2228
|
-
#
|
2229
|
-
#
|
2230
|
-
#
|
2231
|
-
#
|
2232
|
-
#
|
2233
|
-
#
|
2234
|
-
#
|
2235
|
-
# actions based on that. - Set user_manage to true if you would like to fully
|
2236
|
-
# manage the entity schema by yourself. This is useful when you would like to
|
2237
|
-
# manually specify the schema for a table. In this case, the schema defined by
|
2238
|
-
# the user is guaranteed to be kept unchanged and would not be overwritten. But
|
2239
|
-
# this also means Dataplex will not provide schema evolution management for you.
|
2240
|
-
# Dataplex will still be able to manage partition registration (i.e., keeping
|
2241
|
-
# the list of partitions up to date) when Dataplex discovery is turned on and
|
2242
|
-
# user_managed is set to true.
|
2232
|
+
# Required. Set to true if user-managed or false if managed by Dataplex. The
|
2233
|
+
# default is false (managed by Dataplex). Set to falseto enable Dataplex
|
2234
|
+
# discovery to update the schema. including new data discovery, schema inference,
|
2235
|
+
# and schema evolution. Users retain the ability to input and edit the schema.
|
2236
|
+
# Dataplex treats schema input by the user as though produced by a previous
|
2237
|
+
# Dataplex discovery operation, and it will evolve the schema and take action
|
2238
|
+
# based on that treatment. Set to true to fully manage the entity schema. This
|
2239
|
+
# setting guarantees that Dataplex will not change schema fields.
|
2243
2240
|
# Corresponds to the JSON property `userManaged`
|
2244
2241
|
# @return [Boolean]
|
2245
2242
|
attr_accessor :user_managed
|
@@ -2260,12 +2257,13 @@ module Google
|
|
2260
2257
|
|
2261
2258
|
# Represents a key field within the entity's partition structure. You could have
|
2262
2259
|
# up to 20 partition fields, but only the first 10 partitions have the filtering
|
2263
|
-
# ability due to performance consideration.
|
2260
|
+
# ability due to performance consideration. Note: Partition fields are immutable.
|
2264
2261
|
class GoogleCloudDataplexV1SchemaPartitionField
|
2265
2262
|
include Google::Apis::Core::Hashable
|
2266
2263
|
|
2267
|
-
# Required. Partition name
|
2268
|
-
#
|
2264
|
+
# Required. Partition field name must consist of letters, numbers, and
|
2265
|
+
# underscores only, with a maximum of length of 256 characters, and must begin
|
2266
|
+
# with a letter or underscore..
|
2269
2267
|
# Corresponds to the JSON property `name`
|
2270
2268
|
# @return [String]
|
2271
2269
|
attr_accessor :name
|
@@ -2306,8 +2304,9 @@ module Google
|
|
2306
2304
|
# @return [String]
|
2307
2305
|
attr_accessor :mode
|
2308
2306
|
|
2309
|
-
# Required. The name of the field.
|
2310
|
-
#
|
2307
|
+
# Required. The name of the field. Must contain only letters, numbers and
|
2308
|
+
# underscores, with a maximum length of 767 characters, and must begin with a
|
2309
|
+
# letter or underscore.
|
2311
2310
|
# Corresponds to the JSON property `name`
|
2312
2311
|
# @return [String]
|
2313
2312
|
attr_accessor :name
|
@@ -2490,10 +2489,10 @@ module Google
|
|
2490
2489
|
attr_accessor :json
|
2491
2490
|
|
2492
2491
|
# Required. The mime type descriptor for the data. Must match the pattern `type`/
|
2493
|
-
# `subtype`. Supported values:
|
2494
|
-
# application/x-orc
|
2495
|
-
# subtypes`
|
2496
|
-
# audio
|
2492
|
+
# `subtype`. Supported values: application/x-parquet application/x-avro
|
2493
|
+
# application/x-orc application/x-tfrecord application/json application/`
|
2494
|
+
# subtypes` text/csv text/ image/`image subtype` video/`video subtype` audio/`
|
2495
|
+
# audio subtype`
|
2497
2496
|
# Corresponds to the JSON property `mimeType`
|
2498
2497
|
# @return [String]
|
2499
2498
|
attr_accessor :mime_type
|
@@ -2533,8 +2532,9 @@ module Google
|
|
2533
2532
|
# @return [Fixnum]
|
2534
2533
|
attr_accessor :header_rows
|
2535
2534
|
|
2536
|
-
# Optional. The character used to quote column values. Accepts '"'
|
2537
|
-
# Defaults to '"'
|
2535
|
+
# Optional. The character used to quote column values. Accepts '"' (double
|
2536
|
+
# quotation mark) or ''' (single quotation mark). Defaults to '"' (double
|
2537
|
+
# quotation mark) if unspecified.
|
2538
2538
|
# Corresponds to the JSON property `quote`
|
2539
2539
|
# @return [String]
|
2540
2540
|
attr_accessor :quote
|
@@ -2596,6 +2596,11 @@ module Google
|
|
2596
2596
|
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionSpec]
|
2597
2597
|
attr_accessor :execution_spec
|
2598
2598
|
|
2599
|
+
# Status of the task execution (e.g. Jobs).
|
2600
|
+
# Corresponds to the JSON property `executionStatus`
|
2601
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionStatus]
|
2602
|
+
attr_accessor :execution_status
|
2603
|
+
|
2599
2604
|
# Optional. User-defined labels for the task.
|
2600
2605
|
# Corresponds to the JSON property `labels`
|
2601
2606
|
# @return [Hash<String,String>]
|
@@ -2643,6 +2648,7 @@ module Google
|
|
2643
2648
|
@description = args[:description] if args.key?(:description)
|
2644
2649
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2645
2650
|
@execution_spec = args[:execution_spec] if args.key?(:execution_spec)
|
2651
|
+
@execution_status = args[:execution_status] if args.key?(:execution_status)
|
2646
2652
|
@labels = args[:labels] if args.key?(:labels)
|
2647
2653
|
@name = args[:name] if args.key?(:name)
|
2648
2654
|
@spark = args[:spark] if args.key?(:spark)
|
@@ -2674,6 +2680,13 @@ module Google
|
|
2674
2680
|
# @return [String]
|
2675
2681
|
attr_accessor :max_job_execution_lifetime
|
2676
2682
|
|
2683
|
+
# Optional. The project in which jobs are run. By default, the project
|
2684
|
+
# containing the Lake is used. If a project is provided, the executionspec.
|
2685
|
+
# service_account must belong to this same project.
|
2686
|
+
# Corresponds to the JSON property `project`
|
2687
|
+
# @return [String]
|
2688
|
+
attr_accessor :project
|
2689
|
+
|
2677
2690
|
# Required. Service account to use to execute a task. If not provided, the
|
2678
2691
|
# default Compute service account for the project is used.
|
2679
2692
|
# Corresponds to the JSON property `serviceAccount`
|
@@ -2688,10 +2701,36 @@ module Google
|
|
2688
2701
|
def update!(**args)
|
2689
2702
|
@args = args[:args] if args.key?(:args)
|
2690
2703
|
@max_job_execution_lifetime = args[:max_job_execution_lifetime] if args.key?(:max_job_execution_lifetime)
|
2704
|
+
@project = args[:project] if args.key?(:project)
|
2691
2705
|
@service_account = args[:service_account] if args.key?(:service_account)
|
2692
2706
|
end
|
2693
2707
|
end
|
2694
2708
|
|
2709
|
+
# Status of the task execution (e.g. Jobs).
|
2710
|
+
class GoogleCloudDataplexV1TaskExecutionStatus
|
2711
|
+
include Google::Apis::Core::Hashable
|
2712
|
+
|
2713
|
+
# A job represents an instance of a task.
|
2714
|
+
# Corresponds to the JSON property `latestJob`
|
2715
|
+
# @return [Google::Apis::DataplexV1::GoogleCloudDataplexV1Job]
|
2716
|
+
attr_accessor :latest_job
|
2717
|
+
|
2718
|
+
# Output only. Last update time of the status.
|
2719
|
+
# Corresponds to the JSON property `updateTime`
|
2720
|
+
# @return [String]
|
2721
|
+
attr_accessor :update_time
|
2722
|
+
|
2723
|
+
def initialize(**args)
|
2724
|
+
update!(**args)
|
2725
|
+
end
|
2726
|
+
|
2727
|
+
# Update properties of this object
|
2728
|
+
def update!(**args)
|
2729
|
+
@latest_job = args[:latest_job] if args.key?(:latest_job)
|
2730
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
2731
|
+
end
|
2732
|
+
end
|
2733
|
+
|
2695
2734
|
# Configuration for the underlying infrastructure used to run workloads.
|
2696
2735
|
class GoogleCloudDataplexV1TaskInfrastructureSpec
|
2697
2736
|
include Google::Apis::Core::Hashable
|
@@ -3353,7 +3392,7 @@ module Google
|
|
3353
3392
|
# @return [Google::Apis::DataplexV1::GoogleTypeExpr]
|
3354
3393
|
attr_accessor :condition
|
3355
3394
|
|
3356
|
-
# Specifies the principals requesting access for a Cloud
|
3395
|
+
# Specifies the principals requesting access for a Google Cloud resource.
|
3357
3396
|
# members can have the following values: allUsers: A special identifier that
|
3358
3397
|
# represents anyone who is on the internet; with or without a Google account.
|
3359
3398
|
# allAuthenticatedUsers: A special identifier that represents anyone who is
|
@@ -3551,8 +3590,8 @@ module Google
|
|
3551
3590
|
include Google::Apis::Core::Hashable
|
3552
3591
|
|
3553
3592
|
# The set of permissions to check for the resource. Permissions with wildcards (
|
3554
|
-
# such as
|
3555
|
-
#
|
3593
|
+
# such as * or storage.*) are not allowed. For more information see IAM Overview
|
3594
|
+
# (https://cloud.google.com/iam/docs/overview#permissions).
|
3556
3595
|
# Corresponds to the JSON property `permissions`
|
3557
3596
|
# @return [Array<String>]
|
3558
3597
|
attr_accessor :permissions
|
@@ -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.4.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220502"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -430,6 +430,12 @@ module Google
|
|
430
430
|
include Google::Apis::Core::JsonObjectSupport
|
431
431
|
end
|
432
432
|
|
433
|
+
class GoogleCloudDataplexV1TaskExecutionStatus
|
434
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
|
+
|
436
|
+
include Google::Apis::Core::JsonObjectSupport
|
437
|
+
end
|
438
|
+
|
433
439
|
class GoogleCloudDataplexV1TaskInfrastructureSpec
|
434
440
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
441
|
|
@@ -873,6 +879,7 @@ module Google
|
|
873
879
|
class Representation < Google::Apis::Core::JsonRepresentation
|
874
880
|
property :entity, as: 'entity'
|
875
881
|
property :partition, as: 'partition'
|
882
|
+
collection :sampled_data_locations, as: 'sampledDataLocations'
|
876
883
|
property :type, as: 'type'
|
877
884
|
end
|
878
885
|
end
|
@@ -1290,6 +1297,8 @@ module Google
|
|
1290
1297
|
property :display_name, as: 'displayName'
|
1291
1298
|
property :execution_spec, as: 'executionSpec', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionSpec, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionSpec::Representation
|
1292
1299
|
|
1300
|
+
property :execution_status, as: 'executionStatus', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionStatus, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskExecutionStatus::Representation
|
1301
|
+
|
1293
1302
|
hash :labels, as: 'labels'
|
1294
1303
|
property :name, as: 'name'
|
1295
1304
|
property :spark, as: 'spark', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskSparkTaskConfig::Representation
|
@@ -1307,10 +1316,20 @@ module Google
|
|
1307
1316
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1308
1317
|
hash :args, as: 'args'
|
1309
1318
|
property :max_job_execution_lifetime, as: 'maxJobExecutionLifetime'
|
1319
|
+
property :project, as: 'project'
|
1310
1320
|
property :service_account, as: 'serviceAccount'
|
1311
1321
|
end
|
1312
1322
|
end
|
1313
1323
|
|
1324
|
+
class GoogleCloudDataplexV1TaskExecutionStatus
|
1325
|
+
# @private
|
1326
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1327
|
+
property :latest_job, as: 'latestJob', class: Google::Apis::DataplexV1::GoogleCloudDataplexV1Job, decorator: Google::Apis::DataplexV1::GoogleCloudDataplexV1Job::Representation
|
1328
|
+
|
1329
|
+
property :update_time, as: 'updateTime'
|
1330
|
+
end
|
1331
|
+
end
|
1332
|
+
|
1314
1333
|
class GoogleCloudDataplexV1TaskInfrastructureSpec
|
1315
1334
|
# @private
|
1316
1335
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -234,8 +234,9 @@ module Google
|
|
234
234
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
235
235
|
# resource exists and does not have a policy set.
|
236
236
|
# @param [String] resource
|
237
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
238
|
-
#
|
237
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
238
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
239
|
+
# appropriate value for this field.
|
239
240
|
# @param [Fixnum] options_requested_policy_version
|
240
241
|
# Optional. The maximum policy version that will be used to format the policy.
|
241
242
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -368,8 +369,9 @@ module Google
|
|
368
369
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
369
370
|
# errors.
|
370
371
|
# @param [String] resource
|
371
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
372
|
-
#
|
372
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
373
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
374
|
+
# appropriate value for this field.
|
373
375
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
374
376
|
# @param [String] fields
|
375
377
|
# Selector specifying which fields to include in a partial response.
|
@@ -406,8 +408,9 @@ module Google
|
|
406
408
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
407
409
|
# This operation may "fail open" without warning.
|
408
410
|
# @param [String] resource
|
409
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
410
|
-
#
|
411
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
412
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
413
|
+
# appropriate value for this field.
|
411
414
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
412
415
|
# @param [String] fields
|
413
416
|
# Selector specifying which fields to include in a partial response.
|
@@ -482,8 +485,9 @@ module Google
|
|
482
485
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
483
486
|
# resource exists and does not have a policy set.
|
484
487
|
# @param [String] resource
|
485
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
486
|
-
#
|
488
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
489
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
490
|
+
# appropriate value for this field.
|
487
491
|
# @param [Fixnum] options_requested_policy_version
|
488
492
|
# Optional. The maximum policy version that will be used to format the policy.
|
489
493
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -527,8 +531,9 @@ module Google
|
|
527
531
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
528
532
|
# errors.
|
529
533
|
# @param [String] resource
|
530
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
531
|
-
#
|
534
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
535
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
536
|
+
# appropriate value for this field.
|
532
537
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
533
538
|
# @param [String] fields
|
534
539
|
# Selector specifying which fields to include in a partial response.
|
@@ -565,8 +570,9 @@ module Google
|
|
565
570
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
566
571
|
# This operation may "fail open" without warning.
|
567
572
|
# @param [String] resource
|
568
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
569
|
-
#
|
573
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
574
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
575
|
+
# appropriate value for this field.
|
570
576
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
571
577
|
# @param [String] fields
|
572
578
|
# Selector specifying which fields to include in a partial response.
|
@@ -898,8 +904,9 @@ module Google
|
|
898
904
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
899
905
|
# resource exists and does not have a policy set.
|
900
906
|
# @param [String] resource
|
901
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
902
|
-
#
|
907
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
908
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
909
|
+
# appropriate value for this field.
|
903
910
|
# @param [Fixnum] options_requested_policy_version
|
904
911
|
# Optional. The maximum policy version that will be used to format the policy.
|
905
912
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -1032,8 +1039,9 @@ module Google
|
|
1032
1039
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
1033
1040
|
# errors.
|
1034
1041
|
# @param [String] resource
|
1035
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
1036
|
-
#
|
1042
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
1043
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
1044
|
+
# appropriate value for this field.
|
1037
1045
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
1038
1046
|
# @param [String] fields
|
1039
1047
|
# Selector specifying which fields to include in a partial response.
|
@@ -1070,8 +1078,9 @@ module Google
|
|
1070
1078
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
1071
1079
|
# This operation may "fail open" without warning.
|
1072
1080
|
# @param [String] resource
|
1073
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
1074
|
-
#
|
1081
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
1082
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
1083
|
+
# appropriate value for this field.
|
1075
1084
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
1076
1085
|
# @param [String] fields
|
1077
1086
|
# Selector specifying which fields to include in a partial response.
|
@@ -1250,8 +1259,9 @@ module Google
|
|
1250
1259
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
1251
1260
|
# resource exists and does not have a policy set.
|
1252
1261
|
# @param [String] resource
|
1253
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
1254
|
-
#
|
1262
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
1263
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
1264
|
+
# appropriate value for this field.
|
1255
1265
|
# @param [Fixnum] options_requested_policy_version
|
1256
1266
|
# Optional. The maximum policy version that will be used to format the policy.
|
1257
1267
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -1383,8 +1393,9 @@ module Google
|
|
1383
1393
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
1384
1394
|
# errors.
|
1385
1395
|
# @param [String] resource
|
1386
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
1387
|
-
#
|
1396
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
1397
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
1398
|
+
# appropriate value for this field.
|
1388
1399
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
1389
1400
|
# @param [String] fields
|
1390
1401
|
# Selector specifying which fields to include in a partial response.
|
@@ -1421,8 +1432,9 @@ module Google
|
|
1421
1432
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
1422
1433
|
# This operation may "fail open" without warning.
|
1423
1434
|
# @param [String] resource
|
1424
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
1425
|
-
#
|
1435
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
1436
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
1437
|
+
# appropriate value for this field.
|
1426
1438
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
1427
1439
|
# @param [String] fields
|
1428
1440
|
# Selector specifying which fields to include in a partial response.
|
@@ -1671,8 +1683,9 @@ module Google
|
|
1671
1683
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
1672
1684
|
# resource exists and does not have a policy set.
|
1673
1685
|
# @param [String] resource
|
1674
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
1675
|
-
#
|
1686
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
1687
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
1688
|
+
# appropriate value for this field.
|
1676
1689
|
# @param [Fixnum] options_requested_policy_version
|
1677
1690
|
# Optional. The maximum policy version that will be used to format the policy.
|
1678
1691
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -1804,8 +1817,9 @@ module Google
|
|
1804
1817
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
1805
1818
|
# errors.
|
1806
1819
|
# @param [String] resource
|
1807
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
1808
|
-
#
|
1820
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
1821
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
1822
|
+
# appropriate value for this field.
|
1809
1823
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
1810
1824
|
# @param [String] fields
|
1811
1825
|
# Selector specifying which fields to include in a partial response.
|
@@ -1842,8 +1856,9 @@ module Google
|
|
1842
1856
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
1843
1857
|
# This operation may "fail open" without warning.
|
1844
1858
|
# @param [String] resource
|
1845
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
1846
|
-
#
|
1859
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
1860
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
1861
|
+
# appropriate value for this field.
|
1847
1862
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
1848
1863
|
# @param [String] fields
|
1849
1864
|
# Selector specifying which fields to include in a partial response.
|
@@ -2026,8 +2041,9 @@ module Google
|
|
2026
2041
|
# Gets the access control policy for a resource. Returns an empty policy if the
|
2027
2042
|
# resource exists and does not have a policy set.
|
2028
2043
|
# @param [String] resource
|
2029
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
2030
|
-
#
|
2044
|
+
# REQUIRED: The resource for which the policy is being requested. See Resource
|
2045
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
2046
|
+
# appropriate value for this field.
|
2031
2047
|
# @param [Fixnum] options_requested_policy_version
|
2032
2048
|
# Optional. The maximum policy version that will be used to format the policy.
|
2033
2049
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -2160,8 +2176,9 @@ module Google
|
|
2160
2176
|
# existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED
|
2161
2177
|
# errors.
|
2162
2178
|
# @param [String] resource
|
2163
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
2164
|
-
#
|
2179
|
+
# REQUIRED: The resource for which the policy is being specified. See Resource
|
2180
|
+
# names (https://cloud.google.com/apis/design/resource_names) for the
|
2181
|
+
# appropriate value for this field.
|
2165
2182
|
# @param [Google::Apis::DataplexV1::GoogleIamV1SetIamPolicyRequest] google_iam_v1_set_iam_policy_request_object
|
2166
2183
|
# @param [String] fields
|
2167
2184
|
# Selector specifying which fields to include in a partial response.
|
@@ -2198,8 +2215,9 @@ module Google
|
|
2198
2215
|
# permission-aware UIs and command-line tools, not for authorization checking.
|
2199
2216
|
# This operation may "fail open" without warning.
|
2200
2217
|
# @param [String] resource
|
2201
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
2202
|
-
#
|
2218
|
+
# REQUIRED: The resource for which the policy detail is being requested. See
|
2219
|
+
# Resource names (https://cloud.google.com/apis/design/resource_names) for the
|
2220
|
+
# appropriate value for this field.
|
2203
2221
|
# @param [Google::Apis::DataplexV1::GoogleIamV1TestIamPermissionsRequest] google_iam_v1_test_iam_permissions_request_object
|
2204
2222
|
# @param [String] fields
|
2205
2223
|
# Selector specifying which fields to include in a partial response.
|
@@ -2314,8 +2332,8 @@ module Google
|
|
2314
2332
|
# Required. The resource name of the entity: projects/`project_number`/locations/
|
2315
2333
|
# `location_id`/lakes/`lake_id`/zones/`zone_id`/entities/`entity_id`.
|
2316
2334
|
# @param [String] etag
|
2317
|
-
# Required. The etag associated with the
|
2318
|
-
#
|
2335
|
+
# Required. The etag associated with the entity, which can be retrieved with a
|
2336
|
+
# GetEntity request.
|
2319
2337
|
# @param [String] fields
|
2320
2338
|
# Selector specifying which fields to include in a partial response.
|
2321
2339
|
# @param [String] quota_user
|
@@ -2387,8 +2405,8 @@ module Google
|
|
2387
2405
|
# Optional. The following filter parameters can be added to the URL to limit the
|
2388
2406
|
# entities returned by the API: Entity ID: ?filter="id=entityID" Asset ID: ?
|
2389
2407
|
# filter="asset=assetID" Data path ?filter="data_path=gs://my-bucket" Is HIVE
|
2390
|
-
# compatible: ?filter
|
2391
|
-
# bigquery_compatible=true
|
2408
|
+
# compatible: ?filter="hive_compatible=true" Is BigQuery compatible: ?filter="
|
2409
|
+
# bigquery_compatible=true"
|
2392
2410
|
# @param [Fixnum] page_size
|
2393
2411
|
# Optional. Maximum number of entities to return. The service may return fewer
|
2394
2412
|
# than this value. If unspecified, 100 entities will be returned by default. The
|
@@ -2515,8 +2533,7 @@ module Google
|
|
2515
2533
|
# of an ordered sequence of partition values separated by "/". All values must
|
2516
2534
|
# be provided.
|
2517
2535
|
# @param [String] etag
|
2518
|
-
# Optional. The etag associated with the partition
|
2519
|
-
# retrieved.
|
2536
|
+
# Optional. The etag associated with the partition.
|
2520
2537
|
# @param [String] fields
|
2521
2538
|
# Selector specifying which fields to include in a partial response.
|
2522
2539
|
# @param [String] quota_user
|
@@ -2584,10 +2601,10 @@ module Google
|
|
2584
2601
|
# Required. The resource name of the parent entity: projects/`project_number`/
|
2585
2602
|
# locations/`location_id`/lakes/`lake_id`/zones/`zone_id`/entities/`entity_id`.
|
2586
2603
|
# @param [String] filter
|
2587
|
-
# Optional. Filter the partitions returned to the caller using a key
|
2588
|
-
# expression.
|
2604
|
+
# Optional. Filter the partitions returned to the caller using a key value pair
|
2605
|
+
# expression. Supported operators and syntax: logic operators: AND, OR
|
2589
2606
|
# comparison operators: <, >, >=, <= ,=, != LIKE operators: The right hand of a
|
2590
|
-
# LIKE operator supports
|
2607
|
+
# LIKE operator supports "." and "*" for wildcard searches, for example "value1
|
2591
2608
|
# LIKE ".*oo.*" parenthetical grouping: ( )Sample filter expression: `?filter="
|
2592
2609
|
# key1 < value1 OR key2 > value2"Notes: Keys to the left of operators are case
|
2593
2610
|
# insensitive. Partition results are sorted first by creation time, then by
|
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.4.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-
|
11
|
+
date: 2022-05-09 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-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.4.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: []
|