google-apis-sqladmin_v1beta4 0.50.0 → 0.51.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: 490931216ffc2b2a0395cfd2b64f8e4db8417503f94cace23acb41f46bce5063
4
- data.tar.gz: 34ebe8fa84459da1ae3b73c0db11f2349dadf28fd6d830954f78532036c6a6b4
3
+ metadata.gz: c69631f4458530cbdd9e9ea0586067768726fcd2bd8e1a19b8283923b9732db8
4
+ data.tar.gz: e198c96dc09e4b27680e597491e00d85feae02afb7d4000ac96b2cd55a9a7100
5
5
  SHA512:
6
- metadata.gz: f521564b91bf856594ddebcbcefaa744163aabd716552de427490520162bc47cfc3071c281dcc31182e7bef8606ca34d71be88d6377f198df879d1152f47a00b
7
- data.tar.gz: 5412e72cbc5c58926ad22198d308da38417d32d249506f292e4717ae407eca6a83ff7d834cd81d2dcdc2ea734161c98da1bb58d969cbb15c9eb27fb7e073428f
6
+ metadata.gz: 2ac00354cef13b33dc0c8dd0b0f88a05121a5bc263ba4220f9c3123ef54e535a35bc2d1502a381ec43b62a30b87509e1241b85c8f89daee9f2f9c9f207613ec8
7
+ data.tar.gz: 1c88677bf25c6b5a7e2a758cb72f18153d99e6e02afaa002de0e9c574e4dcfecb1fb9e0415329a56c96f14f2ece724819c8e2a38b6ad5e99e0dfffd0bb3cd78c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-sqladmin_v1beta4
2
2
 
3
+ ### v0.51.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230621
6
+
3
7
  ### v0.50.0 (2023-06-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20230607
@@ -578,6 +578,26 @@ module Google
578
578
  end
579
579
  end
580
580
 
581
+ # Data cache configurations.
582
+ class DataCacheConfig
583
+ include Google::Apis::Core::Hashable
584
+
585
+ # Whether data cache is enabled for the instance.
586
+ # Corresponds to the JSON property `dataCacheEnabled`
587
+ # @return [Boolean]
588
+ attr_accessor :data_cache_enabled
589
+ alias_method :data_cache_enabled?, :data_cache_enabled
590
+
591
+ def initialize(**args)
592
+ update!(**args)
593
+ end
594
+
595
+ # Update properties of this object
596
+ def update!(**args)
597
+ @data_cache_enabled = args[:data_cache_enabled] if args.key?(:data_cache_enabled)
598
+ end
599
+ end
600
+
581
601
  # Represents a SQL database on the Cloud SQL instance.
582
602
  class Database
583
603
  include Google::Apis::Core::Hashable
@@ -3070,6 +3090,11 @@ module Google
3070
3090
  attr_accessor :crash_safe_replication_enabled
3071
3091
  alias_method :crash_safe_replication_enabled?, :crash_safe_replication_enabled
3072
3092
 
3093
+ # Data cache configurations.
3094
+ # Corresponds to the JSON property `dataCacheConfig`
3095
+ # @return [Google::Apis::SqladminV1beta4::DataCacheConfig]
3096
+ attr_accessor :data_cache_config
3097
+
3073
3098
  # The size of data disk, in GB. The data disk size minimum is 10GB.
3074
3099
  # Corresponds to the JSON property `dataDiskSizeGb`
3075
3100
  # @return [Fixnum]
@@ -3104,6 +3129,11 @@ module Google
3104
3129
  # @return [Array<Google::Apis::SqladminV1beta4::DenyMaintenancePeriod>]
3105
3130
  attr_accessor :deny_maintenance_periods
3106
3131
 
3132
+ # Optional. The edition of the instance.
3133
+ # Corresponds to the JSON property `edition`
3134
+ # @return [String]
3135
+ attr_accessor :edition
3136
+
3107
3137
  # Insights configuration. This specifies when Cloud SQL Insights feature is
3108
3138
  # enabled and optional configuration.
3109
3139
  # Corresponds to the JSON property `insightsConfig`
