google-apis-sqladmin_v1beta4 0.71.0 → 0.73.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: 726ac1828dd3d32a5a303719f7ecba21f98e4d88e370613ad5f51f77beefb635
4
- data.tar.gz: 68d1ac150279f2ef8f7fe6d13a2da4508b779bb64982d435e933a52c89d05b37
3
+ metadata.gz: 55e4186a8f24b68092f201c10613d370fd7ed5cca1bb56cd76bc0e93103eb3e5
4
+ data.tar.gz: 16892fd6f224fcea8566894c57fd96fa9ec163a202907e48de29252c67feb16e
5
5
  SHA512:
6
- metadata.gz: 52c4d6df5138f826c636c6888d040ab04c8fbd9a94c6c9268e6dd02fdcb78bc2cb8211431931b53db22a726dd9b8bacc9c8a15f56a834f555aa11ca28664261c
7
- data.tar.gz: f557de5ad3170a5e61a75ed31eddf183a4113c873eff48c6377be62b6ecd683192a0f203373f5ccde3e542a2a79b43e6092efb9d48c0b78fd42db3a3deff57ea
6
+ metadata.gz: a3d117622c4de2a79f92ae69bd56ef962240bb4c1dec702e65529e21c8404c66210cd76c33639f08c31c3b6b8999c0029fd7d2605ffa14c4b582334c576f7852
7
+ data.tar.gz: b1a6ebdeedccbd612d2e934d0a1a13ee8c32d5b16ebd2cbfe44daacdd74cae1e3ffa29e6a95bae4707f59900fbd9cfb71aeab4cb667f200c7a0146ee1a25962d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-sqladmin_v1beta4
2
2
 
3
+ ### v0.73.0 (2024-06-23)
4
+
5
+ * Regenerated from discovery document revision 20240618
6
+
7
+ ### v0.72.0 (2024-06-16)
8
+
9
+ * Regenerated from discovery document revision 20240607
10
+
3
11
  ### v0.71.0 (2024-05-26)
4
12
 
5
13
  * Regenerated from discovery document revision 20240521
@@ -575,13 +575,6 @@ module Google
575
575
  # @return [String]
576
576
  attr_accessor :point_in_time
577
577
 
578
- # Optional. Copy clone and point-in-time recovery clone of a regional instance
579
- # in the specified zones. If not specified, clone to the same secondary zone as
580
- # the source instance. This value cannot be the same as the preferred_zone field.
581
- # Corresponds to the JSON property `preferredSecondaryZone`
582
- # @return [String]
583
- attr_accessor :preferred_secondary_zone
584
-
585
578
  # Optional. Copy clone and point-in-time recovery clone of an instance to the
586
579
  # specified zone. If no zone is specified, clone to the same primary zone as the
587
580
  # source instance.
@@ -602,7 +595,6 @@ module Google
602
595
  @kind = args[:kind] if args.key?(:kind)
603
596
  @pitr_timestamp_ms = args[:pitr_timestamp_ms] if args.key?(:pitr_timestamp_ms)
604
597
  @point_in_time = args[:point_in_time] if args.key?(:point_in_time)
605
- @preferred_secondary_zone = args[:preferred_secondary_zone] if args.key?(:preferred_secondary_zone)
606
598
  @preferred_zone = args[:preferred_zone] if args.key?(:preferred_zone)
607
599
  end
608
600
  end
@@ -2693,12 +2685,14 @@ module Google
2693
2685
  class MaintenanceWindow
2694
2686
  include Google::Apis::Core::Hashable
2695
2687
 
2696
- # day of week (1-7), starting on Monday.
2688
+ # Day of week - `MONDAY`, `TUESDAY`, `WEDNESDAY`, `THURSDAY`, `FRIDAY`, `
2689
+ # SATURDAY`, or `SUNDAY`. Specify in the UTC time zone. Returned in output as an
2690
+ # integer, 1 to 7, where `1` equals Monday.
2697
2691
  # Corresponds to the JSON property `day`
2698
2692
  # @return [Fixnum]
