google-apis-looker_v1 0.30.0 → 0.31.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: ed67994a9903fb2d3662c7ddd212d9c25807624e375aa49147678c75bb10c99f
|
|
4
|
+
data.tar.gz: 4f2bb597bfd44a21ad4bb57e90345ffdc21ed79f363a189da270a4863431da73
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 05135cbb547171769f830120a9b4e68a562411ab9c6b8005310759f79b1013dcaa70e1bc0195844e3d4b9f6e92e814ae6676a695436e86a0e0b5a285ef73f06d
|
|
7
|
+
data.tar.gz: 39909406b1b5983dc1a40a3eabbddccc4cf3cca751277b25562c2a185dd117c70f56512a53c758525856527b3dbb00b1cee9f2d4aa5954ae46d83119da8f491a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
# Release history for google-apis-looker_v1
|
|
2
2
|
|
|
3
|
-
### v0.
|
|
3
|
+
### v0.31.0 (2026-08-16)
|
|
4
4
|
|
|
5
|
+
* Regenerated from discovery document revision 20260806
|
|
6
|
+
|
|
7
|
+
### v0.30.0 (2026-06-21)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260609
|
|
5
10
|
* Regenerated using generator version 0.19.0
|
|
6
11
|
|
|
7
12
|
### v0.29.0 (2026-05-17)
|
|
@@ -301,6 +301,12 @@ module Google
|
|
|
301
301
|
class ExportMetadata
|
|
302
302
|
include Google::Apis::Core::Hashable
|
|
303
303
|
|
|
304
|
+
# Source BigQuery dataset (formatted as `project_id:dataset_id`) for O2C Elite
|
|
305
|
+
# System Activity (ESA) direct dataset migration.
|
|
306
|
+
# Corresponds to the JSON property `esaSourceDatasetId`
|
|
307
|
+
# @return [String]
|
|
308
|
+
attr_accessor :esa_source_dataset_id
|
|
309
|
+
|
|
304
310
|
# Encryption key details for the exported artifact.
|
|
305
311
|
# Corresponds to the JSON property `exportEncryptionKey`
|
|
306
312
|
# @return [Google::Apis::LookerV1::ExportMetadataEncryptionKey]
|
|
@@ -346,6 +352,7 @@ module Google
|
|
|
346
352
|
|
|
347
353
|
# Update properties of this object
|
|
348
354
|
def update!(**args)
|
|
355
|
+
@esa_source_dataset_id = args[:esa_source_dataset_id] if args.key?(:esa_source_dataset_id)
|
|
349
356
|
@export_encryption_key = args[:export_encryption_key] if args.key?(:export_encryption_key)
|
|
350
357
|
@file_paths = args[:file_paths] if args.key?(:file_paths)
|
|
351
358
|
@looker_encryption_key = args[:looker_encryption_key] if args.key?(:looker_encryption_key)
|
|
@@ -464,6 +471,12 @@ module Google
|
|
|
464
471
|
class Instance
|
|
465
472
|
include Google::Apis::Core::Hashable
|
|
466
473
|
|
|
474
|
+
# Optional. Accelerated security patch enabled for the instance.
|
|
475
|
+
# Corresponds to the JSON property `acceleratedSecurityPatchEnabled`
|
|
476
|
+
# @return [Boolean]
|
|
477
|
+
attr_accessor :accelerated_security_patch_enabled
|
|
478
|
+
alias_method :accelerated_security_patch_enabled?, :accelerated_security_patch_enabled
|
|
479
|
+
|
|
467
480
|
# Looker instance Admin settings fields.
|
|
468
481
|
# Corresponds to the JSON property `adminSettings`
|
|
469
482
|
# @return [Google::Apis::LookerV1::AdminSettings]
|
|
@@ -629,6 +642,11 @@ module Google
|
|
|
629
642
|
attr_accessor :public_ip_enabled
|
|
630
643
|
alias_method :public_ip_enabled?, :public_ip_enabled
|
|
631
644
|
|
|
645
|
+
# Optional. The selected release channel for the instance.
|
|
646
|
+
# Corresponds to the JSON property `releaseChannel`
|
|
647
|
+
# @return [String]
|
|
648
|
+
attr_accessor :release_channel
|
|
649
|
+
|
|
632
650
|
# Name of a reserved IP address range within the Instance.consumer_network, to
|
|
633
651
|
# be used for private services access connection. May or may not be specified in
|
|
634
652
|
# a create request.
|
|
@@ -648,11 +666,21 @@ module Google
|
|
|
648
666
|
attr_accessor :satisfies_pzs
|
|
649
667
|
alias_method :satisfies_pzs?, :satisfies_pzs
|
|
650
668
|
|
|
669
|
+
# Output only. The reason for the instance being in a soft-deleted state.
|
|
670
|
+
# Corresponds to the JSON property `softDeleteReason`
|
|
671
|
+
# @return [String]
|
|
672
|
+
attr_accessor :soft_delete_reason
|
|
673
|
+
|
|
651
674
|
# Output only. The state of the instance.
|
|
652
675
|
# Corresponds to the JSON property `state`
|
|
653
676
|
# @return [String]
|
|
654
677
|
attr_accessor :state
|
|
655
678
|
|
|
679
|
+
# Output only. The time when the Looker instance was suspended (soft deleted).
|
|
680
|
+
# Corresponds to the JSON property `suspendedTime`
|
|
681
|
+
# @return [String]
|
|
682
|
+
attr_accessor :suspended_time
|
|
683
|
+
|
|
656
684
|
# Output only. The time when the Looker instance was last updated.
|
|
657
685
|
# Corresponds to the JSON property `updateTime`
|
|
658
686
|
# @return [String]
|
|
@@ -669,6 +697,7 @@ module Google
|
|
|
669
697
|
|
|
670
698
|
# Update properties of this object
|
|
671
699
|
def update!(**args)
|
|
700
|
+
@accelerated_security_patch_enabled = args[:accelerated_security_patch_enabled] if args.key?(:accelerated_security_patch_enabled)
|
|
672
701
|
@admin_settings = args[:admin_settings] if args.key?(:admin_settings)
|
|
673
702
|
@catalog_integration_opt_out = args[:catalog_integration_opt_out] if args.key?(:catalog_integration_opt_out)
|
|
674
703
|
@class_type = args[:class_type] if args.key?(:class_type)
|
|
@@ -699,10 +728,13 @@ module Google
|
|
|
699
728
|
@psc_config = args[:psc_config] if args.key?(:psc_config)
|
|
700
729
|
@psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
|
|
701
730
|
@public_ip_enabled = args[:public_ip_enabled] if args.key?(:public_ip_enabled)
|
|
731
|
+
@release_channel = args[:release_channel] if args.key?(:release_channel)
|
|
702
732
|
@reserved_range = args[:reserved_range] if args.key?(:reserved_range)
|
|
703
733
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
704
734
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
735
|
+
@soft_delete_reason = args[:soft_delete_reason] if args.key?(:soft_delete_reason)
|
|
705
736
|
@state = args[:state] if args.key?(:state)
|
|
737
|
+
@suspended_time = args[:suspended_time] if args.key?(:suspended_time)
|
|
706
738
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
707
739
|
@user_metadata = args[:user_metadata] if args.key?(:user_metadata)
|
|
708
740
|
end
|
|
@@ -790,14 +822,14 @@ module Google
|
|
|
790
822
|
class ListInstancesResponse
|
|
791
823
|
include Google::Apis::Core::Hashable
|
|
792
824
|
|
|
793
|
-
# The list of instances matching the request filters, up to the requested
|
|
794
|
-
#
|
|
825
|
+
# The list of instances matching the request filters, up to the requested `
|
|
826
|
+
# pageSize`.
|
|
795
827
|
# Corresponds to the JSON property `instances`
|
|
796
828
|
# @return [Array<Google::Apis::LookerV1::Instance>]
|
|
797
829
|
attr_accessor :instances
|
|
798
830
|
|
|
799
|
-
# If provided, a page token that can look up the next
|
|
800
|
-
#
|
|
831
|
+
# If provided, a page token that can look up the next `pageSize` results. If
|
|
832
|
+
# empty, the results list is exhausted.
|
|
801
833
|
# Corresponds to the JSON property `nextPageToken`
|
|
802
834
|
# @return [String]
|
|
803
835
|
attr_accessor :next_page_token
|
|
@@ -1364,6 +1396,19 @@ module Google
|
|
|
1364
1396
|
end
|
|
1365
1397
|
end
|
|
1366
1398
|
|
|
1399
|
+
# Request options for undeleting an instance.
|
|
1400
|
+
class UndeleteInstanceRequest
|
|
1401
|
+
include Google::Apis::Core::Hashable
|
|
1402
|
+
|
|
1403
|
+
def initialize(**args)
|
|
1404
|
+
update!(**args)
|
|
1405
|
+
end
|
|
1406
|
+
|
|
1407
|
+
# Update properties of this object
|
|
1408
|
+
def update!(**args)
|
|
1409
|
+
end
|
|
1410
|
+
end
|
|
1411
|
+
|
|
1367
1412
|
# Metadata about users for a Looker instance.
|
|
1368
1413
|
class UserMetadata
|
|
1369
1414
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module LookerV1
|
|
18
18
|
# Version of the google-apis-looker_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.31.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 = "20260806"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -226,6 +226,12 @@ module Google
|
|
|
226
226
|
include Google::Apis::Core::JsonObjectSupport
|
|
227
227
|
end
|
|
228
228
|
|
|
229
|
+
class UndeleteInstanceRequest
|
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
231
|
+
|
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
233
|
+
end
|
|
234
|
+
|
|
229
235
|
class UserMetadata
|
|
230
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
231
237
|
|
|
@@ -317,6 +323,7 @@ module Google
|
|
|
317
323
|
class ExportMetadata
|
|
318
324
|
# @private
|
|
319
325
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
326
|
+
property :esa_source_dataset_id, as: 'esaSourceDatasetId'
|
|
320
327
|
property :export_encryption_key, as: 'exportEncryptionKey', class: Google::Apis::LookerV1::ExportMetadataEncryptionKey, decorator: Google::Apis::LookerV1::ExportMetadataEncryptionKey::Representation
|
|
321
328
|
|
|
322
329
|
collection :file_paths, as: 'filePaths'
|
|
@@ -364,6 +371,7 @@ module Google
|
|
|
364
371
|
class Instance
|
|
365
372
|
# @private
|
|
366
373
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
374
|
+
property :accelerated_security_patch_enabled, as: 'acceleratedSecurityPatchEnabled'
|
|
367
375
|
property :admin_settings, as: 'adminSettings', class: Google::Apis::LookerV1::AdminSettings, decorator: Google::Apis::LookerV1::AdminSettings::Representation
|
|
368
376
|
|
|
369
377
|
property :catalog_integration_opt_out, as: 'catalogIntegrationOptOut'
|
|
@@ -406,10 +414,13 @@ module Google
|
|
|
406
414
|
|
|
407
415
|
property :psc_enabled, as: 'pscEnabled'
|
|
408
416
|
property :public_ip_enabled, as: 'publicIpEnabled'
|
|
417
|
+
property :release_channel, as: 'releaseChannel'
|
|
409
418
|
property :reserved_range, as: 'reservedRange'
|
|
410
419
|
property :satisfies_pzi, as: 'satisfiesPzi'
|
|
411
420
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
421
|
+
property :soft_delete_reason, as: 'softDeleteReason'
|
|
412
422
|
property :state, as: 'state'
|
|
423
|
+
property :suspended_time, as: 'suspendedTime'
|
|
413
424
|
property :update_time, as: 'updateTime'
|
|
414
425
|
property :user_metadata, as: 'userMetadata', class: Google::Apis::LookerV1::UserMetadata, decorator: Google::Apis::LookerV1::UserMetadata::Representation
|
|
415
426
|
|
|
@@ -592,6 +603,12 @@ module Google
|
|
|
592
603
|
end
|
|
593
604
|
end
|
|
594
605
|
|
|
606
|
+
class UndeleteInstanceRequest
|
|
607
|
+
# @private
|
|
608
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
609
|
+
end
|
|
610
|
+
end
|
|
611
|
+
|
|
595
612
|
class UserMetadata
|
|
596
613
|
# @private
|
|
597
614
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -316,6 +316,8 @@ module Google
|
|
|
316
316
|
# returned. The maximum possible value is 2048.
|
|
317
317
|
# @param [String] page_token
|
|
318
318
|
# A page token received from a previous ListInstancesRequest.
|
|
319
|
+
# @param [Boolean] show_deleted
|
|
320
|
+
# Optional. Whether to include deleted instances in the response.
|
|
319
321
|
# @param [String] fields
|
|
320
322
|
# Selector specifying which fields to include in a partial response.
|
|
321
323
|
# @param [String] quota_user
|
|
@@ -333,13 +335,14 @@ module Google
|
|
|
333
335
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
334
336
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
335
337
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
336
|
-
def list_project_location_instances(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
338
|
+
def list_project_location_instances(parent, page_size: nil, page_token: nil, show_deleted: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
337
339
|
command = make_simple_command(:get, 'v1/{+parent}/instances', options)
|
|
338
340
|
command.response_representation = Google::Apis::LookerV1::ListInstancesResponse::Representation
|
|
339
341
|
command.response_class = Google::Apis::LookerV1::ListInstancesResponse
|
|
340
342
|
command.params['parent'] = parent unless parent.nil?
|
|
341
343
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
342
344
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
345
|
+
command.query['showDeleted'] = show_deleted unless show_deleted.nil?
|
|
343
346
|
command.query['fields'] = fields unless fields.nil?
|
|
344
347
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
345
348
|
execute_or_queue_command(command, &block)
|
|
@@ -453,6 +456,39 @@ module Google
|
|
|
453
456
|
execute_or_queue_command(command, &block)
|
|
454
457
|
end
|
|
455
458
|
|
|
459
|
+
# Undeletes Looker instance.
|
|
460
|
+
# @param [String] name
|
|
461
|
+
# Required. Format: projects/`project`/locations/`location`/instances/`instance`
|
|
462
|
+
# @param [Google::Apis::LookerV1::UndeleteInstanceRequest] undelete_instance_request_object
|
|
463
|
+
# @param [String] fields
|
|
464
|
+
# Selector specifying which fields to include in a partial response.
|
|
465
|
+
# @param [String] quota_user
|
|
466
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
467
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
468
|
+
# @param [Google::Apis::RequestOptions] options
|
|
469
|
+
# Request-specific options
|
|
470
|
+
#
|
|
471
|
+
# @yield [result, err] Result & error if block supplied
|
|
472
|
+
# @yieldparam result [Google::Apis::LookerV1::Operation] parsed result object
|
|
473
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
474
|
+
#
|
|
475
|
+
# @return [Google::Apis::LookerV1::Operation]
|
|
476
|
+
#
|
|
477
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
478
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
479
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
480
|
+
def undelete_instance(name, undelete_instance_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
481
|
+
command = make_simple_command(:post, 'v1/{+name}:undelete', options)
|
|
482
|
+
command.request_representation = Google::Apis::LookerV1::UndeleteInstanceRequest::Representation
|
|
483
|
+
command.request_object = undelete_instance_request_object
|
|
484
|
+
command.response_representation = Google::Apis::LookerV1::Operation::Representation
|
|
485
|
+
command.response_class = Google::Apis::LookerV1::Operation
|
|
486
|
+
command.params['name'] = name unless name.nil?
|
|
487
|
+
command.query['fields'] = fields unless fields.nil?
|
|
488
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
489
|
+
execute_or_queue_command(command, &block)
|
|
490
|
+
end
|
|
491
|
+
|
|
456
492
|
# Backup Looker instance.
|
|
457
493
|
# @param [String] parent
|
|
458
494
|
# Required. Format: projects/`project`/locations/`location`/instances/`instance`
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-looker_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.31.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-looker_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-looker_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-looker_v1/v0.31.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-looker_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|