File tree Expand file tree Collapse file tree 5 files changed +19
-4
lines changed
generated/google-apis-looker_v1
lib/google/apis/looker_v1 Expand file tree Collapse file tree 5 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -272864,6 +272864,8 @@
272864
272864
"/looker:v1/ServiceAttachment": service_attachment
272865
272865
"/looker:v1/ServiceAttachment/connectionStatus": connection_status
272866
272866
"/looker:v1/ServiceAttachment/localFqdn": local_fqdn
272867
+ "/looker:v1/ServiceAttachment/localFqdns": local_fqdns
272868
+ "/looker:v1/ServiceAttachment/localFqdns/local_fqdn": local_fqdn
272867
272869
"/looker:v1/ServiceAttachment/targetServiceAttachmentUri": target_service_attachment_uri
272868
272870
"/looker:v1/SetIamPolicyRequest": set_iam_policy_request
272869
272871
"/looker:v1/SetIamPolicyRequest/policy": policy
Original file line number Diff line number Diff line change 1
1
# Release history for google-apis-looker_v1
2
2
3
+ ### v0.17.0 (2025-06-15)
4
+
5
+ * Regenerated from discovery document revision 20250604
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
### v0.16.0 (2025-05-04)
4
9
5
10
* Regenerated using generator version 0.17.0
Original file line number Diff line number Diff line change @@ -1057,12 +1057,18 @@ class ServiceAttachment
1057
1057
# @return [String]
1058
1058
attr_accessor :connection_status
1059
1059
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
1061
1061
# record created for the service attachment.
1062
1062
# Corresponds to the JSON property `localFqdn`
1063
1063
# @return [String]
1064
1064
attr_accessor :local_fqdn
1065
1065
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
+
1066
1072
# Required. URI of the service attachment to connect to. Format: projects/`
1067
1073
# project`/regions/`region`/serviceAttachments/`service_attachment`
1068
1074
# Corresponds to the JSON property `targetServiceAttachmentUri`
@@ -1077,6 +1083,7 @@ def initialize(**args)
1077
1083
def update! ( **args )
1078
1084
@connection_status = args [ :connection_status ] if args . key? ( :connection_status )
1079
1085
@local_fqdn = args [ :local_fqdn ] if args . key? ( :local_fqdn )
1086
+ @local_fqdns = args [ :local_fqdns ] if args . key? ( :local_fqdns )
1080
1087
@target_service_attachment_uri = args [ :target_service_attachment_uri ] if args . key? ( :target_service_attachment_uri )
1081
1088
end
1082
1089
end
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ module Google
16
16
module Apis
17
17
module LookerV1
18
18
# Version of the google-apis-looker_v1 gem
19
- GEM_VERSION = "0.16 .0"
19
+ GEM_VERSION = "0.17 .0"
20
20
21
21
# Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17 .0"
22
+ GENERATOR_VERSION = "0.18 .0"
23
23
24
24
# Revision of the discovery document this client was generated from
25
- REVISION = "20250414 "
25
+ REVISION = "20250604 "
26
26
end
27
27
end
28
28
end
Original file line number Diff line number Diff line change @@ -495,6 +495,7 @@ class ServiceAttachment
495
495
class Representation < Google ::Apis ::Core ::JsonRepresentation
496
496
property :connection_status , as : 'connectionStatus'
497
497
property :local_fqdn , as : 'localFqdn'
498
+ collection :local_fqdns , as : 'localFqdns'
498
499
property :target_service_attachment_uri , as : 'targetServiceAttachmentUri'
499
500
end
500
501
end
You can’t perform that action at this time.
0 commit comments