2699
2693
  attr_accessor :day
2700
2694
 
2701
- # hour of day - 0 to 23.
2695
+ # Hour of day - 0 to 23. Specify in the UTC time zone.
2702
2696
  # Corresponds to the JSON property `hour`
2703
2697
  # @return [Fixnum]
2704
2698
  attr_accessor :hour
@@ -2708,9 +2702,9 @@ module Google
2708
2702
  # @return [String]
2709
2703
  attr_accessor :kind
2710
2704
 
2711
- # Maintenance timing setting: `canary` (Earlier) or `stable` (Later). [Learn
2712
- # more](https://cloud.google.com/sql/docs/mysql/instance-settings#maintenance-
2713
- # timing-2ndgen).
2705
+ # Maintenance timing settings: `canary`, `stable`, or `week5`. For more
2706
+ # information, see [About maintenance on Cloud SQL instances](https://cloud.
2707
+ # google.com/sql/docs/mysql/maintenance).
2714
2708
  # Corresponds to the JSON property `updateTrack`
2715
2709
  # @return [String]
2716
2710
  attr_accessor :update_track
@@ -3604,6 +3598,14 @@ module Google
3604
3598
  # @return [String]
3605
3599
  attr_accessor :edition
3606
3600
 
3601
+ # Optional. By default, Cloud SQL instances have schema extraction disabled for
3602
+ # Dataplex. When this parameter is set to true, schema extraction for Dataplex
3603
+ # on Cloud SQL instances is activated.
3604
+ # Corresponds to the JSON property `enableDataplexIntegration`
3605
+ # @return [Boolean]
3606
+ attr_accessor :enable_dataplex_integration
3607
+ alias_method :enable_dataplex_integration?, :enable_dataplex_integration
3608
+
3607
3609
  # Optional. When this parameter is set to true, Cloud SQL instances can connect
3608
3610
  # to Vertex AI to pass requests for real-time predictions and insights to the AI.
3609
3611
  # The default value is false. This applies only to Cloud SQL for PostgreSQL
@@ -3726,6 +3728,7 @@ module Google
3726
3728
  @deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
3727
3729
  @deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
3728
3730
  @edition = args[:edition] if args.key?(:edition)
3731
+ @enable_dataplex_integration = args[:enable_dataplex_integration] if args.key?(:enable_dataplex_integration)
3729
3732
  @enable_google_ml_integration = args[:enable_google_ml_integration] if args.key?(:enable_google_ml_integration)
3730
3733
  @insights_config = args[:insights_config] if args.key?(:insights_config)
3731
3734
  @ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
@@ -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.71.0"
19
+ GEM_VERSION = "0.73.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 = "20240521"
25
+ REVISION = "20240618"
26
26
  end
27
27
  end
28
28
  end
@@ -824,7 +824,6 @@ module Google
824
824
  property :kind, as: 'kind'
825
825
  property :pitr_timestamp_ms, :numeric_string => true, as: 'pitrTimestampMs'
826
826
  property :point_in_time, as: 'pointInTime'
827
- property :preferred_secondary_zone, as: 'preferredSecondaryZone'
828
827
  property :preferred_zone, as: 'preferredZone'
829
828
  end
830
829
  end
@@ -1604,6 +1603,7 @@ module Google
1604
1603
  collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::SqladminV1beta4::DenyMaintenancePeriod, decorator: Google::Apis::SqladminV1beta4::DenyMaintenancePeriod::Representation
1605
1604
 
1606
1605
  property :edition, as: 'edition'
1606
+ property :enable_dataplex_integration, as: 'enableDataplexIntegration'
1607
1607
  property :enable_google_ml_integration, as: 'enableGoogleMlIntegration'
1608
1608
  property :insights_config, as: 'insightsConfig', class: Google::Apis::SqladminV1beta4::InsightsConfig, decorator: Google::Apis::SqladminV1beta4::InsightsConfig::Representation
1609
1609
 
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.71.0
4
+ version: 0.73.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-05-26 00:00:00.000000000 Z
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_v1beta4/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.71.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.73.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: []