google-apis-datamigration_v1 0.68.0 → 0.70.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: 735b840bd2d663f570ca3c2ae766c86b2b9c617aeb163cbb08f7bb511bcafdd0
|
4
|
+
data.tar.gz: 6c0d107202c47dd20e4c246f34f1a200fbd513c7029662a2e66009fc98e7d470
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7fde6f613eeee627fb442dbc29f013b4b8137535406680b35fad7c19f3709a2162d6eb33744e6602f1ffb95d114c1a063e0bb1971a028c0310f62ab04cbe79ce
|
7
|
+
data.tar.gz: 65b108743544d09e0d529d64d02b9388b2e3cb5198e5bacdbfedc4d4ef9a08b7fcbbdbfb132ad28b8df71609c9de7c70767239f12c3404b9cc0d87c763505071
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-datamigration_v1
|
2
2
|
|
3
|
+
### v0.70.0 (2025-03-09)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250226
|
6
|
+
|
7
|
+
### v0.69.0 (2025-03-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250217
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.68.0 (2025-01-08)
|
4
13
|
|
5
14
|
* 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,23 @@ module Google
|
|
1713
1734
|
# @return [String]
|
1714
1735
|
attr_accessor :ddl
|
1715
1736
|
|
1737
|
+
# The DDL Kind selected for apply, or UNSPECIFIED if the entity wasn't converted
|
1738
|
+
# yet.
|
1739
|
+
# Corresponds to the JSON property `ddlKind`
|
1740
|
+
# @return [String]
|
1741
|
+
attr_accessor :ddl_kind
|
1742
|
+
|
1716
1743
|
# Type of DDL (Create, Alter).
|
1717
1744
|
# Corresponds to the JSON property `ddlType`
|
1718
1745
|
# @return [String]
|
1719
1746
|
attr_accessor :ddl_type
|
1720
1747
|
|
1748
|
+
# If ddl_kind is USER_EDIT, this holds the DDL kind of the original content -
|
1749
|
+
# DETERMINISTIC or AI. Otherwise, this is DDL_KIND_UNSPECIFIED.
|
1750
|
+
# Corresponds to the JSON property `editedDdlKind`
|
1751
|
+
# @return [String]
|
1752
|
+
attr_accessor :edited_ddl_kind
|
1753
|
+
|
1721
1754
|
# The name of the database entity the ddl refers to.
|
1722
1755
|
# Corresponds to the JSON property `entity`
|
1723
1756
|
# @return [String]
|
@@ -1740,7 +1773,9 @@ module Google
|
|
1740
1773
|
# Update properties of this object
|
1741
1774
|
def update!(**args)
|
1742
1775
|
@ddl = args[:ddl] if args.key?(:ddl)
|
1776
|
+
@ddl_kind = args[:ddl_kind] if args.key?(:ddl_kind)
|
1743
1777
|
@ddl_type = args[:ddl_type] if args.key?(:ddl_type)
|
1778
|
+
@edited_ddl_kind = args[:edited_ddl_kind] if args.key?(:edited_ddl_kind)
|
1744
1779
|
@entity = args[:entity] if args.key?(:entity)
|
1745
1780
|
@entity_type = args[:entity_type] if args.key?(:entity_type)
|
1746
1781
|
@issue_id = args[:issue_id] if args.key?(:issue_id)
|
@@ -3142,13 +3177,13 @@ module Google
|
|
3142
3177
|
# @return [Google::Apis::DatamigrationV1::ReverseSshConnectivity]
|
3143
3178
|
attr_accessor :reverse_ssh_connectivity
|
3144
3179
|
|
3145
|
-
# Output only.
|
3180
|
+
# Output only. Reserved for future use.
|
3146
3181
|
# Corresponds to the JSON property `satisfiesPzi`
|
3147
3182
|
# @return [Boolean]
|
3148
3183
|
attr_accessor :satisfies_pzi
|
3149
3184
|
alias_method :satisfies_pzi?, :satisfies_pzi
|
3150
3185
|
|
3151
|
-
# Output only.
|
3186
|
+
# Output only. Reserved for future use.
|
3152
3187
|
# Corresponds to the JSON property `satisfiesPzs`
|
3153
3188
|
# @return [Boolean]
|
3154
3189
|
attr_accessor :satisfies_pzs
|
@@ -4221,13 +4256,13 @@ module Google
|
|
4221
4256
|
# @return [String]
|
4222
4257
|
attr_accessor :name
|
4223
4258
|
|
4224
|
-
# Output only.
|
4259
|
+
# Output only. Reserved for future use.
|
4225
4260
|
# Corresponds to the JSON property `satisfiesPzi`
|
4226
4261
|
# @return [Boolean]
|
4227
4262
|
attr_accessor :satisfies_pzi
|
4228
4263
|
alias_method :satisfies_pzi?, :satisfies_pzi
|
4229
4264
|
|
4230
|
-
# Output only.
|
4265
|
+
# Output only. Reserved for future use.
|
4231
4266
|
# Corresponds to the JSON property `satisfiesPzs`
|
4232
4267
|
# @return [Boolean]
|
4233
4268
|
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.70.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 = "20250226"
|
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.70.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-09 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.70.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: []
|