Skip to content

Commit 4340b27

Browse files
feat: Automated regeneration of datamigration v1 client (googleapis#21312)
Auto-created at 2025-01-08 01:19:16 +0000 using the toys pull request generator.
1 parent e6221cb commit 4340b27

File tree

5 files changed

+63
-5
lines changed

5 files changed

+63
-5
lines changed

api_names_out.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139316,6 +139316,8 @@
139316139316
"/datamigration:v1/ConnectionProfile/postgresql": postgresql
139317139317
"/datamigration:v1/ConnectionProfile/provider": provider
139318139318
"/datamigration:v1/ConnectionProfile/role": role
139319+
"/datamigration:v1/ConnectionProfile/satisfiesPzi": satisfies_pzi
139320+
"/datamigration:v1/ConnectionProfile/satisfiesPzs": satisfies_pzs
139319139321
"/datamigration:v1/ConnectionProfile/sqlserver": sqlserver
139320139322
"/datamigration:v1/ConnectionProfile/state": state
139321139323
"/datamigration:v1/ConnectionProfile/updateTime": update_time
@@ -139615,6 +139617,8 @@
139615139617
"/datamigration:v1/MigrationJob/performanceConfig": performance_config
139616139618
"/datamigration:v1/MigrationJob/phase": phase
139617139619
"/datamigration:v1/MigrationJob/reverseSshConnectivity": reverse_ssh_connectivity
139620+
"/datamigration:v1/MigrationJob/satisfiesPzi": satisfies_pzi
139621+
"/datamigration:v1/MigrationJob/satisfiesPzs": satisfies_pzs
139618139622
"/datamigration:v1/MigrationJob/source": source
139619139623
"/datamigration:v1/MigrationJob/sourceDatabase": source_database
139620139624
"/datamigration:v1/MigrationJob/sqlserverHomogeneousMigrationJobConfig": sqlserver_homogeneous_migration_job_config
@@ -139751,6 +139755,8 @@
139751139755
"/datamigration:v1/PrivateConnection/labels": labels
139752139756
"/datamigration:v1/PrivateConnection/labels/label": label
139753139757
"/datamigration:v1/PrivateConnection/name": name
139758+
"/datamigration:v1/PrivateConnection/satisfiesPzi": satisfies_pzi
139759+
"/datamigration:v1/PrivateConnection/satisfiesPzs": satisfies_pzs
139754139760
"/datamigration:v1/PrivateConnection/state": state
139755139761
"/datamigration:v1/PrivateConnection/updateTime": update_time
139756139762
"/datamigration:v1/PrivateConnection/vpcPeeringConfig": vpc_peering_config

generated/google-apis-datamigration_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-datamigration_v1
22

3+
### v0.68.0 (2025-01-08)
4+
5+
* Regenerated from discovery document revision 20241231
6+
37
### v0.67.0 (2024-12-22)
48

59
* Regenerated from discovery document revision 20241211

generated/google-apis-datamigration_v1/lib/google/apis/datamigration_v1/classes.rb

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,6 +1008,18 @@ class ConnectionProfile
10081008
# @return [String]
10091009
attr_accessor :role
10101010

1011+
# Output only. Zone Isolation compliance state of the resource.
1012+
# Corresponds to the JSON property `satisfiesPzi`
1013+
# @return [Boolean]
1014+
attr_accessor :satisfies_pzi
1015+
alias_method :satisfies_pzi?, :satisfies_pzi
1016+
1017+
# Output only. Zone Separation compliance state of the resource.
1018+
# Corresponds to the JSON property `satisfiesPzs`
1019+
# @return [Boolean]
1020+
attr_accessor :satisfies_pzs
1021+
alias_method :satisfies_pzs?, :satisfies_pzs
1022+
10111023
# Specifies connection parameters required specifically for SQL Server databases.
10121024
# Corresponds to the JSON property `sqlserver`
10131025
# @return [Google::Apis::DatamigrationV1::SqlServerConnectionProfile]
@@ -1043,6 +1055,8 @@ def update!(**args)
10431055
@postgresql = args[:postgresql] if args.key?(:postgresql)
10441056
@provider = args[:provider] if args.key?(:provider)
10451057
@role = args[:role] if args.key?(:role)
1058+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
1059+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
10461060
@sqlserver = args[:sqlserver] if args.key?(:sqlserver)
10471061
@state = args[:state] if args.key?(:state)
10481062
@update_time = args[:update_time] if args.key?(:update_time)
@@ -3128,6 +3142,18 @@ class MigrationJob
31283142
# @return [Google::Apis::DatamigrationV1::ReverseSshConnectivity]
31293143
attr_accessor :reverse_ssh_connectivity
31303144

3145+
# Output only. Zone Isolation compliance state of the resource.
3146+
# Corresponds to the JSON property `satisfiesPzi`
3147+
# @return [Boolean]
3148+
attr_accessor :satisfies_pzi
3149+
alias_method :satisfies_pzi?, :satisfies_pzi
3150+
3151+
# Output only. Zone Separation compliance state of the resource.
3152+
# Corresponds to the JSON property `satisfiesPzs`
3153+
# @return [Boolean]
3154+
attr_accessor :satisfies_pzs
3155+
alias_method :satisfies_pzs?, :satisfies_pzs
3156+
31313157
# Required. The resource name (URI) of the source connection profile.
31323158
# Corresponds to the JSON property `source`
31333159
# @return [String]
@@ -3201,6 +3227,8 @@ def update!(**args)
32013227
@performance_config = args[:performance_config] if args.key?(:performance_config)
32023228
@phase = args[:phase] if args.key?(:phase)
32033229
@reverse_ssh_connectivity = args[:reverse_ssh_connectivity] if args.key?(:reverse_ssh_connectivity)
3230+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
3231+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
32043232
@source = args[:source] if args.key?(:source)
32053233
@source_database = args[:source_database] if args.key?(:source_database)
32063234
@sqlserver_homogeneous_migration_job_config = args[:sqlserver_homogeneous_migration_job_config] if args.key?(:sqlserver_homogeneous_migration_job_config)
@@ -4193,6 +4221,18 @@ class PrivateConnection
41934221
# @return [String]
41944222
attr_accessor :name
41954223

4224+
# Output only. Zone Isolation compliance state of the resource.
4225+
# Corresponds to the JSON property `satisfiesPzi`
4226+
# @return [Boolean]
4227+
attr_accessor :satisfies_pzi
4228+
alias_method :satisfies_pzi?, :satisfies_pzi
4229+
4230+
# Output only. Zone Separation compliance state of the resource.
4231+
# Corresponds to the JSON property `satisfiesPzs`
4232+
# @return [Boolean]
4233+
attr_accessor :satisfies_pzs
4234+
alias_method :satisfies_pzs?, :satisfies_pzs
4235+
41964236
# Output only. The state of the private connection.
41974237
# Corresponds to the JSON property `state`
41984238
# @return [String]
@@ -4220,6 +4260,8 @@ def update!(**args)
42204260
@error = args[:error] if args.key?(:error)
42214261
@labels = args[:labels] if args.key?(:labels)
42224262
@name = args[:name] if args.key?(:name)
4263+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
4264+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
42234265
@state = args[:state] if args.key?(:state)
42244266
@update_time = args[:update_time] if args.key?(:update_time)
42254267
@vpc_peering_config = args[:vpc_peering_config] if args.key?(:vpc_peering_config)
@@ -4916,8 +4958,8 @@ def update!(**args)
49164958
class SourceObjectIdentifier
49174959
include Google::Apis::Core::Hashable
49184960

4919-
# The database name. This will be required only if the object uses a database
4920-
# name as part of its unique identifier.
4961+
# Optional. The database name. This will be required only if the object uses a
4962+
# database name as part of its unique identifier.
49214963
# Corresponds to the JSON property `database`
49224964
# @return [String]
49234965
attr_accessor :database
@@ -4942,7 +4984,7 @@ def update!(**args)
49424984
class SourceObjectsConfig
49434985
include Google::Apis::Core::Hashable
49444986

4945-
# The list of the objects to be migrated.
4987+
# Optional. The list of the objects to be migrated.
49464988
# Corresponds to the JSON property `objectConfigs`
49474989
# @return [Array<Google::Apis::DatamigrationV1::SourceObjectConfig>]
49484990
attr_accessor :object_configs

generated/google-apis-datamigration_v1/lib/google/apis/datamigration_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DatamigrationV1
1818
# Version of the google-apis-datamigration_v1 gem
19-
GEM_VERSION = "0.67.0"
19+
GEM_VERSION = "0.68.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.15.1"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20241211"
25+
REVISION = "20241231"
2626
end
2727
end
2828
end

generated/google-apis-datamigration_v1/lib/google/apis/datamigration_v1/representations.rb

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,6 +1150,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
11501150

11511151
property :provider, as: 'provider'
11521152
property :role, as: 'role'
1153+
property :satisfies_pzi, as: 'satisfiesPzi'
1154+
property :satisfies_pzs, as: 'satisfiesPzs'
11531155
property :sqlserver, as: 'sqlserver', class: Google::Apis::DatamigrationV1::SqlServerConnectionProfile, decorator: Google::Apis::DatamigrationV1::SqlServerConnectionProfile::Representation
11541156

11551157
property :state, as: 'state'
@@ -1734,6 +1736,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
17341736
property :phase, as: 'phase'
17351737
property :reverse_ssh_connectivity, as: 'reverseSshConnectivity', class: Google::Apis::DatamigrationV1::ReverseSshConnectivity, decorator: Google::Apis::DatamigrationV1::ReverseSshConnectivity::Representation
17361738

1739+
property :satisfies_pzi, as: 'satisfiesPzi'
1740+
property :satisfies_pzs, as: 'satisfiesPzs'
17371741
property :source, as: 'source'
17381742
property :source_database, as: 'sourceDatabase', class: Google::Apis::DatamigrationV1::DatabaseType, decorator: Google::Apis::DatamigrationV1::DatabaseType::Representation
17391743

@@ -1989,6 +1993,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
19891993

19901994
hash :labels, as: 'labels'
19911995
property :name, as: 'name'
1996+
property :satisfies_pzi, as: 'satisfiesPzi'
1997+
property :satisfies_pzs, as: 'satisfiesPzs'
19921998
property :state, as: 'state'
19931999
property :update_time, as: 'updateTime'
19942000
property :vpc_peering_config, as: 'vpcPeeringConfig', class: Google::Apis::DatamigrationV1::VpcPeeringConfig, decorator: Google::Apis::DatamigrationV1::VpcPeeringConfig::Representation

0 commit comments

Comments
 (0)