google-apis-datamigration_v1 0.67.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: c857fb69c80666ac1ff01f5fb0dd43809c022b9b61e69c9089c7e1d14dca6251
4
- data.tar.gz: 6612ac8ff634ad93c0422bba34c11bd63e030471effa411a90ff64861ed70239
3
+ metadata.gz: 7931ceb2ecc2ceb6efae8b50a166d3398a6cf7d9089486f6badaf1ae22f95366
4
+ data.tar.gz: 59351e78a4e9f0b8cecae80a68c06b9fcb5e9eeae7d132ca879183921b72f6f3
5
5
  SHA512:
6
- metadata.gz: 7d465efdec98df4f430005a5a7d31906f3d6f4e1d480f5a3a0cbec581db20009069862528198c61dc67887e8a22814b39ee353730f5488e82cce13fa7329068d
7
- data.tar.gz: 8200a3ab08526094c2627b89e3bf70684b8006653668dd65477a0c13e518f7bff2576d7cda9ef5775a185fdc9792341afc28452fbacd0a074694020d97547f96
6
+ metadata.gz: afc6ebb28d86185d256a67da15dfddf234fb9eb08597dd7e7fb215fe78acd2fdebcf2c9ee6bb1ee6fdcd0e75298d1297abfebceabc1c2ffacbcad15c90ff076f
7
+ data.tar.gz: 1aedd05084cc28b87c12decdbdf57098026a2d83ad7cef78da4dac3607c729a27aa1a0642fd09925986806faa82fed09cd869f78badf770738ef807136da6195
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
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
+
8
+ ### v0.68.0 (2025-01-08)
9
+
10
+ * Regenerated from discovery document revision 20241231
11
+
3
12
  ### v0.67.0 (2024-12-22)
4
13
 
5
14
  * Regenerated from discovery document revision 20241211
@@ -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,6 +1029,18 @@ module Google
1008
1029
  # @return [String]
1009
1030
  attr_accessor :role
1010
1031
 
1032
+ # Output only. Reserved for future use.
1033
+ # Corresponds to the JSON property `satisfiesPzi`
1034
+ # @return [Boolean]
1035
+ attr_accessor :satisfies_pzi
1036
+ alias_method :satisfies_pzi?, :satisfies_pzi
1037
+
1038
+ # Output only. Reserved for future use.
1039
+ # Corresponds to the JSON property `satisfiesPzs`
1040
+ # @return [Boolean]
1041
+ attr_accessor :satisfies_pzs
1042
+ alias_method :satisfies_pzs?, :satisfies_pzs
1043
+
1011
1044
  # Specifies connection parameters required specifically for SQL Server databases.
1012
1045
  # Corresponds to the JSON property `sqlserver`
1013
1046
  # @return [Google::Apis::DatamigrationV1::SqlServerConnectionProfile]
@@ -1043,6 +1076,8 @@ module Google
1043
1076
  @postgresql = args[:postgresql] if args.key?(:postgresql)
1044
1077
  @provider = args[:provider] if args.key?(:provider)
1045
1078
  @role = args[:role] if args.key?(:role)
1079
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
1080
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1046
1081
  @sqlserver = args[:sqlserver] if args.key?(:sqlserver)
1047
1082
  @state = args[:state] if args.key?(:state)
1048
1083
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -1699,11 +1734,22 @@ module Google
1699
1734
  # @return [String]
1700
1735
  attr_accessor :ddl
1701
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
+
1702
1742
  # Type of DDL (Create, Alter).
1703
1743
  # Corresponds to the JSON property `ddlType`
1704
1744
  # @return [String]
1705
1745
  attr_accessor :ddl_type
1706
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
+
1707
1753
  # The name of the database entity the ddl refers to.
1708
1754
  # Corresponds to the JSON property `entity`
1709
1755
  # @return [String]
@@ -1726,7 +1772,9 @@ module Google
1726
1772
  # Update properties of this object
1727
1773
  def update!(**args)
