google-apis-migrationcenter_v1alpha1 0.28.0 → 0.29.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: b0a961a0edb117fd94fab199c30bcce695903359f71cb235782593a7d5bd40e2
|
4
|
+
data.tar.gz: e10d1e1f10197ff37dfb345d29fec81e0223ed840607de53c7b420ccbdef8e87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d934b8ba7fdce6730d787c5ab2b5990a3e16270d4da4aafd4b1ddc59de4c2986ceeb835e4da6030d6edae8f84700efbbcdd5536b5b873ece55cd964c7b0ef80f
|
7
|
+
data.tar.gz: 021a1a2c8a61eb469930451017442e95757a2dffd565a37b21510a3bd8f7c11be7823607415c8de0200d5adf2b769f33b4cdf613b2ce05d7741cad9fd0886976
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-migrationcenter_v1alpha1
|
2
2
|
|
3
|
+
### v0.29.0 (2024-05-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240516
|
6
|
+
* Regenerated using generator version 0.15.0
|
7
|
+
|
3
8
|
### v0.28.0 (2024-05-05)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240421
|
@@ -1434,12 +1434,12 @@ module Google
|
|
1434
1434
|
class DatabaseDeploymentTopology
|
1435
1435
|
include Google::Apis::Core::Hashable
|
1436
1436
|
|
1437
|
-
# Optional. Number of total cores.
|
1437
|
+
# Optional. Number of total logical cores.
|
1438
1438
|
# Corresponds to the JSON property `coreCount`
|
1439
1439
|
# @return [Fixnum]
|
1440
1440
|
attr_accessor :core_count
|
1441
1441
|
|
1442
|
-
# Optional. Number of total cores limited by db deployment.
|
1442
|
+
# Optional. Number of total logical cores limited by db deployment.
|
1443
1443
|
# Corresponds to the JSON property `coreLimit`
|
1444
1444
|
# @return [Fixnum]
|
1445
1445
|
attr_accessor :core_limit
|
@@ -1779,16 +1779,31 @@ module Google
|
|
1779
1779
|
class DatabaseSchema
|
1780
1780
|
include Google::Apis::Core::Hashable
|
1781
1781
|
|
1782
|
+
# Specific details for a Mysql database.
|
1783
|
+
# Corresponds to the JSON property `mysql`
|
1784
|
+
# @return [Google::Apis::MigrationcenterV1alpha1::MySqlSchemaDetails]
|
1785
|
+
attr_accessor :mysql
|
1786
|
+
|
1782
1787
|
# List of details of objects by category.
|
1783
1788
|
# Corresponds to the JSON property `objects`
|
1784
1789
|
# @return [Array<Google::Apis::MigrationcenterV1alpha1::DatabaseObjects>]
|
1785
1790
|
attr_accessor :objects
|
1786
1791
|
|
1792
|
+
# Specific details for a PostgreSql schema.
|
1793
|
+
# Corresponds to the JSON property `postgresql`
|
1794
|
+
# @return [Google::Apis::MigrationcenterV1alpha1::PostgreSqlSchemaDetails]
|
1795
|
+
attr_accessor :postgresql
|
1796
|
+
|
1787
1797
|
# The name of the schema.
|
1788
1798
|
# Corresponds to the JSON property `schemaName`
|
1789
1799
|
# @return [String]
|
1790
1800
|
attr_accessor :schema_name
|
1791
1801
|
|
1802
|
+
# Specific details for a SqlServer database.
|
1803
|
+
# Corresponds to the JSON property `sqlServer`
|
1804
|
+
# @return [Google::Apis::MigrationcenterV1alpha1::SqlServerSchemaDetails]
|
1805
|
+
attr_accessor :sql_server
|
1806
|
+
|
1792
1807
|
# The total size of tables in bytes.
|
1793
1808
|
# Corresponds to the JSON property `tablesSizeBytes`
|
1794
1809
|
# @return [Fixnum]
|
@@ -1800,8 +1815,11 @@ module Google
|
|
1800
1815
|
|
1801
1816
|
# Update properties of this object
|
1802
1817
|
def update!(**args)
|
1818
|
+
@mysql = args[:mysql] if args.key?(:mysql)
|
1803
1819
|
@objects = args[:objects] if args.key?(:objects)
|
1820
|
+
@postgresql = args[:postgresql] if args.key?(:postgresql)
|
1804
1821
|
@schema_name = args[:schema_name] if args.key?(:schema_name)
|
1822
|
+
@sql_server = args[:sql_server] if args.key?(:sql_server)
|
1805
1823
|
@tables_size_bytes = args[:tables_size_bytes] if args.key?(:tables_size_bytes)
|
1806
1824
|
end
|
1807
1825
|
end
|
@@ -3979,6 +3997,119 @@ module Google
|
|
3979
3997
|
end
|
3980
3998
|
end
|
3981
3999
|
|
4000
|
+
# MySql property.
|
4001
|
+
class MySqlProperty
|
4002
|
+
include Google::Apis::Core::Hashable
|
4003
|
+
|
4004
|
+
# Required. The property is enabled.
|
4005
|
+
# Corresponds to the JSON property `enabled`
|
4006
|
+
# @return [Boolean]
|
4007
|
+
attr_accessor :enabled
|
4008
|
+
alias_method :enabled?, :enabled
|
4009
|
+
|
4010
|
+
# Required. The property numeric value.
|
4011
|
+
# Corresponds to the JSON property `numericValue`
|
4012
|
+
# @return [Fixnum]
|
4013
|
+
attr_accessor :numeric_value
|
4014
|
+
|
4015
|
+
# Required. The property name.
|
4016
|
+
# Corresponds to the JSON property `property`
|
4017
|
+
# @return [String]
|
4018
|
+
attr_accessor :property
|
4019
|
+
|
4020
|
+
def initialize(**args)
|
4021
|
+
update!(**args)
|
4022
|
+
end
|
4023
|
+
|
4024
|
+
# Update properties of this object
|
4025
|
+
def update!(**args)
|
4026
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
4027
|
+
@numeric_value = args[:numeric_value] if args.key?(:numeric_value)
|
4028
|
+
@property = args[:property] if args.key?(:property)
|
4029
|
+
end
|
4030
|
+
end
|
4031
|
+
|
4032
|
+
# Specific details for a Mysql database.
|
4033
|
+
class MySqlSchemaDetails
|
4034
|
+
include Google::Apis::Core::Hashable
|
4035
|
+
|
4036
|
+
# Optional. Mysql storage engine tables.
|
4037
|
+
# Corresponds to the JSON property `storageEngines`
|
4038
|
+
# @return [Array<Google::Apis::MigrationcenterV1alpha1::MySqlStorageEngineDetails>]
|
4039
|
+
attr_accessor :storage_engines
|
4040
|
+
|
4041
|
+
def initialize(**args)
|
4042
|
+
update!(**args)
|
4043
|
+
end
|
4044
|
+
|
4045
|
+
# Update properties of this object
|
4046
|
+
def update!(**args)
|
4047
|
+
@storage_engines = args[:storage_engines] if args.key?(:storage_engines)
|
4048
|
+
end
|
4049
|
+
end
|
4050
|
+
|
4051
|
+
# Mysql storage engine tables.
|
4052
|
+
class MySqlStorageEngineDetails
|
4053
|
+
include Google::Apis::Core::Hashable
|
4054
|
+
|
4055
|
+
# Optional. The number of encrypted tables.
|
4056
|
+
# Corresponds to the JSON property `encryptedTableCount`
|
4057
|
+
# @return [Fixnum]
|
4058
|
+
attr_accessor :encrypted_table_count
|
4059
|
+
|
4060
|
+
# Required. The storage engine.
|
4061
|
+
# Corresponds to the JSON property `engine`
|
4062
|
+
# @return [String]
|
4063
|
+
attr_accessor :engine
|
4064
|
+
|
4065
|
+
# Optional. The number of tables.
|
4066
|
+
# Corresponds to the JSON property `tableCount`
|
4067
|
+
# @return [Fixnum]
|
4068
|
+
attr_accessor :table_count
|
4069
|
+
|
4070
|
+
def initialize(**args)
|
4071
|
+
update!(**args)
|
4072
|
+
end
|
4073
|
+
|
4074
|
+
# Update properties of this object
|
4075
|
+
def update!(**args)
|
4076
|
+
@encrypted_table_count = args[:encrypted_table_count] if args.key?(:encrypted_table_count)
|
4077
|
+
@engine = args[:engine] if args.key?(:engine)
|
4078
|
+
@table_count = args[:table_count] if args.key?(:table_count)
|
4079
|
+
end
|
4080
|
+
end
|
4081
|
+
|
4082
|
+
# MySql variable.
|
4083
|
+
class MySqlVariable
|
4084
|
+
include Google::Apis::Core::Hashable
|
4085
|
+
|
4086
|
+
# Required. The variable category.
|
4087
|
+
# Corresponds to the JSON property `category`
|
4088
|
+
# @return [String]
|
4089
|
+
attr_accessor :category
|
4090
|
+
|
4091
|
+
# Required. The variable value.
|
4092
|
+
# Corresponds to the JSON property `value`
|
4093
|
+
# @return [String]
|
4094
|
+
attr_accessor :value
|
4095
|
+
|
4096
|
+
# Required. The variable name.
|
4097
|
+
# Corresponds to the JSON property `variable`
|
4098
|
+
# @return [String]
|
4099
|
+
attr_accessor :variable
|
4100
|
+
|
4101
|
+
def initialize(**args)
|
4102
|
+
update!(**args)
|
4103
|
+
end
|
4104
|
+
|
4105
|
+
# Update properties of this object
|
4106
|
+
def update!(**args)
|
4107
|
+
@category = args[:category] if args.key?(:category)
|
4108
|
+
@value = args[:value] if args.key?(:value)
|
4109
|
+
@variable = args[:variable] if args.key?(:variable)
|
4110
|
+
end
|
4111
|
+
end
|
4112
|
+
|
3982
4113
|
# Specific details for a Mysql database deployment.
|
3983
4114
|
class MysqlDatabaseDeployment
|
3984
4115
|
include Google::Apis::Core::Hashable
|
@@ -3988,6 +4119,21 @@ module Google
|
|
3988
4119
|
# @return [Array<Google::Apis::MigrationcenterV1alpha1::MySqlPlugin>]
|
3989
4120
|
attr_accessor :plugins
|
3990
4121
|
|
4122
|
+
# Optional. List of MySql properties.
|
4123
|
+
# Corresponds to the JSON property `properties`
|
4124
|
+
# @return [Array<Google::Apis::MigrationcenterV1alpha1::MySqlProperty>]
|
4125
|
+
attr_accessor :properties
|
4126
|
+
|
4127
|
+
# Optional. Number of resource groups.
|
4128
|
+
# Corresponds to the JSON property `resourceGroupsCount`
|
4129
|
+
# @return [Fixnum]
|
4130
|
+
attr_accessor :resource_groups_count
|
4131
|
+
|
4132
|
+
# Optional. List of MySql variables.
|
4133
|
+
# Corresponds to the JSON property `variables`
|
4134
|
+
# @return [Array<Google::Apis::MigrationcenterV1alpha1::MySqlVariable>]
|
4135
|
+
attr_accessor :variables
|
4136
|
+
|
3991
4137
|
def initialize(**args)
|
3992
4138
|
update!(**args)
|
3993
4139
|
end
|
@@ -3995,6 +4141,9 @@ module Google
|
|
3995
4141
|
# Update properties of this object
|
3996
4142
|
def update!(**args)
|
3997
4143
|
@plugins = args[:plugins] if args.key?(:plugins)
|
4144
|
+
@properties = args[:properties] if args.key?(:properties)
|
4145
|
+
@resource_groups_count = args[:resource_groups_count] if args.key?(:resource_groups_count)
|
4146
|
+
@variables = args[:variables] if args.key?(:variables)
|
3998
4147
|
end
|
3999
4148
|
end
|
4000
4149
|
|
@@ -4575,12 +4724,163 @@ module Google
|
|
4575
4724
|
class PostgreSqlDatabaseDeployment
|
4576
4725
|
include Google::Apis::Core::Hashable
|
4577
4726
|
|
4727
|
+
# Optional. List of PostgreSql properties.
|
4728
|
+
# Corresponds to the JSON property `properties`
|
4729
|
+
# @return [Array<Google::Apis::MigrationcenterV1alpha1::PostgreSqlProperty>]
|
4730
|
+
attr_accessor :properties
|
4731
|
+
|
4732
|
+
# Optional. List of PostgreSql settings.
|
4733
|
+
# Corresponds to the JSON property `settings`
|
4734
|
+
# @return [Array<Google::Apis::MigrationcenterV1alpha1::PostgreSqlSetting>]
|
4735
|
+
attr_accessor :settings
|
4736
|
+
|
4578
4737
|
def initialize(**args)
|
4579
4738
|
update!(**args)
|
4580
4739
|
end
|
4581
4740
|
|
4582
4741
|
# Update properties of this object
|
4583
4742
|
def update!(**args)
|
4743
|
+
@properties = args[:properties] if args.key?(:properties)
|
4744
|
+
@settings = args[:settings] if args.key?(:settings)
|
4745
|
+
end
|
4746
|
+
end
|
4747
|
+
|
4748
|
+
# PostgreSql extension.
|
4749
|
+
class PostgreSqlExtension
|
4750
|
+
include Google::Apis::Core::Hashable
|
4751
|
+
|
4752
|
+
# Required. The extension name.
|
4753
|
+
# Corresponds to the JSON property `extension`
|
4754
|
+
# @return [String]
|
4755
|
+
attr_accessor :extension
|
4756
|
+
|
4757
|
+
# Required. The extension version.
|
4758
|
+
# Corresponds to the JSON property `version`
|
4759
|
+
# @return [String]
|
4760
|
+
attr_accessor :version
|
4761
|
+
|
4762
|
+
def initialize(**args)
|
4763
|
+
update!(**args)
|
4764
|
+
end
|
4765
|
+
|
4766
|
+
# Update properties of this object
|
4767
|
+
def update!(**args)
|
4768
|
+
@extension = args[:extension] if args.key?(:extension)
|
4769
|
+
@version = args[:version] if args.key?(:version)
|
4770
|
+
end
|
4771
|
+
end
|
4772
|
+
|
4773
|
+
# PostgreSql property.
|
4774
|
+
class PostgreSqlProperty
|
4775
|
+
include Google::Apis::Core::Hashable
|
4776
|
+
|
4777
|
+
# Required. The property is enabled.
|
4778
|
+
# Corresponds to the JSON property `enabled`
|
4779
|
+
# @return [Boolean]
|
4780
|
+
attr_accessor :enabled
|
4781
|
+
alias_method :enabled?, :enabled
|
4782
|
+
|
4783
|
+
# Required. The property numeric value.
|
4784
|
+
# Corresponds to the JSON property `numericValue`
|
4785
|
+
# @return [Fixnum]
|
4786
|
+
attr_accessor :numeric_value
|
4787
|
+
|
4788
|
+
# Required. The property name.
|
4789
|
+
# Corresponds to the JSON property `property`
|
4790
|
+
# @return [String]
|
4791
|
+
attr_accessor :property
|
4792
|
+
|
4793
|
+
def initialize(**args)
|
4794
|
+
update!(**args)
|
4795
|
+
end
|
4796
|
+
|
4797
|
+
# Update properties of this object
|
4798
|
+
def update!(**args)
|
4799
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
4800
|
+
@numeric_value = args[:numeric_value] if args.key?(:numeric_value)
|
4801
|
+
@property = args[:property] if args.key?(:property)
|
4802
|
+
end
|
4803
|
+
end
|
4804
|
+
|
4805
|
+
# Specific details for a PostgreSql schema.
|
4806
|
+
class PostgreSqlSchemaDetails
|
4807
|
+
include Google::Apis::Core::Hashable
|
4808
|
+
|
4809
|
+
# Optional. PostgreSql foreign tables.
|
4810
|
+
# Corresponds to the JSON property `foreignTablesCount`
|
4811
|
+
# @return [Fixnum]
|
4812
|
+
attr_accessor :foreign_tables_count
|
4813
|
+
|
4814
|
+
# Optional. PostgreSql extensions.
|
4815
|
+
# Corresponds to the JSON property `postgresqlExtensions`
|
4816
|
+
# @return [Array<Google::Apis::MigrationcenterV1alpha1::PostgreSqlExtension>]
|
4817
|
+
attr_accessor :postgresql_extensions
|
4818
|
+
|
4819
|
+
def initialize(**args)
|
4820
|
+
update!(**args)
|
4821
|
+
end
|
4822
|
+
|
4823
|
+
# Update properties of this object
|
4824
|
+
def update!(**args)
|
4825
|
+
@foreign_tables_count = args[:foreign_tables_count] if args.key?(:foreign_tables_count)
|
4826
|
+
@postgresql_extensions = args[:postgresql_extensions] if args.key?(:postgresql_extensions)
|
4827
|
+
end
|
4828
|
+
end
|
4829
|
+
|
4830
|
+
# PostgreSql setting.
|
4831
|
+
class PostgreSqlSetting
|
4832
|
+
include Google::Apis::Core::Hashable
|
4833
|
+
|
4834
|
+
# Required. The setting boolean value.
|
4835
|
+
# Corresponds to the JSON property `boolValue`
|
4836
|
+
# @return [Boolean]
|
4837
|
+
attr_accessor :bool_value
|
4838
|
+
alias_method :bool_value?, :bool_value
|
4839
|
+
|
4840
|
+
# Required. The setting int value.
|
4841
|
+
# Corresponds to the JSON property `intValue`
|
4842
|
+
# @return [Fixnum]
|
4843
|
+
attr_accessor :int_value
|
4844
|
+
|
4845
|
+
# Required. The setting real value.
|
4846
|
+
# Corresponds to the JSON property `realValue`
|
4847
|
+
# @return [Float]
|
4848
|
+
attr_accessor :real_value
|
4849
|
+
|
4850
|
+
# Required. The setting name.
|
4851
|
+
# Corresponds to the JSON property `setting`
|
4852
|
+
# @return [String]
|
4853
|
+
attr_accessor :setting
|
4854
|
+
|
4855
|
+
# Required. The setting source.
|
4856
|
+
# Corresponds to the JSON property `source`
|
4857
|
+
# @return [String]
|
4858
|
+
attr_accessor :source
|
4859
|
+
|
4860
|
+
# Required. The setting string value. Notice that enum values are stored as
|
4861
|
+
# strings.
|
4862
|
+
# Corresponds to the JSON property `stringValue`
|
4863
|
+
# @return [String]
|
4864
|
+
attr_accessor :string_value
|
4865
|
+
|
4866
|
+
# Optional. The setting unit.
|
4867
|
+
# Corresponds to the JSON property `unit`
|
4868
|
+
# @return [String]
|
4869
|
+
attr_accessor :unit
|
4870
|
+
|
4871
|
+
def initialize(**args)
|
4872
|
+
update!(**args)
|
4873
|
+
end
|
4874
|
+
|
4875
|
+
# Update properties of this object
|
4876
|
+
def update!(**args)
|
4877
|
+
@bool_value = args[:bool_value] if args.key?(:bool_value)
|
4878
|
+
@int_value = args[:int_value] if args.key?(:int_value)
|
4879
|
+
@real_value = args[:real_value] if args.key?(:real_value)
|
4880
|
+
@setting = args[:setting] if args.key?(:setting)
|
4881
|
+
@source = args[:source] if args.key?(:source)
|
4882
|
+
@string_value = args[:string_value] if args.key?(:string_value)
|
4883
|
+
@unit = args[:unit] if args.key?(:unit)
|
4584
4884
|
end
|
4585
4885
|
end
|
4586
4886
|
|
@@ -6071,6 +6371,19 @@ module Google
|
|
6071
6371
|
end
|
6072
6372
|
end
|
6073
6373
|
|
6374
|
+
# Specific details for a SqlServer database.
|
6375
|
+
class SqlServerSchemaDetails
|
6376
|
+
include Google::Apis::Core::Hashable
|
6377
|
+
|
6378
|
+
def initialize(**args)
|
6379
|
+
update!(**args)
|
6380
|
+
end
|
6381
|
+
|
6382
|
+
# Update properties of this object
|
6383
|
+
def update!(**args)
|
6384
|
+
end
|
6385
|
+
end
|
6386
|
+
|
6074
6387
|
# SQL Server server flag details.
|
6075
6388
|
class SqlServerServerFlag
|
6076
6389
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MigrationcenterV1alpha1
|
18
18
|
# Version of the google-apis-migrationcenter_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.29.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240516"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -724,6 +724,30 @@ module Google
|
|
724
724
|
include Google::Apis::Core::JsonObjectSupport
|
725
725
|
end
|
726
726
|
|
727
|
+
class MySqlProperty
|
728
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
729
|
+
|
730
|
+
include Google::Apis::Core::JsonObjectSupport
|
731
|
+
end
|
732
|
+
|
733
|
+
class MySqlSchemaDetails
|
734
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
735
|
+
|
736
|
+
include Google::Apis::Core::JsonObjectSupport
|
737
|
+
end
|
738
|
+
|
739
|
+
class MySqlStorageEngineDetails
|
740
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
741
|
+
|
742
|
+
include Google::Apis::Core::JsonObjectSupport
|
743
|
+
end
|
744
|
+
|
745
|
+
class MySqlVariable
|
746
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
747
|
+
|
748
|
+
include Google::Apis::Core::JsonObjectSupport
|
749
|
+
end
|
750
|
+
|
727
751
|
class MysqlDatabaseDeployment
|
728
752
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
729
753
|
|
@@ -838,6 +862,30 @@ module Google
|
|
838
862
|
include Google::Apis::Core::JsonObjectSupport
|
839
863
|
end
|
840
864
|
|
865
|
+
class PostgreSqlExtension
|
866
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
867
|
+
|
868
|
+
include Google::Apis::Core::JsonObjectSupport
|
869
|
+
end
|
870
|
+
|
871
|
+
class PostgreSqlProperty
|
872
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
873
|
+
|
874
|
+
include Google::Apis::Core::JsonObjectSupport
|
875
|
+
end
|
876
|
+
|
877
|
+
class PostgreSqlSchemaDetails
|
878
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
879
|
+
|
880
|
+
include Google::Apis::Core::JsonObjectSupport
|
881
|
+
end
|
882
|
+
|
883
|
+
class PostgreSqlSetting
|
884
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
885
|
+
|
886
|
+
include Google::Apis::Core::JsonObjectSupport
|
887
|
+
end
|
888
|
+
|
841
889
|
class PreferenceSet
|
842
890
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
843
891
|
|
@@ -1072,6 +1120,12 @@ module Google
|
|
1072
1120
|
include Google::Apis::Core::JsonObjectSupport
|
1073
1121
|
end
|
1074
1122
|
|
1123
|
+
class SqlServerSchemaDetails
|
1124
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1125
|
+
|
1126
|
+
include Google::Apis::Core::JsonObjectSupport
|
1127
|
+
end
|
1128
|
+
|
1075
1129
|
class SqlServerServerFlag
|
1076
1130
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1077
1131
|
|
@@ -1737,9 +1791,15 @@ module Google
|
|
1737
1791
|
class DatabaseSchema
|
1738
1792
|
# @private
|
1739
1793
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1794
|
+
property :mysql, as: 'mysql', class: Google::Apis::MigrationcenterV1alpha1::MySqlSchemaDetails, decorator: Google::Apis::MigrationcenterV1alpha1::MySqlSchemaDetails::Representation
|
1795
|
+
|
1740
1796
|
collection :objects, as: 'objects', class: Google::Apis::MigrationcenterV1alpha1::DatabaseObjects, decorator: Google::Apis::MigrationcenterV1alpha1::DatabaseObjects::Representation
|
1741
1797
|
|
1798
|
+
property :postgresql, as: 'postgresql', class: Google::Apis::MigrationcenterV1alpha1::PostgreSqlSchemaDetails, decorator: Google::Apis::MigrationcenterV1alpha1::PostgreSqlSchemaDetails::Representation
|
1799
|
+
|
1742
1800
|
property :schema_name, as: 'schemaName'
|
1801
|
+
property :sql_server, as: 'sqlServer', class: Google::Apis::MigrationcenterV1alpha1::SqlServerSchemaDetails, decorator: Google::Apis::MigrationcenterV1alpha1::SqlServerSchemaDetails::Representation
|
1802
|
+
|
1743
1803
|
property :tables_size_bytes, :numeric_string => true, as: 'tablesSizeBytes'
|
1744
1804
|
end
|
1745
1805
|
end
|
@@ -2395,11 +2455,51 @@ module Google
|
|
2395
2455
|
end
|
2396
2456
|
end
|
2397
2457
|
|
2458
|
+
class MySqlProperty
|
2459
|
+
# @private
|
2460
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2461
|
+
property :enabled, as: 'enabled'
|
2462
|
+
property :numeric_value, :numeric_string => true, as: 'numericValue'
|
2463
|
+
property :property, as: 'property'
|
2464
|
+
end
|
2465
|
+
end
|
2466
|
+
|
2467
|
+
class MySqlSchemaDetails
|
2468
|
+
# @private
|
2469
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2470
|
+
collection :storage_engines, as: 'storageEngines', class: Google::Apis::MigrationcenterV1alpha1::MySqlStorageEngineDetails, decorator: Google::Apis::MigrationcenterV1alpha1::MySqlStorageEngineDetails::Representation
|
2471
|
+
|
2472
|
+
end
|
2473
|
+
end
|
2474
|
+
|
2475
|
+
class MySqlStorageEngineDetails
|
2476
|
+
# @private
|
2477
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2478
|
+
property :encrypted_table_count, as: 'encryptedTableCount'
|
2479
|
+
property :engine, as: 'engine'
|
2480
|
+
property :table_count, as: 'tableCount'
|
2481
|
+
end
|
2482
|
+
end
|
2483
|
+
|
2484
|
+
class MySqlVariable
|
2485
|
+
# @private
|
2486
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2487
|
+
property :category, as: 'category'
|
2488
|
+
property :value, as: 'value'
|
2489
|
+
property :variable, as: 'variable'
|
2490
|
+
end
|
2491
|
+
end
|
2492
|
+
|
2398
2493
|
class MysqlDatabaseDeployment
|
2399
2494
|
# @private
|
2400
2495
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2401
2496
|
collection :plugins, as: 'plugins', class: Google::Apis::MigrationcenterV1alpha1::MySqlPlugin, decorator: Google::Apis::MigrationcenterV1alpha1::MySqlPlugin::Representation
|
2402
2497
|
|
2498
|
+
collection :properties, as: 'properties', class: Google::Apis::MigrationcenterV1alpha1::MySqlProperty, decorator: Google::Apis::MigrationcenterV1alpha1::MySqlProperty::Representation
|
2499
|
+
|
2500
|
+
property :resource_groups_count, as: 'resourceGroupsCount'
|
2501
|
+
collection :variables, as: 'variables', class: Google::Apis::MigrationcenterV1alpha1::MySqlVariable, decorator: Google::Apis::MigrationcenterV1alpha1::MySqlVariable::Representation
|
2502
|
+
|
2403
2503
|
end
|
2404
2504
|
end
|
2405
2505
|
|
@@ -2578,6 +2678,49 @@ module Google
|
|
2578
2678
|
class PostgreSqlDatabaseDeployment
|
2579
2679
|
# @private
|
2580
2680
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2681
|
+
collection :properties, as: 'properties', class: Google::Apis::MigrationcenterV1alpha1::PostgreSqlProperty, decorator: Google::Apis::MigrationcenterV1alpha1::PostgreSqlProperty::Representation
|
2682
|
+
|
2683
|
+
collection :settings, as: 'settings', class: Google::Apis::MigrationcenterV1alpha1::PostgreSqlSetting, decorator: Google::Apis::MigrationcenterV1alpha1::PostgreSqlSetting::Representation
|
2684
|
+
|
2685
|
+
end
|
2686
|
+
end
|
2687
|
+
|
2688
|
+
class PostgreSqlExtension
|
2689
|
+
# @private
|
2690
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2691
|
+
property :extension, as: 'extension'
|
2692
|
+
property :version, as: 'version'
|
2693
|
+
end
|
2694
|
+
end
|
2695
|
+
|
2696
|
+
class PostgreSqlProperty
|
2697
|
+
# @private
|
2698
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2699
|
+
property :enabled, as: 'enabled'
|
2700
|
+
property :numeric_value, :numeric_string => true, as: 'numericValue'
|
2701
|
+
property :property, as: 'property'
|
2702
|
+
end
|
2703
|
+
end
|
2704
|
+
|
2705
|
+
class PostgreSqlSchemaDetails
|
2706
|
+
# @private
|
2707
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2708
|
+
property :foreign_tables_count, as: 'foreignTablesCount'
|
2709
|
+
collection :postgresql_extensions, as: 'postgresqlExtensions', class: Google::Apis::MigrationcenterV1alpha1::PostgreSqlExtension, decorator: Google::Apis::MigrationcenterV1alpha1::PostgreSqlExtension::Representation
|
2710
|
+
|
2711
|
+
end
|
2712
|
+
end
|
2713
|
+
|
2714
|
+
class PostgreSqlSetting
|
2715
|
+
# @private
|
2716
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2717
|
+
property :bool_value, as: 'boolValue'
|
2718
|
+
property :int_value, :numeric_string => true, as: 'intValue'
|
2719
|
+
property :real_value, as: 'realValue'
|
2720
|
+
property :setting, as: 'setting'
|
2721
|
+
property :source, as: 'source'
|
2722
|
+
property :string_value, as: 'stringValue'
|
2723
|
+
property :unit, as: 'unit'
|
2581
2724
|
end
|
2582
2725
|
end
|
2583
2726
|
|
@@ -3019,6 +3162,12 @@ module Google
|
|
3019
3162
|
end
|
3020
3163
|
end
|
3021
3164
|
|
3165
|
+
class SqlServerSchemaDetails
|
3166
|
+
# @private
|
3167
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3168
|
+
end
|
3169
|
+
end
|
3170
|
+
|
3022
3171
|
class SqlServerServerFlag
|
3023
3172
|
# @private
|
3024
3173
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-migrationcenter_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.29.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-
|
11
|
+
date: 2024-05-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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-migrationcenter_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.29.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|