@@ -3209,12 +3239,14 @@ module Google
3209
3239
  @collation = args[:collation] if args.key?(:collation)
3210
3240
  @connector_enforcement = args[:connector_enforcement] if args.key?(:connector_enforcement)
3211
3241
  @crash_safe_replication_enabled = args[:crash_safe_replication_enabled] if args.key?(:crash_safe_replication_enabled)
3242
+ @data_cache_config = args[:data_cache_config] if args.key?(:data_cache_config)
3212
3243
  @data_disk_size_gb = args[:data_disk_size_gb] if args.key?(:data_disk_size_gb)
3213
3244
  @data_disk_type = args[:data_disk_type] if args.key?(:data_disk_type)
3214
3245
  @database_flags = args[:database_flags] if args.key?(:database_flags)
3215
3246
  @database_replication_enabled = args[:database_replication_enabled] if args.key?(:database_replication_enabled)
3216
3247
  @deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
3217
3248
  @deny_maintenance_periods = args[:deny_maintenance_periods] if args.key?(:deny_maintenance_periods)
3249
+ @edition = args[:edition] if args.key?(:edition)
3218
3250
  @insights_config = args[:insights_config] if args.key?(:insights_config)
3219
3251
  @ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
3220
3252
  @kind = args[:kind] if args.key?(:kind)
@@ -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.50.0"
19
+ GEM_VERSION = "0.51.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230607"
25
+ REVISION = "20230621"
26
26
  end
27
27
  end
28
28
  end
@@ -94,6 +94,12 @@ module Google
94
94
  include Google::Apis::Core::JsonObjectSupport
95
95
  end
96
96
 
97
+ class DataCacheConfig
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
97
103
  class Database
98
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
105
 
@@ -744,6 +750,13 @@ module Google
744
750
  end
745
751
  end
746
752
 
753
+ class DataCacheConfig
754
+ # @private
755
+ class Representation < Google::Apis::Core::JsonRepresentation
756
+ property :data_cache_enabled, as: 'dataCacheEnabled'
757
+ end
758
+ end
759
+
747
760
  class Database
748
761
  # @private
749
762
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1398,6 +1411,8 @@ module Google
1398
1411
  property :collation, as: 'collation'
1399
1412
  property :connector_enforcement, as: 'connectorEnforcement'
1400
1413
  property :crash_safe_replication_enabled, as: 'crashSafeReplicationEnabled'
1414
+ property :data_cache_config, as: 'dataCacheConfig', class: Google::Apis::SqladminV1beta4::DataCacheConfig, decorator: Google::Apis::SqladminV1beta4::DataCacheConfig::Representation
1415
+
1401
1416
  property :data_disk_size_gb, :numeric_string => true, as: 'dataDiskSizeGb'
1402
1417
  property :data_disk_type, as: 'dataDiskType'
1403
1418
  collection :database_flags, as: 'databaseFlags', class: Google::Apis::SqladminV1beta4::DatabaseFlags, decorator: Google::Apis::SqladminV1beta4::DatabaseFlags::Representation
@@ -1406,6 +1421,7 @@ module Google
1406
1421
  property :deletion_protection_enabled, as: 'deletionProtectionEnabled'
1407
1422
  collection :deny_maintenance_periods, as: 'denyMaintenancePeriods', class: Google::Apis::SqladminV1beta4::DenyMaintenancePeriod, decorator: Google::Apis::SqladminV1beta4::DenyMaintenancePeriod::Representation
1408
1423
 
1424
+ property :edition, as: 'edition'
1409
1425
  property :insights_config, as: 'insightsConfig', class: Google::Apis::SqladminV1beta4::InsightsConfig, decorator: Google::Apis::SqladminV1beta4::InsightsConfig::Representation
1410
1426
 
1411
1427
  property :ip_configuration, as: 'ipConfiguration', class: Google::Apis::SqladminV1beta4::IpConfiguration, decorator: Google::Apis::SqladminV1beta4::IpConfiguration::Representation
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.50.0
4
+ version: 0.51.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: 2023-06-11 00:00:00.000000000 Z
11
+ date: 2023-06-25 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.50.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.51.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: []