1728
1774
  @ddl = args[:ddl] if args.key?(:ddl)
1775
+ @ddl_kind = args[:ddl_kind] if args.key?(:ddl_kind)
1729
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)
1730
1778
  @entity = args[:entity] if args.key?(:entity)
1731
1779
  @entity_type = args[:entity_type] if args.key?(:entity_type)
1732
1780
  @issue_id = args[:issue_id] if args.key?(:issue_id)
@@ -3128,6 +3176,18 @@ module Google
3128
3176
  # @return [Google::Apis::DatamigrationV1::ReverseSshConnectivity]
3129
3177
  attr_accessor :reverse_ssh_connectivity
3130
3178
 
3179
+ # Output only. Reserved for future use.
3180
+ # Corresponds to the JSON property `satisfiesPzi`
3181
+ # @return [Boolean]
3182
+ attr_accessor :satisfies_pzi
3183
+ alias_method :satisfies_pzi?, :satisfies_pzi
3184
+
3185
+ # Output only. Reserved for future use.
3186
+ # Corresponds to the JSON property `satisfiesPzs`
3187
+ # @return [Boolean]
3188
+ attr_accessor :satisfies_pzs
3189
+ alias_method :satisfies_pzs?, :satisfies_pzs
3190
+
3131
3191
  # Required. The resource name (URI) of the source connection profile.
3132
3192
  # Corresponds to the JSON property `source`
3133
3193
  # @return [String]
@@ -3201,6 +3261,8 @@ module Google
3201
3261
  @performance_config = args[:performance_config] if args.key?(:performance_config)
3202
3262
  @phase = args[:phase] if args.key?(:phase)
3203
3263
  @reverse_ssh_connectivity = args[:reverse_ssh_connectivity] if args.key?(:reverse_ssh_connectivity)
3264
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
3265
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
3204
3266
  @source = args[:source] if args.key?(:source)
3205
3267
  @source_database = args[:source_database] if args.key?(:source_database)
3206
3268
  @sqlserver_homogeneous_migration_job_config = args[:sqlserver_homogeneous_migration_job_config] if args.key?(:sqlserver_homogeneous_migration_job_config)
@@ -4193,6 +4255,18 @@ module Google
4193
4255
  # @return [String]
4194
4256
  attr_accessor :name
4195
4257
 
4258
+ # Output only. Reserved for future use.
4259
+ # Corresponds to the JSON property `satisfiesPzi`
4260
+ # @return [Boolean]
4261
+ attr_accessor :satisfies_pzi
4262
+ alias_method :satisfies_pzi?, :satisfies_pzi
4263
+
4264
+ # Output only. Reserved for future use.
4265
+ # Corresponds to the JSON property `satisfiesPzs`
4266
+ # @return [Boolean]
4267
+ attr_accessor :satisfies_pzs
4268
+ alias_method :satisfies_pzs?, :satisfies_pzs
4269
+
4196
4270
  # Output only. The state of the private connection.
4197
4271
  # Corresponds to the JSON property `state`
4198
4272
  # @return [String]
@@ -4220,6 +4294,8 @@ module Google
4220
4294
  @error = args[:error] if args.key?(:error)
4221
4295
  @labels = args[:labels] if args.key?(:labels)
4222
4296
  @name = args[:name] if args.key?(:name)
4297
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
4298
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
4223
4299
  @state = args[:state] if args.key?(:state)
4224
4300
  @update_time = args[:update_time] if args.key?(:update_time)
4225
4301
  @vpc_peering_config = args[:vpc_peering_config] if args.key?(:vpc_peering_config)
@@ -4916,8 +4992,8 @@ module Google
4916
4992
  class SourceObjectIdentifier
4917
4993
  include Google::Apis::Core::Hashable
4918
4994
 
4919
- # The database name. This will be required only if the object uses a database
4920
- # name as part of its unique identifier.
4995
+ # Optional. The database name. This will be required only if the object uses a
4996
+ # database name as part of its unique identifier.
4921
4997
  # Corresponds to the JSON property `database`
