google-apis-looker_v1 0.25.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
|
@@ -410,6 +410,13 @@ module Google
|
|
|
410
410
|
# @return [Google::Apis::LookerV1::AdminSettings]
|
|
411
411
|
attr_accessor :admin_settings
|
|
412
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
|
+
|
|
413
420
|
# Optional. Storage class of the instance.
|
|
414
421
|
# Corresponds to the JSON property `classType`
|
|
415
422
|
# @return [String]
|
|
@@ -577,11 +584,21 @@ module Google
|
|
|
577
584
|
attr_accessor :satisfies_pzs
|
|
578
585
|
alias_method :satisfies_pzs?, :satisfies_pzs
|
|
579
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
|
+
|
|
580
592
|
# Output only. The state of the instance.
|
|
581
593
|
# Corresponds to the JSON property `state`
|
|
582
594
|
# @return [String]
|
|
583
595
|
attr_accessor :state
|
|
584
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
|
+
|
|
585
602
|
# Output only. The time when the Looker instance was last updated.
|
|
586
603
|
# Corresponds to the JSON property `updateTime`
|
|
587
604
|
# @return [String]
|
|
@@ -599,6 +616,7 @@ module Google
|
|
|
599
616
|
# Update properties of this object
|
|
600
617
|
def update!(**args)
|
|
601
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)
|
|
602
620
|
@class_type = args[:class_type] if args.key?(:class_type)
|
|
603
621
|
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
|
604
622
|
@controlled_egress_config = args[:controlled_egress_config] if args.key?(:controlled_egress_config)
|
|
@@ -629,7 +647,9 @@ module Google
|
|
|
629
647
|
@reserved_range = args[:reserved_range] if args.key?(:reserved_range)
|
|
630
648
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
631
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)
|
|
632
651
|
@state = args[:state] if args.key?(:state)
|
|
652
|
+
@suspended_time = args[:suspended_time] if args.key?(:suspended_time)
|
|
633
653
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
634
654
|
@user_metadata = args[:user_metadata] if args.key?(:user_metadata)
|
|
635
655
|
end
|
|
@@ -1283,6 +1303,19 @@ module Google
|
|
|
1283
1303
|
end
|
|
1284
1304
|
end
|
|
1285
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
|
+
|
|
1286
1319
|
# Metadata about users for a Looker instance.
|
|
1287
1320
|
class UserMetadata
|
|
1288
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
|
|
|
@@ -336,6 +342,7 @@ module Google
|
|
|
336
342
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
337
343
|
property :admin_settings, as: 'adminSettings', class: Google::Apis::LookerV1::AdminSettings, decorator: Google::Apis::LookerV1::AdminSettings::Representation
|
|
338
344
|
|
|
345
|
+
property :catalog_integration_enabled, as: 'catalogIntegrationEnabled'
|
|
339
346
|
property :class_type, as: 'classType'
|
|
340
347
|
property :consumer_network, as: 'consumerNetwork'
|
|
341
348
|
property :controlled_egress_config, as: 'controlledEgressConfig', class: Google::Apis::LookerV1::ControlledEgressConfig, decorator: Google::Apis::LookerV1::ControlledEgressConfig::Representation
|
|
@@ -376,7 +383,9 @@ module Google
|
|
|
376
383
|
property :reserved_range, as: 'reservedRange'
|
|
377
384
|
property :satisfies_pzi, as: 'satisfiesPzi'
|
|
378
385
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
386
|
+
property :soft_delete_reason, as: 'softDeleteReason'
|
|
379
387
|
property :state, as: 'state'
|
|
388
|
+
property :suspended_time, as: 'suspendedTime'
|
|
380
389
|
property :update_time, as: 'updateTime'
|
|
381
390
|
property :user_metadata, as: 'userMetadata', class: Google::Apis::LookerV1::UserMetadata, decorator: Google::Apis::LookerV1::UserMetadata::Representation
|
|
382
391
|
|
|
@@ -558,6 +567,12 @@ module Google
|
|
|
558
567
|
end
|
|
559
568
|
end
|
|
560
569
|
|
|
570
|
+
class UndeleteInstanceRequest
|
|
571
|
+
# @private
|
|
572
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
573
|
+
end
|
|
574
|
+
end
|
|
575
|
+
|
|
561
576
|
class UserMetadata
|
|
562
577
|
# @private
|
|
563
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:
|