google-apis-datamigration_v1 0.68.0 → 0.69.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: 7931ceb2ecc2ceb6efae8b50a166d3398a6cf7d9089486f6badaf1ae22f95366
|
4
|
+
data.tar.gz: 59351e78a4e9f0b8cecae80a68c06b9fcb5e9eeae7d132ca879183921b72f6f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: afc6ebb28d86185d256a67da15dfddf234fb9eb08597dd7e7fb215fe78acd2fdebcf2c9ee6bb1ee6fdcd0e75298d1297abfebceabc1c2ffacbcad15c90ff076f
|
7
|
+
data.tar.gz: 1aedd05084cc28b87c12decdbdf57098026a2d83ad7cef78da4dac3607c729a27aa1a0642fd09925986806faa82fed09cd869f78badf770738ef807136da6195
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-datamigration_v1
|
2
2
|
|
3
|
+
### v0.69.0 (2025-03-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250217
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.68.0 (2025-01-08)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241231
|
@@ -623,13 +623,25 @@ module Google
|
|
623
623
|
# @return [Google::Apis::DatamigrationV1::DataCacheConfig]
|
624
624
|
attr_accessor :data_cache_config
|
625
625
|
|
626
|
+
# Optional. Provisioned number of I/O operations per second for the data disk.
|
627
|
+
# This field is only used for hyperdisk-balanced disk types.
|
628
|
+
# Corresponds to the JSON property `dataDiskProvisionedIops`
|
629
|
+
# @return [Fixnum]
|
630
|
+
attr_accessor :data_disk_provisioned_iops
|
631
|
+
|
632
|
+
# Optional. Provisioned throughput measured in MiB per second for the data disk.
|
633
|
+
# This field is only used for hyperdisk-balanced disk types.
|
634
|
+
# Corresponds to the JSON property `dataDiskProvisionedThroughput`
|
635
|
+
# @return [Fixnum]
|
636
|
+
attr_accessor :data_disk_provisioned_throughput
|
637
|
+
|
626
638
|
# The storage capacity available to the database, in GB. The minimum (and
|
627
639
|
# default) size is 10GB.
|
628
640
|
# Corresponds to the JSON property `dataDiskSizeGb`
|
629
641
|
# @return [Fixnum]
|
630
642
|
attr_accessor :data_disk_size_gb
|
631
643
|
|
632
|
-
# The type of storage: `PD_SSD` (default) or `PD_HDD`.
|
644
|
+
# The type of storage: `PD_SSD` (default) or `PD_HDD` or `HYPERDISK_BALANCED`.
|
633
645
|
# Corresponds to the JSON property `dataDiskType`
|
634
646
|
# @return [String]
|
635
647
|
attr_accessor :data_disk_type
|
@@ -727,6 +739,8 @@ module Google
|
|
727
739
|
@cmek_key_name = args[:cmek_key_name] if args.key?(:cmek_key_name)
|
728
740
|
@collation = args[:collation] if args.key?(:collation)
|
729
741
|
@data_cache_config = args[:data_cache_config] if args.key?(:data_cache_config)
|
742
|
+
@data_disk_provisioned_iops = args[:data_disk_provisioned_iops] if args.key?(:data_disk_provisioned_iops)
|
743
|
+
@data_disk_provisioned_throughput = args[:data_disk_provisioned_throughput] if args.key?(:data_disk_provisioned_throughput)
|
730
744
|
@data_disk_size_gb = args[:data_disk_size_gb] if args.key?(:data_disk_size_gb)
|
731
745
|
@data_disk_type = args[:data_disk_type] if args.key?(:data_disk_type)
|
732
746
|
@database_flags = args[:database_flags] if args.key?(:database_flags)
|
@@ -782,6 +796,12 @@ module Google
|
|
782
796
|
# @return [String]
|
783
797
|
attr_accessor :comment
|
784
798
|
|
799
|
+
# Is the column a computed column.
|
800
|
+
# Corresponds to the JSON property `computed`
|
801
|
+
# @return [Boolean]
|
802
|
+
attr_accessor :computed
|
803
|
+
alias_method :computed?, :computed
|
804
|
+
|
785
805
|
# Custom engine specific features.
|
786
806
|
# Corresponds to the JSON property `customFeatures`
|
787
807
|
# @return [Hash<String,Object>]
|
@@ -857,6 +877,7 @@ module Google
|
|
857
877
|
@charset = args[:charset] if args.key?(:charset)
|
858
878
|
@collation = args[:collation] if args.key?(:collation)
|
859
879
|
@comment = args[:comment] if args.key?(:comment)
|
880
|
+
@computed = args[:computed] if args.key?(:computed)
|
860
881
|
@custom_features = args[:custom_features] if args.key?(:custom_features)
|
861
882
|
@data_type = args[:data_type] if args.key?(:data_type)
|
862
883
|
@default_value = args[:default_value] if args.key?(:default_value)
|
@@ -1008,13 +1029,13 @@ module Google
|
|
1008
1029
|
# @return [String]
|
1009
1030
|
attr_accessor :role
|
1010
1031
|
|
1011
|
-
# Output only.
|
1032
|
+
# Output only. Reserved for future use.
|
1012
1033
|
# Corresponds to the JSON property `satisfiesPzi`
|
1013
1034
|
# @return [Boolean]
|
1014
1035
|
attr_accessor :satisfies_pzi
|
1015
1036
|
alias_method :satisfies_pzi?, :satisfies_pzi
|
1016
1037
|
|
1017
|
-
# Output only.
|
1038
|
+
# Output only. Reserved for future use.
|
1018
1039
|
# Corresponds to the JSON property `satisfiesPzs`
|
1019
1040
|
# @return [Boolean]
|
1020
1041
|
attr_accessor :satisfies_pzs
|
@@ -1713,11 +1734,22 @@ module Google
|
|
1713
1734
|
# @return [String]
|
1714
1735
|
attr_accessor :ddl
|
1715
1736
|
|
1737
|
+
# The DDL Kind selected for apply, or SOURCE if getting the source tree.
|
1738
|
+
# Corresponds to the JSON property `ddlKind`
|
1739
|
+
# @return [String]
|
1740
|
+
attr_accessor :ddl_kind
|
1741
|
+
|
1716
1742
|
# Type of DDL (Create, Alter).
|
1717
1743
|
# Corresponds to the JSON property `ddlType`
|
1718
1744
|
# @return [String]
|
1719
1745
|
attr_accessor :ddl_type
|
1720
1746
|
|
1747
|
+
# If ddl_kind is USER_EDIT, this holds the DDL kind of the original content -
|
1748
|
+
# DETERMINISTIC or AI. Otherwise, this is DDL_KIND_UNSPECIFIED.
|
1749
|
+
# Corresponds to the JSON property `editedDdlKind`
|
1750
|
+
# @return [String]
|
1751
|
+
attr_accessor :edited_ddl_kind
|
1752
|
+
|
1721
1753
|
# The name of the database entity the ddl refers to.
|
1722
1754
|
# Corresponds to the JSON property `entity`
|
1723
1755
|
# @return [String]
|
@@ -1740,7 +1772,9 @@ module Google
|
|
1740
1772
|
# Update properties of this object
|
1741
1773
|
def update!(**args)
|
1742
1774
|
@ddl = args[:ddl] if args.key?(:ddl)
|
1775
|
+
@ddl_kind = args[:ddl_kind] if args.key?(:ddl_kind)
|
1743
1776
|
@ddl_type = args[:ddl_type] if args.key?(:ddl_type)
|
1777
|
+
@edited_ddl_kind = args[:edited_ddl_kind] if args.key?(:edited_ddl_kind)
|
1744
1778
|
@entity = args[:entity] if args.key?(:entity)
|
1745
1779
|
@entity_type = args[:entity_type] if args.key?(:entity_type)
|
1746
1780
|
@issue_id = args[:issue_id] if args.key?(:issue_id)
|
@@ -3142,13 +3176,13 @@ module Google
|
|
3142
3176
|
# @return [Google::Apis::DatamigrationV1::ReverseSshConnectivity]
|
3143
3177
|
attr_accessor :reverse_ssh_connectivity
|
3144
3178
|
|
3145
|
-
# Output only.
|
3179
|
+
# Output only. Reserved for future use.
|
3146
3180
|
# Corresponds to the JSON property `satisfiesPzi`
|
3147
3181
|
# @return [Boolean]
|
3148
3182
|
attr_accessor :satisfies_pzi
|
3149
3183
|
alias_method :satisfies_pzi?, :satisfies_pzi
|
3150
3184
|
|
3151
|
-
# Output only.
|
3185
|
+
# Output only. Reserved for future use.
|
3152
3186
|
# Corresponds to the JSON property `satisfiesPzs`
|
3153
3187
|
# @return [Boolean]
|
3154
3188
|
attr_accessor :satisfies_pzs
|
@@ -4221,13 +4255,13 @@ module Google
|
|
4221
4255
|
# @return [String]
|
4222
4256
|
attr_accessor :name
|
4223
4257
|
|
4224
|
-
# Output only.
|
4258
|
+
# Output only. Reserved for future use.
|
4225
4259
|
# Corresponds to the JSON property `satisfiesPzi`
|
4226
4260
|
# @return [Boolean]
|
4227
4261
|
attr_accessor :satisfies_pzi
|
4228
4262
|
alias_method :satisfies_pzi?, :satisfies_pzi
|
4229
4263
|
|
4230
|
-
# Output only.
|
4264
|
+
# Output only. Reserved for future use.
|
4231
4265
|
# Corresponds to the JSON property `satisfiesPzs`
|
4232
4266
|
# @return [Boolean]
|
4233
4267
|
attr_accessor :satisfies_pzs
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.69.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250217"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1066,6 +1066,8 @@ module Google
|
|
1066
1066
|
property :collation, as: 'collation'
|
1067
1067
|
property :data_cache_config, as: 'dataCacheConfig', class: Google::Apis::DatamigrationV1::DataCacheConfig, decorator: Google::Apis::DatamigrationV1::DataCacheConfig::Representation
|
1068
1068
|
|
1069
|
+
property :data_disk_provisioned_iops, :numeric_string => true, as: 'dataDiskProvisionedIops'
|
1070
|
+
property :data_disk_provisioned_throughput, :numeric_string => true, as: 'dataDiskProvisionedThroughput'
|
1069
1071
|
property :data_disk_size_gb, :numeric_string => true, as: 'dataDiskSizeGb'
|
1070
1072
|
property :data_disk_type, as: 'dataDiskType'
|
1071
1073
|
hash :database_flags, as: 'databaseFlags'
|
@@ -1094,6 +1096,7 @@ module Google
|
|
1094
1096
|
property :charset, as: 'charset'
|
1095
1097
|
property :collation, as: 'collation'
|
1096
1098
|
property :comment, as: 'comment'
|
1099
|
+
property :computed, as: 'computed'
|
1097
1100
|
hash :custom_features, as: 'customFeatures'
|
1098
1101
|
property :data_type, as: 'dataType'
|
1099
1102
|
property :default_value, as: 'defaultValue'
|
@@ -1353,7 +1356,9 @@ module Google
|
|
1353
1356
|
# @private
|
1354
1357
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1355
1358
|
property :ddl, as: 'ddl'
|
1359
|
+
property :ddl_kind, as: 'ddlKind'
|
1356
1360
|
property :ddl_type, as: 'ddlType'
|
1361
|
+
property :edited_ddl_kind, as: 'editedDdlKind'
|
1357
1362
|
property :entity, as: 'entity'
|
1358
1363
|
property :entity_type, as: 'entityType'
|
1359
1364
|
collection :issue_id, as: 'issueId'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-datamigration_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.69.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.69.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.5
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Database Migration API V1
|
79
79
|
test_files: []
|