4922
4998
  # @return [String]
4923
4999
  attr_accessor :database
@@ -4942,7 +5018,7 @@ module Google
4942
5018
  class SourceObjectsConfig
4943
5019
  include Google::Apis::Core::Hashable
4944
5020
 
4945
- # The list of the objects to be migrated.
5021
+ # Optional. The list of the objects to be migrated.
4946
5022
  # Corresponds to the JSON property `objectConfigs`
4947
5023
  # @return [Array<Google::Apis::DatamigrationV1::SourceObjectConfig>]
4948
5024
  attr_accessor :object_configs
@@ -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.67.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.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241211"
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'
@@ -1150,6 +1153,8 @@ module Google
1150
1153
 
1151
1154
  property :provider, as: 'provider'
1152
1155
  property :role, as: 'role'
1156
+ property :satisfies_pzi, as: 'satisfiesPzi'
1157
+ property :satisfies_pzs, as: 'satisfiesPzs'
1153
1158
  property :sqlserver, as: 'sqlserver', class: Google::Apis::DatamigrationV1::SqlServerConnectionProfile, decorator: Google::Apis::DatamigrationV1::SqlServerConnectionProfile::Representation
1154
1159
 
1155
1160
  property :state, as: 'state'
@@ -1351,7 +1356,9 @@ module Google
1351
1356
  # @private
1352
1357
  class Representation < Google::Apis::Core::JsonRepresentation
1353
1358
  property :ddl, as: 'ddl'
1359
+ property :ddl_kind, as: 'ddlKind'
1354
1360
  property :ddl_type, as: 'ddlType'
1361
+ property :edited_ddl_kind, as: 'editedDdlKind'
1355
1362
  property :entity, as: 'entity'
1356
1363
  property :entity_type, as: 'entityType'
1357
1364
  collection :issue_id, as: 'issueId'
@@ -1734,6 +1741,8 @@ module Google
1734
1741
  property :phase, as: 'phase'
1735
1742
  property :reverse_ssh_connectivity, as: 'reverseSshConnectivity', class: Google::Apis::DatamigrationV1::ReverseSshConnectivity, decorator: Google::Apis::DatamigrationV1::ReverseSshConnectivity::Representation
1736
1743
 
1744
+ property :satisfies_pzi, as: 'satisfiesPzi'
1745
+ property :satisfies_pzs, as: 'satisfiesPzs'
1737
1746
  property :source, as: 'source'
1738
1747
  property :source_database, as: 'sourceDatabase', class: Google::Apis::DatamigrationV1::DatabaseType, decorator: Google::Apis::DatamigrationV1::DatabaseType::Representation
1739
1748
 
@@ -1989,6 +1998,8 @@ module Google
1989
1998
 
1990
1999
  hash :labels, as: 'labels'
1991
2000
  property :name, as: 'name'
2001
+ property :satisfies_pzi, as: 'satisfiesPzi'
2002
+ property :satisfies_pzs, as: 'satisfiesPzs'
1992
2003
  property :state, as: 'state'
1993
2004
  property :update_time, as: 'updateTime'
1994
2005
  property :vpc_peering_config, as: 'vpcPeeringConfig', class: Google::Apis::DatamigrationV1::VpcPeeringConfig, decorator: Google::Apis::DatamigrationV1::VpcPeeringConfig::Representation
metadata CHANGED
@@ -1,14 +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.67.0
4
+ version: 0.69.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-01-05 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: google-apis-core
@@ -58,9 +57,8 @@ licenses:
58
57
  metadata:
59
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
59
  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.67.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.69.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
63
- post_install_message:
64
62
  rdoc_options: []
65
63
  require_paths:
66
64
  - lib
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
73
  - !ruby/object:Gem::Version
76
74
  version: '0'
77
75
  requirements: []
78
- rubygems_version: 3.5.23
79
- signing_key:
76
+ rubygems_version: 3.6.5
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Database Migration API V1
82
79
  test_files: []