google-apis-sqladmin_v1beta4 0.34.0 → 0.35.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb62515bc4cc823719437644624c08c39ab012bbc5788e8c8319780095430e36
|
4
|
+
data.tar.gz: 0d88bf9702615339cc90e21ada782dc40032d977317bb91d0c1a28a93b3d17c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8880bbaccc9a88bd447f4755f862dbc2b25e52e6cd0b923ea3c83552ecade57542aa2b9cf1cd5c88b56e9deb0c93d8927c8df5750cf388c69c7ae8215549297a
|
7
|
+
data.tar.gz: 39e2afbb998c7f58cdd0064929b68917d50a9b5707bf50b2c51e0b47b6d06ddbaed67f2cab60dfb8a25b0a02bfd7e5a26494ca7e50efbd4b8f979db08e42664d
|
data/CHANGELOG.md
CHANGED
@@ -298,6 +298,12 @@ module Google
|
|
298
298
|
# @return [String]
|
299
299
|
attr_accessor :status
|
300
300
|
|
301
|
+
# Backup time zone to prevent restores to an instance with a different time zone.
|
302
|
+
# Now relevant only for SQL Server.
|
303
|
+
# Corresponds to the JSON property `timeZone`
|
304
|
+
# @return [String]
|
305
|
+
attr_accessor :time_zone
|
306
|
+
|
301
307
|
# The type of this run; can be either "AUTOMATED" or "ON_DEMAND" or "FINAL".
|
302
308
|
# This field defaults to "ON_DEMAND" and is ignored, when specified for insert
|
303
309
|
# requests.
|
@@ -332,6 +338,7 @@ module Google
|
|
332
338
|
@self_link = args[:self_link] if args.key?(:self_link)
|
333
339
|
@start_time = args[:start_time] if args.key?(:start_time)
|
334
340
|
@status = args[:status] if args.key?(:status)
|
341
|
+
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
335
342
|
@type = args[:type] if args.key?(:type)
|
336
343
|
@window_start_time = args[:window_start_time] if args.key?(:window_start_time)
|
337
344
|
end
|
@@ -419,6 +426,12 @@ module Google
|
|
419
426
|
# @return [Google::Apis::SqladminV1beta4::BinLogCoordinates]
|
420
427
|
attr_accessor :bin_log_coordinates
|
421
428
|
|
429
|
+
# (SQL Server only) Clone only the specified databases from the source instance.
|
430
|
+
# Clone all databases if empty.
|
431
|
+
# Corresponds to the JSON property `databaseNames`
|
432
|
+
# @return [Array<String>]
|
433
|
+
attr_accessor :database_names
|
434
|
+
|
422
435
|
# Name of the Cloud SQL instance to be created as a clone.
|
423
436
|
# Corresponds to the JSON property `destinationInstanceName`
|
424
437
|
# @return [String]
|
@@ -448,6 +461,7 @@ module Google
|
|
448
461
|
def update!(**args)
|
449
462
|
@allocated_ip_range = args[:allocated_ip_range] if args.key?(:allocated_ip_range)
|
450
463
|
@bin_log_coordinates = args[:bin_log_coordinates] if args.key?(:bin_log_coordinates)
|
464
|
+
@database_names = args[:database_names] if args.key?(:database_names)
|
451
465
|
@destination_instance_name = args[:destination_instance_name] if args.key?(:destination_instance_name)
|
452
466
|
@kind = args[:kind] if args.key?(:kind)
|
453
467
|
@pitr_timestamp_ms = args[:pitr_timestamp_ms] if args.key?(:pitr_timestamp_ms)
|
@@ -2775,12 +2789,12 @@ module Google
|
|
2775
2789
|
attr_accessor :collation
|
2776
2790
|
|
2777
2791
|
# Specifies if connections must use Cloud SQL connectors. Option values include
|
2778
|
-
# the following:
|
2779
|
-
# Cloud SQL Connectors
|
2780
|
-
# Connectors
|
2781
|
-
# If this field is not specified when creating a new instance,
|
2782
|
-
# used. If this field is not specified when patching or updating
|
2783
|
-
# instance, it is left unchanged in the instance.
|
2792
|
+
# the following: `NOT_REQUIRED` (Cloud SQL instances can be connected without
|
2793
|
+
# Cloud SQL Connectors) and `REQUIRED` (Only allow connections that use Cloud
|
2794
|
+
# SQL Connectors) Note that using REQUIRED disables all existing authorized
|
2795
|
+
# networks. If this field is not specified when creating a new instance,
|
2796
|
+
# NOT_REQUIRED is used. If this field is not specified when patching or updating
|
2797
|
+
# an existing instance, it is left unchanged in the instance.
|
2784
2798
|
# Corresponds to the JSON property `connectorEnforcement`
|
2785
2799
|
# @return [String]
|
2786
2800
|
attr_accessor :connector_enforcement
|
@@ -2906,6 +2920,11 @@ module Google
|
|
2906
2920
|
# @return [String]
|
2907
2921
|
attr_accessor :tier
|
2908
2922
|
|
2923
|
+
# Server timezone, relevant only for Cloud SQL for SQL Server.
|
2924
|
+
# Corresponds to the JSON property `timeZone`
|
2925
|
+
# @return [String]
|
2926
|
+
attr_accessor :time_zone
|
2927
|
+
|
2909
2928
|
# User-provided labels, represented as a dictionary where each label is a single
|
2910
2929
|
# key value pair.
|
2911
2930
|
# Corresponds to the JSON property `userLabels`
|
@@ -2945,6 +2964,7 @@ module Google
|
|
2945
2964
|
@storage_auto_resize = args[:storage_auto_resize] if args.key?(:storage_auto_resize)
|
2946
2965
|
@storage_auto_resize_limit = args[:storage_auto_resize_limit] if args.key?(:storage_auto_resize_limit)
|
2947
2966
|
@tier = args[:tier] if args.key?(:tier)
|
2967
|
+
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
2948
2968
|
@user_labels = args[:user_labels] if args.key?(:user_labels)
|
2949
2969
|
end
|
2950
2970
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SqladminV1beta4
|
18
18
|
# Version of the google-apis-sqladmin_v1beta4 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.35.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220905"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -621,6 +621,7 @@ module Google
|
|
621
621
|
property :self_link, as: 'selfLink'
|
622
622
|
property :start_time, as: 'startTime'
|
623
623
|
property :status, as: 'status'
|
624
|
+
property :time_zone, as: 'timeZone'
|
624
625
|
property :type, as: 'type'
|
625
626
|
property :window_start_time, as: 'windowStartTime'
|
626
627
|
end
|
@@ -651,6 +652,7 @@ module Google
|
|
651
652
|
property :allocated_ip_range, as: 'allocatedIpRange'
|
652
653
|
property :bin_log_coordinates, as: 'binLogCoordinates', class: Google::Apis::SqladminV1beta4::BinLogCoordinates, decorator: Google::Apis::SqladminV1beta4::BinLogCoordinates::Representation
|
653
654
|
|
655
|
+
collection :database_names, as: 'databaseNames'
|
654
656
|
property :destination_instance_name, as: 'destinationInstanceName'
|
655
657
|
property :kind, as: 'kind'
|
656
658
|
property :pitr_timestamp_ms, :numeric_string => true, as: 'pitrTimestampMs'
|
@@ -1299,6 +1301,7 @@ module Google
|
|
1299
1301
|
property :storage_auto_resize, as: 'storageAutoResize'
|
1300
1302
|
property :storage_auto_resize_limit, :numeric_string => true, as: 'storageAutoResizeLimit'
|
1301
1303
|
property :tier, as: 'tier'
|
1304
|
+
property :time_zone, as: 'timeZone'
|
1302
1305
|
hash :user_labels, as: 'userLabels'
|
1303
1306
|
end
|
1304
1307
|
end
|
@@ -941,7 +941,8 @@ module Google
|
|
941
941
|
execute_or_queue_command(command, &block)
|
942
942
|
end
|
943
943
|
|
944
|
-
#
|
944
|
+
# Partially updates settings of a Cloud SQL instance by merging the request with
|
945
|
+
# the current configuration. This method supports patch semantics.
|
945
946
|
# @param [String] project
|
946
947
|
# Project ID of the project that contains the instance.
|
947
948
|
# @param [String] instance
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-sqladmin_v1beta4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.35.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-09-12 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-sqladmin_v1beta4/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.35.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1beta4
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|