Skip to content

Commit c417414

Browse files
feat: Automated regeneration of looker v1 client (googleapis#23412)
Auto-created at 2025-06-15 09:55:24 +0000 using the toys pull request generator.
1 parent fd21e72 commit c417414

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272864,6 +272864,8 @@
272864272864
"/looker:v1/ServiceAttachment": service_attachment
272865272865
"/looker:v1/ServiceAttachment/connectionStatus": connection_status
272866272866
"/looker:v1/ServiceAttachment/localFqdn": local_fqdn
272867+
"/looker:v1/ServiceAttachment/localFqdns": local_fqdns
272868+
"/looker:v1/ServiceAttachment/localFqdns/local_fqdn": local_fqdn
272867272869
"/looker:v1/ServiceAttachment/targetServiceAttachmentUri": target_service_attachment_uri
272868272870
"/looker:v1/SetIamPolicyRequest": set_iam_policy_request
272869272871
"/looker:v1/SetIamPolicyRequest/policy": policy

generated/google-apis-looker_v1/CHANGELOG.md

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

3+
### v0.17.0 (2025-06-15)
4+
5+
* Regenerated from discovery document revision 20250604
6+
* Regenerated using generator version 0.18.0
7+
38
### v0.16.0 (2025-05-04)
49

510
* Regenerated using generator version 0.17.0

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,12 +1057,18 @@ class ServiceAttachment
10571057
# @return [String]
10581058
attr_accessor :connection_status
10591059

1060-
# Required. Fully qualified domain name that will be used in the private DNS
1060+
# Optional. Fully qualified domain name that will be used in the private DNS
10611061
# record created for the service attachment.
10621062
# Corresponds to the JSON property `localFqdn`
10631063
# @return [String]
10641064
attr_accessor :local_fqdn
10651065

1066+
# Optional. List of fully qualified domain names that will be used in the
1067+
# private DNS record created for the service attachment.
1068+
# Corresponds to the JSON property `localFqdns`
1069+
# @return [Array<String>]
1070+
attr_accessor :local_fqdns
1071+
10661072
# Required. URI of the service attachment to connect to. Format: projects/`
10671073
# project`/regions/`region`/serviceAttachments/`service_attachment`
10681074
# Corresponds to the JSON property `targetServiceAttachmentUri`
@@ -1077,6 +1083,7 @@ def initialize(**args)
10771083
def update!(**args)
10781084
@connection_status = args[:connection_status] if args.key?(:connection_status)
10791085
@local_fqdn = args[:local_fqdn] if args.key?(:local_fqdn)
1086+
@local_fqdns = args[:local_fqdns] if args.key?(:local_fqdns)
10801087
@target_service_attachment_uri = args[:target_service_attachment_uri] if args.key?(:target_service_attachment_uri)
10811088
end
10821089
end

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module LookerV1
1818
# Version of the google-apis-looker_v1 gem
19-
GEM_VERSION = "0.16.0"
19+
GEM_VERSION = "0.17.0"
2020

2121
# Version of the code generator used to generate this client
22-
GENERATOR_VERSION = "0.17.0"
22+
GENERATOR_VERSION = "0.18.0"
2323

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

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,7 @@ class ServiceAttachment
495495
class Representation < Google::Apis::Core::JsonRepresentation
496496
property :connection_status, as: 'connectionStatus'
497497
property :local_fqdn, as: 'localFqdn'
498+
collection :local_fqdns, as: 'localFqdns'
498499
property :target_service_attachment_uri, as: 'targetServiceAttachmentUri'
499500
end
500501
end

0 commit comments

Comments
 (0)