Skip to content

Commit eb357d9

Browse files
feat: Automated regeneration of datastream v1 client (#21488)
Auto-created at 2025-01-26 10:18:29 +0000 using the toys pull request generator.
1 parent f6e78bb commit eb357d9

File tree

5 files changed

+63
-8
lines changed

5 files changed

+63
-8
lines changed

api_names_out.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146655,6 +146655,8 @@
146655146655
"/datastream:v1/ConnectionProfile/oracleProfile": oracle_profile
146656146656
"/datastream:v1/ConnectionProfile/postgresqlProfile": postgresql_profile
146657146657
"/datastream:v1/ConnectionProfile/privateConnectivity": private_connectivity
146658+
"/datastream:v1/ConnectionProfile/satisfiesPzi": satisfies_pzi
146659+
"/datastream:v1/ConnectionProfile/satisfiesPzs": satisfies_pzs
146658146660
"/datastream:v1/ConnectionProfile/sqlServerProfile": sql_server_profile
146659146661
"/datastream:v1/ConnectionProfile/staticServiceIpConnectivity": static_service_ip_connectivity
146660146662
"/datastream:v1/ConnectionProfile/updateTime": update_time
@@ -146935,6 +146937,8 @@
146935146937
"/datastream:v1/PrivateConnection/labels": labels
146936146938
"/datastream:v1/PrivateConnection/labels/label": label
146937146939
"/datastream:v1/PrivateConnection/name": name
146940+
"/datastream:v1/PrivateConnection/satisfiesPzi": satisfies_pzi
146941+
"/datastream:v1/PrivateConnection/satisfiesPzs": satisfies_pzs
146938146942
"/datastream:v1/PrivateConnection/state": state
146939146943
"/datastream:v1/PrivateConnection/updateTime": update_time
146940146944
"/datastream:v1/PrivateConnection/vpcPeeringConfig": vpc_peering_config
@@ -147043,6 +147047,8 @@
147043147047
"/datastream:v1/Stream/labels/label": label
147044147048
"/datastream:v1/Stream/lastRecoveryTime": last_recovery_time
147045147049
"/datastream:v1/Stream/name": name
147050+
"/datastream:v1/Stream/satisfiesPzi": satisfies_pzi
147051+
"/datastream:v1/Stream/satisfiesPzs": satisfies_pzs
147046147052
"/datastream:v1/Stream/sourceConfig": source_config
147047147053
"/datastream:v1/Stream/state": state
147048147054
"/datastream:v1/Stream/updateTime": update_time

generated/google-apis-datastream_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-datastream_v1
22

3-
### v0.45.0 (2025-01-19)
3+
### v0.45.0 (2025-01-26)
44

5-
* Regenerated from discovery document revision 20250108
5+
* Regenerated from discovery document revision 20250115
66

77
### v0.44.0 (2025-01-12)
88

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

Lines changed: 48 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,18 @@ class ConnectionProfile
348348
# @return [Google::Apis::DatastreamV1::PrivateConnectivity]
349349
attr_accessor :private_connectivity
350350

351+
# Output only. Reserved for future use.
352+
# Corresponds to the JSON property `satisfiesPzi`
353+
# @return [Boolean]
354+
attr_accessor :satisfies_pzi
355+
alias_method :satisfies_pzi?, :satisfies_pzi
356+
357+
# Output only. Reserved for future use.
358+
# Corresponds to the JSON property `satisfiesPzs`
359+
# @return [Boolean]
360+
attr_accessor :satisfies_pzs
361+
alias_method :satisfies_pzs?, :satisfies_pzs
362+
351363
# SQLServer database profile. Next ID: 8.
352364
# Corresponds to the JSON property `sqlServerProfile`
353365
# @return [Google::Apis::DatastreamV1::SqlServerProfile]
@@ -382,6 +394,8 @@ def update!(**args)
382394
@oracle_profile = args[:oracle_profile] if args.key?(:oracle_profile)
383395
@postgresql_profile = args[:postgresql_profile] if args.key?(:postgresql_profile)
384396
@private_connectivity = args[:private_connectivity] if args.key?(:private_connectivity)
397+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
398+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
385399
@sql_server_profile = args[:sql_server_profile] if args.key?(:sql_server_profile)
386400
@static_service_ip_connectivity = args[:static_service_ip_connectivity] if args.key?(:static_service_ip_connectivity)
387401
@update_time = args[:update_time] if args.key?(:update_time)
@@ -1419,8 +1433,8 @@ class MysqlSslConfig
14191433
attr_accessor :ca_certificate_set
14201434
alias_method :ca_certificate_set?, :ca_certificate_set
14211435

1422-
# Input only. PEM-encoded certificate that will be used by the replica to
1423-
# authenticate against the source database server. If this field is used then
1436+
# Optional. Input only. PEM-encoded certificate that will be used by the replica
1437+
# to authenticate against the source database server. If this field is used then
14241438
# the 'client_key' and the 'ca_certificate' fields are mandatory.
14251439
# Corresponds to the JSON property `clientCertificate`
14261440
# @return [String]
@@ -1432,9 +1446,10 @@ class MysqlSslConfig
14321446
attr_accessor :client_certificate_set
14331447
alias_method :client_certificate_set?, :client_certificate_set
14341448

1435-
# Input only. PEM-encoded private key associated with the Client Certificate. If
1436-
# this field is used then the 'client_certificate' and the 'ca_certificate'
1437-
# fields are mandatory.
1449+
# Optional. Input only. PEM-encoded private key associated with the Client
1450+
# Certificate. If this field is used then the 'client_certificate' and the '
1451+
# ca_certificate' fields are mandatory. Mutually exclusive with the `
1452+
# secret_manager_stored_client_key` field.
14381453
# Corresponds to the JSON property `clientKey`
14391454
# @return [String]
14401455
attr_accessor :client_key
@@ -2352,6 +2367,18 @@ class PrivateConnection
23522367
# @return [String]
23532368
attr_accessor :name
23542369

2370+
# Output only. Reserved for future use.
2371+
# Corresponds to the JSON property `satisfiesPzi`
2372+
# @return [Boolean]
2373+
attr_accessor :satisfies_pzi
2374+
alias_method :satisfies_pzi?, :satisfies_pzi
2375+
2376+
# Output only. Reserved for future use.
2377+
# Corresponds to the JSON property `satisfiesPzs`
2378+
# @return [Boolean]
2379+
attr_accessor :satisfies_pzs
2380+
alias_method :satisfies_pzs?, :satisfies_pzs
2381+
23552382
# Output only. The state of the Private Connection.
23562383
# Corresponds to the JSON property `state`
23572384
# @return [String]
@@ -2379,6 +2406,8 @@ def update!(**args)
23792406
@error = args[:error] if args.key?(:error)
23802407
@labels = args[:labels] if args.key?(:labels)
23812408
@name = args[:name] if args.key?(:name)
2409+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
2410+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
23822411
@state = args[:state] if args.key?(:state)
23832412
@update_time = args[:update_time] if args.key?(:update_time)
23842413
@vpc_peering_config = args[:vpc_peering_config] if args.key?(:vpc_peering_config)
@@ -3175,6 +3204,18 @@ class Stream
31753204
# @return [String]
31763205
attr_accessor :name
31773206

3207+
# Output only. Reserved for future use.
3208+
# Corresponds to the JSON property `satisfiesPzi`
3209+
# @return [Boolean]
3210+
attr_accessor :satisfies_pzi
3211+
alias_method :satisfies_pzi?, :satisfies_pzi
3212+
3213+
# Output only. Reserved for future use.
3214+
# Corresponds to the JSON property `satisfiesPzs`
3215+
# @return [Boolean]
3216+
attr_accessor :satisfies_pzs
3217+
alias_method :satisfies_pzs?, :satisfies_pzs
3218+
31783219
# The configuration of the stream source.
31793220
# Corresponds to the JSON property `sourceConfig`
31803221
# @return [Google::Apis::DatastreamV1::SourceConfig]
@@ -3206,6 +3247,8 @@ def update!(**args)
32063247
@labels = args[:labels] if args.key?(:labels)
32073248
@last_recovery_time = args[:last_recovery_time] if args.key?(:last_recovery_time)
32083249
@name = args[:name] if args.key?(:name)
3250+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
3251+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
32093252
@source_config = args[:source_config] if args.key?(:source_config)
32103253
@state = args[:state] if args.key?(:state)
32113254
@update_time = args[:update_time] if args.key?(:update_time)

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

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

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

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

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

761761
property :private_connectivity, as: 'privateConnectivity', class: Google::Apis::DatastreamV1::PrivateConnectivity, decorator: Google::Apis::DatastreamV1::PrivateConnectivity::Representation
762762

763+
property :satisfies_pzi, as: 'satisfiesPzi'
764+
property :satisfies_pzs, as: 'satisfiesPzs'
763765
property :sql_server_profile, as: 'sqlServerProfile', class: Google::Apis::DatastreamV1::SqlServerProfile, decorator: Google::Apis::DatastreamV1::SqlServerProfile::Representation
764766

765767
property :static_service_ip_connectivity, as: 'staticServiceIpConnectivity', class: Google::Apis::DatastreamV1::StaticServiceIpConnectivity, decorator: Google::Apis::DatastreamV1::StaticServiceIpConnectivity::Representation
@@ -1354,6 +1356,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
13541356

13551357
hash :labels, as: 'labels'
13561358
property :name, as: 'name'
1359+
property :satisfies_pzi, as: 'satisfiesPzi'
1360+
property :satisfies_pzs, as: 'satisfiesPzs'
13571361
property :state, as: 'state'
13581362
property :update_time, as: 'updateTime'
13591363
property :vpc_peering_config, as: 'vpcPeeringConfig', class: Google::Apis::DatastreamV1::VpcPeeringConfig, decorator: Google::Apis::DatastreamV1::VpcPeeringConfig::Representation
@@ -1616,6 +1620,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
16161620
hash :labels, as: 'labels'
16171621
property :last_recovery_time, as: 'lastRecoveryTime'
16181622
property :name, as: 'name'
1623+
property :satisfies_pzi, as: 'satisfiesPzi'
1624+
property :satisfies_pzs, as: 'satisfiesPzs'
16191625
property :source_config, as: 'sourceConfig', class: Google::Apis::DatastreamV1::SourceConfig, decorator: Google::Apis::DatastreamV1::SourceConfig::Representation
16201626

16211627
property :state, as: 'state'

0 commit comments

Comments
 (0)