google-apis-sqladmin_v1 0.59.0 → 0.61.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: 2c00f717a5cf8ee572aae74c3701ee7ef2c0ce3c642690d659fbb7cda030977d
|
4
|
+
data.tar.gz: 7ad8b0dff6e1ff86db582093c14dbb80142a818d00bfe05225dbe75c5cecf9ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2854db398623e5d00252f5c2e48f4ed9e89075b4119fcb5d17338975de4e6510d2495946ed75313522d45b661c5b1483be2c9a292d6495fc1febebe5dfe04209
|
7
|
+
data.tar.gz: a9d0704f888071d55fe5c4a5a911c9891b9379ffd2652018bca537c66834689b42d4f3a6e1d4207739cfd6b3ac1ce696ff80faa6cf020908871208922ea11e8b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-sqladmin_v1
|
2
2
|
|
3
|
+
### v0.61.0 (2024-06-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240618
|
6
|
+
|
7
|
+
### v0.60.0 (2024-06-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240607
|
10
|
+
|
3
11
|
### v0.59.0 (2024-05-26)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240521
|
@@ -2684,12 +2684,14 @@ module Google
|
|
2684
2684
|
class MaintenanceWindow
|
2685
2685
|
include Google::Apis::Core::Hashable
|
2686
2686
|
|
2687
|
-
#
|
2687
|
+
# Day of week - `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `
|
2688
|
+
# SATURDAY`, or `SUNDAY`. Specify in the UTC time zone. Returned in output as an
|
2689
|
+
# integer, 1 to 7, where `1` equals Monday.
|
2688
2690
|
# Corresponds to the JSON property `day`
|
2689
2691
|
# @return [Fixnum]
|
2690
2692
|
attr_accessor :day
|
2691
2693
|
|
2692
|
-
#
|
2694
|
+
# Hour of day - 0 to 23. Specify in the UTC time zone.
|
2693
2695
|
# Corresponds to the JSON property `hour`
|
2694
2696
|
# @return [Fixnum]
|
2695
2697
|
attr_accessor :hour
|
@@ -2699,9 +2701,9 @@ module Google
|
|
2699
2701
|
# @return [String]
|
2700
2702
|
attr_accessor :kind
|
2701
2703
|
|
2702
|
-
# Maintenance timing
|
2703
|
-
#
|
2704
|
-
#
|
2704
|
+
# Maintenance timing settings: `canary`, `stable`, or `week5`. For more
|
2705
|
+
# information, see [About maintenance on Cloud SQL instances](https://cloud.
|
2706
|
+
# google.com/sql/docs/mysql/maintenance).
|
2705
2707
|
# Corresponds to the JSON property `updateTrack`
|
2706
2708
|
# @return [String]
|
2707
2709
|
attr_accessor :update_track
|
@@ -3595,6 +3597,14 @@ module Google
|
|
3595
3597
|
# @return [String]
|
3596
3598
|
attr_accessor :edition
|
3597
3599
|
|
3600
|
+
# Optional. By default, Cloud SQL instances have schema extraction disabled for
|
3601
|
+
# Dataplex. When this parameter is set to true, schema extraction for Dataplex
|
3602
|
+
# on Cloud SQL instances is activated.
|
3603
|
+
# Corresponds to the JSON property `enableDataplexIntegration`
|
3604
|
+
# @return [Boolean]
|
3605
|
+
attr_accessor :enable_dataplex_integration
|
3606
|
+
alias_method :enable_dataplex_integration?, :enable_dataplex_integration
|
3607
|
+
|
3598
3608
|
# Optional. When this parameter is set to true, Cloud SQL instances can connect
|
3599
3609
|
# to Vertex AI to pass requests for real-time predictions and insights to the AI.
|
3600
3610
|
# The default value is false. This applies only to Cloud SQL for PostgreSQL
|
@@ -3717,6 +3727,7 @@ module Google
|
|
3717
3727
|
@deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
|
3718
3728
|
@deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
|
3719
3729
|
@edition = args[:edition] if args.key?(:edition)
|
3730
|
+
@enable_dataplex_integration = args[:enable_dataplex_integration] if args.key?(:enable_dataplex_integration)
|
3720
3731
|
@enable_google_ml_integration = args[:enable_google_ml_integration] if args.key?(:enable_google_ml_integration)
|
3721
3732
|
@insights_config = args[:insights_config] if args.key?(:insights_config)
|
3722
3733
|
@ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
|
@@ -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.61.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240618"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1603,6 +1603,7 @@ module Google
|
|
1603
1603
|
collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::SqladminV1::DenyMaintenancePeriod, decorator: Google::Apis::SqladminV1::DenyMaintenancePeriod::Representation
|
1604
1604
|
|
1605
1605
|
property :edition, as: 'edition'
|
1606
|
+
property :enable_dataplex_integration, as: 'enableDataplexIntegration'
|
1606
1607
|
property :enable_google_ml_integration, as: 'enableGoogleMlIntegration'
|
1607
1608
|
property :insights_config, as: 'insightsConfig', class: Google::Apis::SqladminV1::InsightsConfig, decorator: Google::Apis::SqladminV1::InsightsConfig::Representation
|
1608
1609
|
|
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.61.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-06-23 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.61.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: []
|