google-apis-sqladmin_v1 0.66.0 → 0.68.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: a1d38ac274dc0df10fcd063888f75022edaabdea89b96f9cbbd14f846ac27921
|
4
|
+
data.tar.gz: 4aee0895ebf3194df0103ee1db3cae0e095734d7663c94c3369b38d89ba5a36f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8a5a9e391ecd73919951e1ffbd9ee778198f669830b76918f5dc92fec5b9f1e888a7db15a88799a11898885161d861037b3665ad174d5051a00d9b0a4c069e48
|
7
|
+
data.tar.gz: ae4a1ded612545c3ab5067b9fd7b8edccb74cdc32983b629857f3f4d2a7ca292cfde2767763bfe3f348fb8dbb49b35ad3f79811eb2031a1fc90cabdd9524575b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-sqladmin_v1
|
2
2
|
|
3
|
+
### v0.68.0 (2024-10-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241004
|
6
|
+
|
7
|
+
### v0.67.0 (2024-09-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240925
|
10
|
+
|
3
11
|
### v0.66.0 (2024-09-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240831
|
@@ -3464,6 +3464,54 @@ module Google
|
|
3464
3464
|
end
|
3465
3465
|
end
|
3466
3466
|
|
3467
|
+
# Settings for an automatically-setup Private Service Connect consumer endpoint
|
3468
|
+
# that is used to connect to a Cloud SQL instance.
|
3469
|
+
class PscAutoConnectionConfig
|
3470
|
+
include Google::Apis::Core::Hashable
|
3471
|
+
|
3472
|
+
# The consumer network of this consumer endpoint. This must be a resource path
|
3473
|
+
# that includes both the host project and the network name. For example, `
|
3474
|
+
# projects/project1/global/networks/network1`. The consumer host project of this
|
3475
|
+
# network might be different from the consumer service project.
|
3476
|
+
# Corresponds to the JSON property `consumerNetwork`
|
3477
|
+
# @return [String]
|
3478
|
+
attr_accessor :consumer_network
|
3479
|
+
|
3480
|
+
# The connection policy status of the consumer network.
|
3481
|
+
# Corresponds to the JSON property `consumerNetworkStatus`
|
3482
|
+
# @return [String]
|
3483
|
+
attr_accessor :consumer_network_status
|
3484
|
+
|
3485
|
+
# This is the project ID of consumer service project of this consumer endpoint.
|
3486
|
+
# Optional. This is only applicable if consumer_network is a shared vpc network.
|
3487
|
+
# Corresponds to the JSON property `consumerProject`
|
3488
|
+
# @return [String]
|
3489
|
+
attr_accessor :consumer_project
|
3490
|
+
|
3491
|
+
# The IP address of the consumer endpoint.
|
3492
|
+
# Corresponds to the JSON property `ipAddress`
|
3493
|
+
# @return [String]
|
3494
|
+
attr_accessor :ip_address
|
3495
|
+
|
3496
|
+
# The connection status of the consumer endpoint.
|
3497
|
+
# Corresponds to the JSON property `status`
|
3498
|
+
# @return [String]
|
3499
|
+
attr_accessor :status
|
3500
|
+
|
3501
|
+
def initialize(**args)
|
3502
|
+
update!(**args)
|
3503
|
+
end
|
3504
|
+
|
3505
|
+
# Update properties of this object
|
3506
|
+
def update!(**args)
|
3507
|
+
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
3508
|
+
@consumer_network_status = args[:consumer_network_status] if args.key?(:consumer_network_status)
|
3509
|
+
@consumer_project = args[:consumer_project] if args.key?(:consumer_project)
|
3510
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
3511
|
+
@status = args[:status] if args.key?(:status)
|
3512
|
+
end
|
3513
|
+
end
|
3514
|
+
|
3467
3515
|
# PSC settings for a Cloud SQL instance.
|
3468
3516
|
class PscConfig
|
3469
3517
|
include Google::Apis::Core::Hashable
|
@@ -3476,6 +3524,12 @@ module Google
|
|
3476
3524
|
# @return [Array<String>]
|
3477
3525
|
attr_accessor :allowed_consumer_projects
|
3478
3526
|
|
3527
|
+
# Optional. The list of settings for requested Private Service Connect consumer
|
3528
|
+
# endpoints that can be used to connect to this Cloud SQL instance.
|
3529
|
+
# Corresponds to the JSON property `pscAutoConnections`
|
3530
|
+
# @return [Array<Google::Apis::SqladminV1::PscAutoConnectionConfig>]
|
3531
|
+
attr_accessor :psc_auto_connections
|
3532
|
+
|
3479
3533
|
# Whether PSC connectivity is enabled for this instance.
|
3480
3534
|
# Corresponds to the JSON property `pscEnabled`
|
3481
3535
|
# @return [Boolean]
|
@@ -3489,6 +3543,7 @@ module Google
|
|
3489
3543
|
# Update properties of this object
|
3490
3544
|
def update!(**args)
|
3491
3545
|
@allowed_consumer_projects = args[:allowed_consumer_projects] if args.key?(:allowed_consumer_projects)
|
3546
|
+
@psc_auto_connections = args[:psc_auto_connections] if args.key?(:psc_auto_connections)
|
3492
3547
|
@psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
|
3493
3548
|
end
|
3494
3549
|
end
|
@@ -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.68.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241004"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -490,6 +490,12 @@ module Google
|
|
490
490
|
include Google::Apis::Core::JsonObjectSupport
|
491
491
|
end
|
492
492
|
|
493
|
+
class PscAutoConnectionConfig
|
494
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
495
|
+
|
496
|
+
include Google::Apis::Core::JsonObjectSupport
|
497
|
+
end
|
498
|
+
|
493
499
|
class PscConfig
|
494
500
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
495
501
|
|
@@ -1601,10 +1607,23 @@ module Google
|
|
1601
1607
|
end
|
1602
1608
|
end
|
1603
1609
|
|
1610
|
+
class PscAutoConnectionConfig
|
1611
|
+
# @private
|
1612
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1613
|
+
property :consumer_network, as: 'consumerNetwork'
|
1614
|
+
property :consumer_network_status, as: 'consumerNetworkStatus'
|
1615
|
+
property :consumer_project, as: 'consumerProject'
|
1616
|
+
property :ip_address, as: 'ipAddress'
|
1617
|
+
property :status, as: 'status'
|
1618
|
+
end
|
1619
|
+
end
|
1620
|
+
|
1604
1621
|
class PscConfig
|
1605
1622
|
# @private
|
1606
1623
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1607
1624
|
collection :allowed_consumer_projects, as: 'allowedConsumerProjects'
|
1625
|
+
collection :psc_auto_connections, as: 'pscAutoConnections', class: Google::Apis::SqladminV1::PscAutoConnectionConfig, decorator: Google::Apis::SqladminV1::PscAutoConnectionConfig::Representation
|
1626
|
+
|
1608
1627
|
property :psc_enabled, as: 'pscEnabled'
|
1609
1628
|
end
|
1610
1629
|
end
|
@@ -569,7 +569,7 @@ module Google
|
|
569
569
|
|
570
570
|
# Rotates the server certificate version to one previously added with the
|
571
571
|
# addServerCertificate method. For instances not using Certificate Authority
|
572
|
-
# Service (CAS) server CA,
|
572
|
+
# Service (CAS) server CA, use RotateServerCa instead.
|
573
573
|
# @param [String] project
|
574
574
|
# Required. Project ID of the project that contains the instance.
|
575
575
|
# @param [String] instance
|
@@ -649,8 +649,7 @@ module Google
|
|
649
649
|
# previously added but never used in a certificate rotation, this operation
|
650
650
|
# replaces that version. There cannot be more than one CA version waiting to be
|
651
651
|
# rotated in. For instances that have enabled Certificate Authority Service (CAS)
|
652
|
-
# based server CA,
|
653
|
-
# certificate.
|
652
|
+
# based server CA, use AddServerCertificate to add a new server certificate.
|
654
653
|
# @param [String] project
|
655
654
|
# Project ID of the project that contains the instance.
|
656
655
|
# @param [String] instance
|
@@ -688,7 +687,7 @@ module Google
|
|
688
687
|
# certificate rotation. If a server certificate version was previously added but
|
689
688
|
# never used in a certificate rotation, this operation replaces that version.
|
690
689
|
# There cannot be more than one certificate version waiting to be rotated in.
|
691
|
-
# For instances not using CAS server CA,
|
690
|
+
# For instances not using CAS server CA, use AddServerCa instead.
|
692
691
|
# @param [String] project
|
693
692
|
# Project ID of the project that contains the instance.
|
694
693
|
# @param [String] instance
|
@@ -1389,7 +1388,7 @@ module Google
|
|
1389
1388
|
|
1390
1389
|
# Rotates the server certificate to one signed by the Certificate Authority (CA)
|
1391
1390
|
# version previously added with the addServerCA method. For instances that have
|
1392
|
-
# enabled Certificate Authority Service (CAS) based server CA,
|
1391
|
+
# enabled Certificate Authority Service (CAS) based server CA, use
|
1393
1392
|
# RotateServerCertificate to rotate the server certificate.
|
1394
1393
|
# @param [String] project
|
1395
1394
|
# Project ID of the project that contains the instance.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.68.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: 2024-
|
11
|
+
date: 2024-10-13 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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.68.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud SQL Admin API V1
|