Skip to content

Commit 13b7b0f

Browse files
feat: Automated regeneration of datamigration v1 client (googleapis#21875)
Auto-created at 2025-02-26 21:25:39 +0000 using the toys pull request generator.
1 parent f378ba3 commit 13b7b0f

File tree

5 files changed

+20
-3
lines changed

5 files changed

+20
-3
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140482,7 +140482,9 @@
140482140482
"/datamigration:v1/EncryptionConfig/kmsKeyName": kms_key_name
140483140483
"/datamigration:v1/EntityDdl": entity_ddl
140484140484
"/datamigration:v1/EntityDdl/ddl": ddl
140485+
"/datamigration:v1/EntityDdl/ddlKind": ddl_kind
140485140486
"/datamigration:v1/EntityDdl/ddlType": ddl_type
140487+
"/datamigration:v1/EntityDdl/editedDdlKind": edited_ddl_kind
140486140488
"/datamigration:v1/EntityDdl/entity": entity
140487140489
"/datamigration:v1/EntityDdl/entityType": entity_type
140488140490
"/datamigration:v1/EntityDdl/issueId": issue_id

generated/google-apis-datamigration_v1/CHANGELOG.md

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

3-
### v0.69.0 (2025-01-26)
3+
### v0.69.0 (2025-02-26)
44

5-
* Regenerated from discovery document revision 20250115
5+
* Regenerated from discovery document revision 20250207
66
* Regenerated using generator version 0.16.0
77

88
### v0.68.0 (2025-01-08)

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1720,11 +1720,22 @@ class EntityDdl
17201720
# @return [String]
17211721
attr_accessor :ddl
17221722

1723+
# The DDL Kind selected for apply, or SOURCE if getting the source tree.
1724+
# Corresponds to the JSON property `ddlKind`
1725+
# @return [String]
1726+
attr_accessor :ddl_kind
1727+
17231728
# Type of DDL (Create, Alter).
17241729
# Corresponds to the JSON property `ddlType`
17251730
# @return [String]
17261731
attr_accessor :ddl_type
17271732

1733+
# If ddl_kind is USER_EDIT, this holds the DDL kind of the original content -
1734+
# DETERMINISTIC or AI. Otherwise, this is DDL_KIND_UNSPECIFIED.
1735+
# Corresponds to the JSON property `editedDdlKind`
1736+
# @return [String]
1737+
attr_accessor :edited_ddl_kind
1738+
17281739
# The name of the database entity the ddl refers to.
17291740
# Corresponds to the JSON property `entity`
17301741
# @return [String]
@@ -1747,7 +1758,9 @@ def initialize(**args)
17471758
# Update properties of this object
17481759
def update!(**args)
17491760
@ddl = args[:ddl] if args.key?(:ddl)
1761+
@ddl_kind = args[:ddl_kind] if args.key?(:ddl_kind)
17501762
@ddl_type = args[:ddl_type] if args.key?(:ddl_type)
1763+
@edited_ddl_kind = args[:edited_ddl_kind] if args.key?(:edited_ddl_kind)
17511764
@entity = args[:entity] if args.key?(:entity)
17521765
@entity_type = args[:entity_type] if args.key?(:entity_type)
17531766
@issue_id = args[:issue_id] if args.key?(:issue_id)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module DatamigrationV1
2222
GENERATOR_VERSION = "0.16.0"
2323

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

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1354,7 +1354,9 @@ class EntityDdl
13541354
# @private
13551355
class Representation < Google::Apis::Core::JsonRepresentation
13561356
property :ddl, as: 'ddl'
1357+
property :ddl_kind, as: 'ddlKind'
13571358
property :ddl_type, as: 'ddlType'
1359+
property :edited_ddl_kind, as: 'editedDdlKind'
13581360
property :entity, as: 'entity'
13591361
property :entity_type, as: 'entityType'
13601362
collection :issue_id, as: 'issueId'

0 commit comments

Comments
 (0)