google-apis-sqladmin_v1 0.75.0 → 0.76.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: 4771fbebd25607ec01f63a3e29b15d661bcfe62bfe640e05579db01137265850
|
4
|
+
data.tar.gz: 6a712d29504ae7855ca01dfc831d01ca0680458d0ea5c569ae49ddcbc925fac1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 895c5e05e8ddef470dc11fbf5a3dce2b5333606eb585c6147f28ba576865af235ed028d6f97385dd07778bfd02a62ba240f1055ef82b8bd1d20fdf77472bd921
|
7
|
+
data.tar.gz: 64558eb1e530c807a4b56e3926be251699d0b3908ebbdfb18c66f15216fcadee6dc9eb396bca320126e3f34bcef992d9b2906c9f7851c21e7b93ad62ce8fcba9
|
data/CHANGELOG.md
CHANGED
@@ -203,7 +203,8 @@ module Google
|
|
203
203
|
# @return [String]
|
204
204
|
attr_accessor :backup_run
|
205
205
|
|
206
|
-
# Output only. The database version of the instance of
|
206
|
+
# Output only. The database version of the instance of at the time this backup
|
207
|
+
# was made.
|
207
208
|
# Corresponds to the JSON property `databaseVersion`
|
208
209
|
# @return [String]
|
209
210
|
attr_accessor :database_version
|
@@ -523,7 +524,7 @@ module Google
|
|
523
524
|
# @return [String]
|
524
525
|
attr_accessor :backup_kind
|
525
526
|
|
526
|
-
# Output only. The instance database version
|
527
|
+
# Output only. The instance database version at the time this backup was made.
|
527
528
|
# Corresponds to the JSON property `databaseVersion`
|
528
529
|
# @return [String]
|
529
530
|
attr_accessor :database_version
|
@@ -793,27 +794,27 @@ module Google
|
|
793
794
|
end
|
794
795
|
end
|
795
796
|
|
796
|
-
# Details of a single node of a read pool.
|
797
|
+
# Details of a single read pool node of a read pool.
|
797
798
|
class ConnectPoolNodeConfig
|
798
799
|
include Google::Apis::Core::Hashable
|
799
800
|
|
800
|
-
# Output only. The DNS name of the node.
|
801
|
+
# Output only. The DNS name of the read pool node.
|
801
802
|
# Corresponds to the JSON property `dnsName`
|
802
803
|
# @return [String]
|
803
804
|
attr_accessor :dns_name
|
804
805
|
|
805
|
-
# Output only. The list of DNS names used by this node.
|
806
|
+
# Output only. The list of DNS names used by this read pool node.
|
806
807
|
# Corresponds to the JSON property `dnsNames`
|
807
808
|
# @return [Array<Google::Apis::SqladminV1::DnsNameMapping>]
|
808
809
|
attr_accessor :dns_names
|
809
810
|
|
810
811
|
# Output only. Mappings containing IP addresses that can be used to connect to
|
811
|
-
# the node.
|
812
|
+
# the read pool node.
|
812
813
|
# Corresponds to the JSON property `ipAddresses`
|
813
814
|
# @return [Array<Google::Apis::SqladminV1::IpMapping>]
|
814
815
|
attr_accessor :ip_addresses
|
815
816
|
|
816
|
-
# Output only. The name of the node. Doesn't include the project ID.
|
817
|
+
# Output only. The name of the read pool node. Doesn't include the project ID.
|
817
818
|
# Corresponds to the JSON property `name`
|
818
819
|
# @return [String]
|
819
820
|
attr_accessor :name
|
@@ -879,12 +880,13 @@ module Google
|
|
879
880
|
# @return [String]
|
880
881
|
attr_accessor :kind
|
881
882
|
|
882
|
-
# The number of nodes in a read pool.
|
883
|
+
# The number of read pool nodes in a read pool.
|
883
884
|
# Corresponds to the JSON property `nodeCount`
|
884
885
|
# @return [Fixnum]
|
885
886
|
attr_accessor :node_count
|
886
887
|
|
887
|
-
# Output only. Entries containing information about each node of the
|
888
|
+
# Output only. Entries containing information about each read pool node of the
|
889
|
+
# read pool.
|
888
890
|
# Corresponds to the JSON property `nodes`
|
889
891
|
# @return [Array<Google::Apis::SqladminV1::ConnectPoolNodeConfig>]
|
890
892
|
attr_accessor :nodes
|
@@ -937,16 +939,6 @@ module Google
|
|
937
939
|
class ConnectionPoolConfig
|
938
940
|
include Google::Apis::Core::Hashable
|
939
941
|
|
940
|
-
# Client idle timeout.
|
941
|
-
# Corresponds to the JSON property `clientConnectionIdleTimeout`
|
942
|
-
# @return [String]
|
943
|
-
attr_accessor :client_connection_idle_timeout
|
944
|
-
|
945
|
-
# Managed connection pool size.
|
946
|
-
# Corresponds to the JSON property `connPoolSize`
|
947
|
-
# @return [Fixnum]
|
948
|
-
attr_accessor :conn_pool_size
|
949
|
-
|
950
942
|
# Whether managed connection pooling is enabled.
|
951
943
|
# Corresponds to the JSON property `connectionPoolingEnabled`
|
952
944
|
# @return [Boolean]
|
@@ -958,40 +950,14 @@ module Google
|
|
958
950
|
# @return [Array<Google::Apis::SqladminV1::ConnectionPoolFlags>]
|
959
951
|
attr_accessor :flags
|
960
952
|
|
961
|
-
# Maximum number of client connections in connection pool.
|
962
|
-
# Corresponds to the JSON property `maxClientConnections`
|
963
|
-
# @return [Fixnum]
|
964
|
-
attr_accessor :max_client_connections
|
965
|
-
|
966
|
-
# The managed connection pool mode for the instance.
|
967
|
-
# Corresponds to the JSON property `poolMode`
|
968
|
-
# @return [String]
|
969
|
-
attr_accessor :pool_mode
|
970
|
-
|
971
|
-
# Query wait timeout.
|
972
|
-
# Corresponds to the JSON property `queryWaitTimeout`
|
973
|
-
# @return [String]
|
974
|
-
attr_accessor :query_wait_timeout
|
975
|
-
|
976
|
-
# Server idle timeout.
|
977
|
-
# Corresponds to the JSON property `serverConnectionIdleTimeout`
|
978
|
-
# @return [String]
|
979
|
-
attr_accessor :server_connection_idle_timeout
|
980
|
-
|
981
953
|
def initialize(**args)
|
982
954
|
update!(**args)
|
983
955
|
end
|
984
956
|
|
985
957
|
# Update properties of this object
|
986
958
|
def update!(**args)
|
987
|
-
@client_connection_idle_timeout = args[:client_connection_idle_timeout] if args.key?(:client_connection_idle_timeout)
|
988
|
-
@conn_pool_size = args[:conn_pool_size] if args.key?(:conn_pool_size)
|
989
959
|
@connection_pooling_enabled = args[:connection_pooling_enabled] if args.key?(:connection_pooling_enabled)
|
990
960
|
@flags = args[:flags] if args.key?(:flags)
|
991
|
-
@max_client_connections = args[:max_client_connections] if args.key?(:max_client_connections)
|
992
|
-
@pool_mode = args[:pool_mode] if args.key?(:pool_mode)
|
993
|
-
@query_wait_timeout = args[:query_wait_timeout] if args.key?(:query_wait_timeout)
|
994
|
-
@server_connection_idle_timeout = args[:server_connection_idle_timeout] if args.key?(:server_connection_idle_timeout)
|
995
961
|
end
|
996
962
|
end
|
997
963
|
|
@@ -1281,12 +1247,13 @@ module Google
|
|
1281
1247
|
# @return [String]
|
1282
1248
|
attr_accessor :name
|
1283
1249
|
|
1284
|
-
# The number of nodes in a read pool.
|
1250
|
+
# The number of read pool nodes in a read pool.
|
1285
1251
|
# Corresponds to the JSON property `nodeCount`
|
1286
1252
|
# @return [Fixnum]
|
1287
1253
|
attr_accessor :node_count
|
1288
1254
|
|
1289
|
-
# Output only. Entries containing information about each node of the
|
1255
|
+
# Output only. Entries containing information about each read pool node of the
|
1256
|
+
# read pool.
|
1290
1257
|
# Corresponds to the JSON property `nodes`
|
1291
1258
|
# @return [Array<Google::Apis::SqladminV1::PoolNodeConfig>]
|
1292
1259
|
attr_accessor :nodes
|
@@ -1884,7 +1851,7 @@ module Google
|
|
1884
1851
|
# @return [String]
|
1885
1852
|
attr_accessor :kind
|
1886
1853
|
|
1887
|
-
#
|
1854
|
+
# Whether to perform a serverless export.
|
1888
1855
|
# Corresponds to the JSON property `offload`
|
1889
1856
|
# @return [Boolean]
|
1890
1857
|
attr_accessor :offload
|
@@ -2118,8 +2085,8 @@ module Google
|
|
2118
2085
|
class PostgresExportOptions
|
2119
2086
|
include Google::Apis::Core::Hashable
|
2120
2087
|
|
2121
|
-
# Optional. Use this option to include DROP SQL statements.
|
2122
|
-
#
|
2088
|
+
# Optional. Use this option to include DROP <object> SQL statements. Use these
|
2089
|
+
# statements to delete database objects before running the import operation.
|
2123
2090
|
# Corresponds to the JSON property `clean`
|
2124
2091
|
# @return [Boolean]
|
2125
2092
|
attr_accessor :clean
|
@@ -4117,38 +4084,38 @@ module Google
|
|
4117
4084
|
end
|
4118
4085
|
end
|
4119
4086
|
|
4120
|
-
# Details of a single node of a read pool.
|
4087
|
+
# Details of a single read pool node of a read pool.
|
4121
4088
|
class PoolNodeConfig
|
4122
4089
|
include Google::Apis::Core::Hashable
|
4123
4090
|
|
4124
|
-
# Output only. The DNS name of the node.
|
4091
|
+
# Output only. The DNS name of the read pool node.
|
4125
4092
|
# Corresponds to the JSON property `dnsName`
|
4126
4093
|
# @return [String]
|
4127
4094
|
attr_accessor :dns_name
|
4128
4095
|
|
4129
|
-
# Output only. The list of DNS names used by this node.
|
4096
|
+
# Output only. The list of DNS names used by this read pool node.
|
4130
4097
|
# Corresponds to the JSON property `dnsNames`
|
4131
4098
|
# @return [Array<Google::Apis::SqladminV1::DnsNameMapping>]
|
4132
4099
|
attr_accessor :dns_names
|
4133
4100
|
|
4134
|
-
# Output only. The
|
4101
|
+
# Output only. The zone of the read pool node.
|
4135
4102
|
# Corresponds to the JSON property `gceZone`
|
4136
4103
|
# @return [String]
|
4137
4104
|
attr_accessor :gce_zone
|
4138
4105
|
|
4139
4106
|
# Output only. Mappings containing IP addresses that can be used to connect to
|
4140
|
-
# the node.
|
4107
|
+
# the read pool node.
|
4141
4108
|
# Corresponds to the JSON property `ipAddresses`
|
4142
4109
|
# @return [Array<Google::Apis::SqladminV1::IpMapping>]
|
4143
4110
|
attr_accessor :ip_addresses
|
4144
4111
|
|
4145
|
-
# Output only. The name of the node, to be used for retrieving metrics
|
4146
|
-
#
|
4112
|
+
# Output only. The name of the read pool node, to be used for retrieving metrics
|
4113
|
+
# and logs.
|
4147
4114
|
# Corresponds to the JSON property `name`
|
4148
4115
|
# @return [String]
|
4149
4116
|
attr_accessor :name
|
4150
4117
|
|
4151
|
-
# Output only. The current state of the node.
|
4118
|
+
# Output only. The current state of the read pool node.
|
4152
4119
|
# Corresponds to the JSON property `state`
|
4153
4120
|
# @return [String]
|
4154
4121
|
attr_accessor :state
|
@@ -4619,8 +4586,8 @@ module Google
|
|
4619
4586
|
|
4620
4587
|
# Optional. When this parameter is set to true, Cloud SQL instances can connect
|
4621
4588
|
# to Vertex AI to pass requests for real-time predictions and insights to the AI.
|
4622
|
-
# The default value is false. This applies only to Cloud SQL for
|
4623
|
-
# instances.
|
4589
|
+
# The default value is false. This applies only to Cloud SQL for MySQL and
|
4590
|
+
# Cloud SQL for PostgreSQL instances.
|
4624
4591
|
# Corresponds to the JSON property `enableGoogleMlIntegration`
|
4625
4592
|
# @return [Boolean]
|
4626
4593
|
attr_accessor :enable_google_ml_integration
|
@@ -5623,6 +5590,11 @@ module Google
|
|
5623
5590
|
# @return [String]
|
5624
5591
|
attr_accessor :host
|
5625
5592
|
|
5593
|
+
# Indicates if user is active for IAM Authentication.
|
5594
|
+
# Corresponds to the JSON property `iamStatus`
|
5595
|
+
# @return [String]
|
5596
|
+
attr_accessor :iam_status
|
5597
|
+
|
5626
5598
|
# The name of the Cloud SQL instance. This does not include the project ID. Can
|
5627
5599
|
# be omitted for `update` because it is already specified on the URL.
|
5628
5600
|
# Corresponds to the JSON property `instance`
|
@@ -5677,6 +5649,7 @@ module Google
|
|
5677
5649
|
@dual_password_type = args[:dual_password_type] if args.key?(:dual_password_type)
|
5678
5650
|
@etag = args[:etag] if args.key?(:etag)
|
5679
5651
|
@host = args[:host] if args.key?(:host)
|
5652
|
+
@iam_status = args[:iam_status] if args.key?(:iam_status)
|
5680
5653
|
@instance = args[:instance] if args.key?(:instance)
|
5681
5654
|
@kind = args[:kind] if args.key?(:kind)
|
5682
5655
|
@name = args[:name] if args.key?(:name)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SqladminV1
|
18
18
|
# Version of the google-apis-sqladmin_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.76.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250412"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1016,15 +1016,9 @@ module Google
|
|
1016
1016
|
class ConnectionPoolConfig
|
1017
1017
|
# @private
|
1018
1018
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1019
|
-
property :client_connection_idle_timeout, as: 'clientConnectionIdleTimeout'
|
1020
|
-
property :conn_pool_size, as: 'connPoolSize'
|
1021
1019
|
property :connection_pooling_enabled, as: 'connectionPoolingEnabled'
|
1022
1020
|
collection :flags, as: 'flags', class: Google::Apis::SqladminV1::ConnectionPoolFlags, decorator: Google::Apis::SqladminV1::ConnectionPoolFlags::Representation
|
1023
1021
|
|
1024
|
-
property :max_client_connections, as: 'maxClientConnections'
|
1025
|
-
property :pool_mode, as: 'poolMode'
|
1026
|
-
property :query_wait_timeout, as: 'queryWaitTimeout'
|
1027
|
-
property :server_connection_idle_timeout, as: 'serverConnectionIdleTimeout'
|
1028
1022
|
end
|
1029
1023
|
end
|
1030
1024
|
|
@@ -2248,6 +2242,7 @@ module Google
|
|
2248
2242
|
property :dual_password_type, as: 'dualPasswordType'
|
2249
2243
|
property :etag, as: 'etag'
|
2250
2244
|
property :host, as: 'host'
|
2245
|
+
property :iam_status, as: 'iamStatus'
|
2251
2246
|
property :instance, as: 'instance'
|
2252
2247
|
property :kind, as: 'kind'
|
2253
2248
|
property :name, as: 'name'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-sqladmin_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.76.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-27 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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-sqladmin_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.76.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|