google-apis-datamigration_v1 0.42.0 → 0.44.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: eb3083465c25e19430fd4e794f6e162694dc52593a15f6b8527d15a4cda0ef27
4
- data.tar.gz: 50461f2ba2de7de859156cacbfe315ac243ef3e777ccd15d642633a6ed3f7b6a
3
+ metadata.gz: 80313d214a610c9aae414e57d036525b437eb1e77204d4c9c10d80d8aa81cc5c
4
+ data.tar.gz: 81b579adff9904ba3832c7e3bb3d4ec745406c18ab246c1091fd56ac3f70c02c
5
5
  SHA512:
6
- metadata.gz: 35be5cefee15733250b2e002b21998e337f0d6411af01c3012f5b179bfcd44210b9925c4406dfd89e1457414e6650e36468b3ca2c509b4dc0a2e3a44d08b76c8
7
- data.tar.gz: ccd9447e4b79a6c7bcda6ba4d8469d7828ebe7397754b43fc6725b3e75accf2b9b3a02132ded59ef4fdc13593ba293e4e3a0c2913efadae3340824ec461f844f
6
+ metadata.gz: 928f8a4f6ed74e0f04d4a746c86811902851ef4ae387b272274839564aa16794d5d4cc1d26d66d80fe1e9c8012dceadd4dd51d21f04e5b2546375d776bc16fcc
7
+ data.tar.gz: f0b6c712e67663e7bf6dfb060e84a787ac8bbe778bc0bbcf1aa6323655ab92f926081c836fb45d28a4b3ef4288c9f67308eca0ab0d6a4139a7698a916f6cb763
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.44.0 (2023-09-24)
4
+
5
+ * Regenerated from discovery document revision 20230912
6
+
7
+ ### v0.43.0 (2023-09-17)
8
+
9
+ * Regenerated from discovery document revision 20230911
10
+
3
11
  ### v0.42.0 (2023-08-13)
4
12
 
5
13
  * Regenerated from discovery document revision 20230802
@@ -538,6 +538,14 @@ module Google
538
538
  # @return [String]
539
539
  attr_accessor :collation
540
540
 
541
+ # Data cache is an optional feature available for Cloud SQL for MySQL Enterprise
542
+ # Plus edition only. For more information on data cache, see [Data cache
543
+ # overview](https://cloud.google.com/sql/help/mysql-data-cache) in Cloud SQL
544
+ # documentation.
545
+ # Corresponds to the JSON property `dataCacheConfig`
546
+ # @return [Google::Apis::DatamigrationV1::DataCacheConfig]
547
+ attr_accessor :data_cache_config
548
+
541
549
  # The storage capacity available to the database, in GB. The minimum (and
542
550
  # default) size is 10GB.
543
551
  # Corresponds to the JSON property `dataDiskSizeGb`
@@ -635,6 +643,7 @@ module Google
635
643
  @availability_type = args[:availability_type] if args.key?(:availability_type)
636
644
  @cmek_key_name = args[:cmek_key_name] if args.key?(:cmek_key_name)
637
645
  @collation = args[:collation] if args.key?(:collation)
646
+ @data_cache_config = args[:data_cache_config] if args.key?(:data_cache_config)
638
647
  @data_disk_size_gb = args[:data_disk_size_gb] if args.key?(:data_disk_size_gb)
639
648
  @data_disk_type = args[:data_disk_type] if args.key?(:data_disk_type)
640
649
  @database_flags = args[:database_flags] if args.key?(:database_flags)
@@ -1195,6 +1204,29 @@ module Google
1195
1204
  end
1196
1205
  end
1197
1206
 
1207
+ # Data cache is an optional feature available for Cloud SQL for MySQL Enterprise
1208
+ # Plus edition only. For more information on data cache, see [Data cache
1209
+ # overview](https://cloud.google.com/sql/help/mysql-data-cache) in Cloud SQL
1210
+ # documentation.
1211
+ class DataCacheConfig
1212
+ include Google::Apis::Core::Hashable
1213
+
1214
+ # Optional. Whether data cache is enabled for the instance.
1215
+ # Corresponds to the JSON property `dataCacheEnabled`
1216
+ # @return [Boolean]
1217
+ attr_accessor :data_cache_enabled
1218
+ alias_method :data_cache_enabled?, :data_cache_enabled
1219
+
1220
+ def initialize(**args)
1221
+ update!(**args)
1222
+ end
1223
+
1224
+ # Update properties of this object
1225
+ def update!(**args)
1226
+ @data_cache_enabled = args[:data_cache_enabled] if args.key?(:data_cache_enabled)
1227
+ end
1228
+ end
1229
+
1198
1230
  # The type and version of a source or destination database.
1199
1231
  class DatabaseEngineInfo
1200
1232
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatamigrationV1
18
18
  # Version of the google-apis-datamigration_v1 gem
19
- GEM_VERSION = "0.42.0"
19
+ GEM_VERSION = "0.44.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 = "20230802"
25
+ REVISION = "20230912"
26
26
  end
27
27
  end
28
28
  end
@@ -160,6 +160,12 @@ module Google
160
160
  include Google::Apis::Core::JsonObjectSupport
161
161
  end
162
162
 
163
+ class DataCacheConfig
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
163
169
  class DatabaseEngineInfo
164
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
171
 
@@ -902,6 +908,8 @@ module Google
902
908
  property :availability_type, as: 'availabilityType'
903
909
  property :cmek_key_name, as: 'cmekKeyName'
904
910
  property :collation, as: 'collation'
911
+ property :data_cache_config, as: 'dataCacheConfig', class: Google::Apis::DatamigrationV1::DataCacheConfig, decorator: Google::Apis::DatamigrationV1::DataCacheConfig::Representation
912
+
905
913
  property :data_disk_size_gb, :numeric_string => true, as: 'dataDiskSizeGb'
906
914
  property :data_disk_type, as: 'dataDiskType'
907
915
  hash :database_flags, as: 'databaseFlags'
@@ -1051,6 +1059,13 @@ module Google
1051
1059
  end
1052
1060
  end
1053
1061
 
1062
+ class DataCacheConfig
1063
+ # @private
1064
+ class Representation < Google::Apis::Core::JsonRepresentation
1065
+ property :data_cache_enabled, as: 'dataCacheEnabled'
1066
+ end
1067
+ end
1068
+
1054
1069
  class DatabaseEngineInfo
1055
1070
  # @private
1056
1071
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datamigration_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.42.0
4
+ version: 0.44.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-08-13 00:00:00.000000000 Z
11
+ date: 2023-09-24 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-datamigration_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.44.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_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.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Database Migration API V1