google-apis-looker_v1 0.24.0 → 0.26.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: 4130e11974032e1661edb64d31e3393a5b17b9085363ff881a028ae50ccfc7ba
|
|
4
|
+
data.tar.gz: 7f5009182e9c03b087865b6977e40520761ae7cb9687ad5b32d93de01c32b96a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a7b54dbdce197f3ab1690dfb5fcbcf1c2aadfad7553e7ea612734a8ace056b7dd051e9e7a9d0a9125afcc4d876864d78d1f9cf0ee3f06db7ab6bd988fc2d7d6c
|
|
7
|
+
data.tar.gz: 689558a45b341027c57f6c7c6f47a9b019fd1799cbc061515c0b9dbdd0a613aa198c0b33291d3371a57f2139b16c890e0da7115be695462a539e0145bde9c206
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-looker_v1
|
|
2
2
|
|
|
3
|
+
### v0.26.0 (2026-02-01)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260119
|
|
6
|
+
|
|
7
|
+
### v0.25.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251203
|
|
10
|
+
|
|
3
11
|
### v0.24.0 (2025-11-23)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251113
|
|
@@ -70,6 +70,12 @@ module Google
|
|
|
70
70
|
attr_accessor :marketplace_enabled
|
|
71
71
|
alias_method :marketplace_enabled?, :marketplace_enabled
|
|
72
72
|
|
|
73
|
+
# Output only. The list of IP addresses used by Secure Web Proxy for outbound
|
|
74
|
+
# traffic.
|
|
75
|
+
# Corresponds to the JSON property `webProxyIps`
|
|
76
|
+
# @return [Array<String>]
|
|
77
|
+
attr_accessor :web_proxy_ips
|
|
78
|
+
|
|
73
79
|
def initialize(**args)
|
|
74
80
|
update!(**args)
|
|
75
81
|
end
|
|
@@ -78,6 +84,7 @@ module Google
|
|
|
78
84
|
def update!(**args)
|
|
79
85
|
@egress_fqdns = args[:egress_fqdns] if args.key?(:egress_fqdns)
|
|
80
86
|
@marketplace_enabled = args[:marketplace_enabled] if args.key?(:marketplace_enabled)
|
|
87
|
+
@web_proxy_ips = args[:web_proxy_ips] if args.key?(:web_proxy_ips)
|
|
81
88
|
end
|
|
82
89
|
end
|
|
83
90
|
|
|
@@ -403,6 +410,13 @@ module Google
|
|
|
403
410
|
# @return [Google::Apis::LookerV1::AdminSettings]
|
|
404
411
|
attr_accessor :admin_settings
|
|
405
412
|
|
|
413
|
+
# Optional. Indicates whether catalog integration is enabled for the Looker
|
|
414
|
+
# instance.
|
|
415
|
+
# Corresponds to the JSON property `catalogIntegrationEnabled`
|
|
416
|
+
# @return [Boolean]
|
|
417
|
+
attr_accessor :catalog_integration_enabled
|
|
418
|
+
alias_method :catalog_integration_enabled?, :catalog_integration_enabled
|
|
419
|
+
|
|
406
420
|
# Optional. Storage class of the instance.
|
|
407
421
|
# Corresponds to the JSON property `classType`
|
|
408
422
|
# @return [String]
|
|
@@ -570,11 +584,21 @@ module Google
|
|
|
570
584
|
attr_accessor :satisfies_pzs
|
|
571
585
|
alias_method :satisfies_pzs?, :satisfies_pzs
|
|
572
586
|
|
|
587
|
+
# Output only. The reason for the instance being in a soft-deleted state.
|
|
588
|
+
# Corresponds to the JSON property `softDeleteReason`
|
|
589
|
+
# @return [String]
|
|
590
|
+
attr_accessor :soft_delete_reason
|
|
591
|
+
|
|
573
592
|
# Output only. The state of the instance.
|
|
574
593
|
# Corresponds to the JSON property `state`
|
|
575
594
|
# @return [String]
|
|
576
595
|
attr_accessor :state
|
|
577
596
|
|
|
597
|
+
# Output only. The time when the Looker instance was suspended (soft deleted).
|
|
598
|
+
# Corresponds to the JSON property `suspendedTime`
|
|
599
|
+
# @return [String]
|
|
600
|
+
attr_accessor :suspended_time
|
|
601
|
+
|
|
578
602
|
# Output only. The time when the Looker instance was last updated.
|
|
579
603
|
# Corresponds to the JSON property `updateTime`
|
|
580
604
|
# @return [String]
|
|
@@ -592,6 +616,7 @@ module Google
|
|
|
592
616
|
# Update properties of this object
|
|
593
617
|
def update!(**args)
|
|
594
618
|
@admin_settings = args[:admin_settings] if args.key?(:admin_settings)
|
|
619
|
+
@catalog_integration_enabled = args[:catalog_integration_enabled] if args.key?(:catalog_integration_enabled)
|
|
595
620
|
@class_type = args[:class_type] if args.key?(:class_type)
|
|
596
621
|
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
|
597
622
|
@controlled_egress_config = args[:controlled_egress_config] if args.key?(:controlled_egress_config)
|
|
@@ -622,7 +647,9 @@ module Google
|
|
|
622
647
|
@reserved_range = args[:reserved_range] if args.key?(:reserved_range)
|
|
623
648
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
624
649
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
650
|
+
@soft_delete_reason = args[:soft_delete_reason] if args.key?(:soft_delete_reason)
|
|
625
651
|
@state = args[:state] if args.key?(:state)
|
|
652
|
+
@suspended_time = args[:suspended_time] if args.key?(:suspended_time)
|
|
626
653
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
627
654
|
@user_metadata = args[:user_metadata] if args.key?(:user_metadata)
|
|
628
655
|
end
|
|
@@ -1276,6 +1303,19 @@ module Google
|
|
|
1276
1303
|
end
|
|
1277
1304
|
end
|
|
1278
1305
|
|
|
1306
|
+
# Request options for undeleting an instance.
|
|
1307
|
+
class UndeleteInstanceRequest
|
|
1308
|
+
include Google::Apis::Core::Hashable
|
|
1309
|
+
|
|
1310
|
+
def initialize(**args)
|
|
1311
|
+
update!(**args)
|
|
1312
|
+
end
|
|
1313
|
+
|
|
1314
|
+
# Update properties of this object
|
|
1315
|
+
def update!(**args)
|
|
1316
|
+
end
|
|
1317
|
+
end
|
|
1318
|
+
|
|
1279
1319
|
# Metadata about users for a Looker instance.
|
|
1280
1320
|
class UserMetadata
|
|
1281
1321
|
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.26.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260119"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -214,6 +214,12 @@ module Google
|
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
|
215
215
|
end
|
|
216
216
|
|
|
217
|
+
class UndeleteInstanceRequest
|
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
219
|
+
|
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
221
|
+
end
|
|
222
|
+
|
|
217
223
|
class UserMetadata
|
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
219
225
|
|
|
@@ -238,6 +244,7 @@ module Google
|
|
|
238
244
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
239
245
|
collection :egress_fqdns, as: 'egressFqdns'
|
|
240
246
|
property :marketplace_enabled, as: 'marketplaceEnabled'
|
|
247
|
+
collection :web_proxy_ips, as: 'webProxyIps'
|
|
241
248
|
end
|
|
242
249
|
end
|
|
243
250
|
|
|
@@ -335,6 +342,7 @@ module Google
|
|
|
335
342
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
336
343
|
property :admin_settings, as: 'adminSettings', class: Google::Apis::LookerV1::AdminSettings, decorator: Google::Apis::LookerV1::AdminSettings::Representation
|
|
337
344
|
|
|
345
|
+
property :catalog_integration_enabled, as: 'catalogIntegrationEnabled'
|
|
338
346
|
property :class_type, as: 'classType'
|
|
339
347
|
property :consumer_network, as: 'consumerNetwork'
|
|
340
348
|
property :controlled_egress_config, as: 'controlledEgressConfig', class: Google::Apis::LookerV1::ControlledEgressConfig, decorator: Google::Apis::LookerV1::ControlledEgressConfig::Representation
|
|
@@ -375,7 +383,9 @@ module Google
|
|
|
375
383
|
property :reserved_range, as: 'reservedRange'
|
|
376
384
|
property :satisfies_pzi, as: 'satisfiesPzi'
|
|
377
385
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
386
|
+
property :soft_delete_reason, as: 'softDeleteReason'
|
|
378
387
|
property :state, as: 'state'
|
|
388
|
+
property :suspended_time, as: 'suspendedTime'
|
|
379
389
|
property :update_time, as: 'updateTime'
|
|
380
390
|
property :user_metadata, as: 'userMetadata', class: Google::Apis::LookerV1::UserMetadata, decorator: Google::Apis::LookerV1::UserMetadata::Representation
|
|
381
391
|
|
|
@@ -557,6 +567,12 @@ module Google
|
|
|
557
567
|
end
|
|
558
568
|
end
|
|
559
569
|
|
|
570
|
+
class UndeleteInstanceRequest
|
|
571
|
+
# @private
|
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
573
|
+
end
|
|
574
|
+
end
|
|
575
|
+
|
|
560
576
|
class UserMetadata
|
|
561
577
|
# @private
|
|
562
578
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -444,6 +444,39 @@ module Google
|
|
|
444
444
|
execute_or_queue_command(command, &block)
|
|
445
445
|
end
|
|
446
446
|
|
|
447
|
+
# Undeletes Looker instance.
|
|
448
|
+
# @param [String] name
|
|
449
|
+
# Required. Format: projects/`project`/locations/`location`/instances/`instance`
|
|
450
|
+
# @param [Google::Apis::LookerV1::UndeleteInstanceRequest] undelete_instance_request_object
|
|
451
|
+
# @param [String] fields
|
|
452
|
+
# Selector specifying which fields to include in a partial response.
|
|
453
|
+
# @param [String] quota_user
|
|
454
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
455
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
456
|
+
# @param [Google::Apis::RequestOptions] options
|
|
457
|
+
# Request-specific options
|
|
458
|
+
#
|
|
459
|
+
# @yield [result, err] Result & error if block supplied
|
|
460
|
+
# @yieldparam result [Google::Apis::LookerV1::Operation] parsed result object
|
|
461
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
462
|
+
#
|
|
463
|
+
# @return [Google::Apis::LookerV1::Operation]
|
|
464
|
+
#
|
|
465
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
466
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
467
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
468
|
+
def undelete_instance(name, undelete_instance_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
469
|
+
command = make_simple_command(:post, 'v1/{+name}:undelete', options)
|
|
470
|
+
command.request_representation = Google::Apis::LookerV1::UndeleteInstanceRequest::Representation
|
|
471
|
+
command.request_object = undelete_instance_request_object
|
|
472
|
+
command.response_representation = Google::Apis::LookerV1::Operation::Representation
|
|
473
|
+
command.response_class = Google::Apis::LookerV1::Operation
|
|
474
|
+
command.params['name'] = name unless name.nil?
|
|
475
|
+
command.query['fields'] = fields unless fields.nil?
|
|
476
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
477
|
+
execute_or_queue_command(command, &block)
|
|
478
|
+
end
|
|
479
|
+
|
|
447
480
|
# Backup Looker instance.
|
|
448
481
|
# @param [String] parent
|
|
449
482
|
# 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.26.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.26.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:
|