Skip to content

Commit 8877f08

Browse files
1 parent c24a337 commit 8877f08

File tree

6 files changed

+297
-7
lines changed

6 files changed

+297
-7
lines changed

clients/google-api-services-looker/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-looker</artifactId>
25-
<version>v1-rev20240522-2.0.0</version>
25+
<version>v1-rev20240814-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-looker:v1-rev20240522-2.0.0'
38+
implementation 'com.google.apis:google-api-services-looker:v1-rev20240814-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-looker/v1/2.0.0/com/google/api/services/looker/v1/model/Instance.java

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,21 @@ public final class Instance extends com.google.api.client.json.GenericJson {
164164
@com.google.api.client.util.Key
165165
private java.lang.Boolean privateIpEnabled;
166166

167+
/**
168+
* Optional. PSC configuration. Used when `psc_enabled` is true.
169+
* The value may be {@code null}.
170+
*/
171+
@com.google.api.client.util.Key
172+
private PscConfig pscConfig;
173+
174+
/**
175+
* Optional. Whether to use Private Service Connect (PSC) for private IP connectivity. If true,
176+
* neither `public_ip_enabled` nor `private_ip_enabled` can be true.
177+
* The value may be {@code null}.
178+
*/
179+
@com.google.api.client.util.Key
180+
private java.lang.Boolean pscEnabled;
181+
167182
/**
168183
* Whether public IP is enabled on the Looker instance.
169184
* The value may be {@code null}.
@@ -525,6 +540,42 @@ public Instance setPrivateIpEnabled(java.lang.Boolean privateIpEnabled) {
525540
return this;
526541
}
527542

543+
/**
544+
* Optional. PSC configuration. Used when `psc_enabled` is true.
545+
* @return value or {@code null} for none
546+
*/
547+
public PscConfig getPscConfig() {
548+
return pscConfig;
549+
}
550+
551+
/**
552+
* Optional. PSC configuration. Used when `psc_enabled` is true.
553+
* @param pscConfig pscConfig or {@code null} for none
554+
*/
555+
public Instance setPscConfig(PscConfig pscConfig) {
556+
this.pscConfig = pscConfig;
557+
return this;
558+
}
559+
560+
/**
561+
* Optional. Whether to use Private Service Connect (PSC) for private IP connectivity. If true,
562+
* neither `public_ip_enabled` nor `private_ip_enabled` can be true.
563+
* @return value or {@code null} for none
564+
*/
565+
public java.lang.Boolean getPscEnabled() {
566+
return pscEnabled;
567+
}
568+
569+
/**
570+
* Optional. Whether to use Private Service Connect (PSC) for private IP connectivity. If true,
571+
* neither `public_ip_enabled` nor `private_ip_enabled` can be true.
572+
* @param pscEnabled pscEnabled or {@code null} for none
573+
*/
574+
public Instance setPscEnabled(java.lang.Boolean pscEnabled) {
575+
this.pscEnabled = pscEnabled;
576+
return this;
577+
}
578+
528579
/**
529580
* Whether public IP is enabled on the Looker instance.
530581
* @return value or {@code null} for none
Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.looker.v1.model;
18+
19+
/**
20+
* Information for Private Service Connect (PSC) setup for a Looker instance.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Looker (Google Cloud core) API. For a detailed
24+
* explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class PscConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. List of VPCs that are allowed ingress into looker. Format:
35+
* projects/{project}/global/networks/{network}
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<java.lang.String> allowedVpcs;
40+
41+
/**
42+
* Output only. URI of the Looker service attachment.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String lookerServiceAttachmentUri;
47+
48+
/**
49+
* Optional. List of egress service attachment configurations.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<ServiceAttachment> serviceAttachments;
54+
55+
/**
56+
* Optional. List of VPCs that are allowed ingress into looker. Format:
57+
* projects/{project}/global/networks/{network}
58+
* @return value or {@code null} for none
59+
*/
60+
public java.util.List<java.lang.String> getAllowedVpcs() {
61+
return allowedVpcs;
62+
}
63+
64+
/**
65+
* Optional. List of VPCs that are allowed ingress into looker. Format:
66+
* projects/{project}/global/networks/{network}
67+
* @param allowedVpcs allowedVpcs or {@code null} for none
68+
*/
69+
public PscConfig setAllowedVpcs(java.util.List<java.lang.String> allowedVpcs) {
70+
this.allowedVpcs = allowedVpcs;
71+
return this;
72+
}
73+
74+
/**
75+
* Output only. URI of the Looker service attachment.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.lang.String getLookerServiceAttachmentUri() {
79+
return lookerServiceAttachmentUri;
80+
}
81+
82+
/**
83+
* Output only. URI of the Looker service attachment.
84+
* @param lookerServiceAttachmentUri lookerServiceAttachmentUri or {@code null} for none
85+
*/
86+
public PscConfig setLookerServiceAttachmentUri(java.lang.String lookerServiceAttachmentUri) {
87+
this.lookerServiceAttachmentUri = lookerServiceAttachmentUri;
88+
return this;
89+
}
90+
91+
/**
92+
* Optional. List of egress service attachment configurations.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<ServiceAttachment> getServiceAttachments() {
96+
return serviceAttachments;
97+
}
98+
99+
/**
100+
* Optional. List of egress service attachment configurations.
101+
* @param serviceAttachments serviceAttachments or {@code null} for none
102+
*/
103+
public PscConfig setServiceAttachments(java.util.List<ServiceAttachment> serviceAttachments) {
104+
this.serviceAttachments = serviceAttachments;
105+
return this;
106+
}
107+
108+
@Override
109+
public PscConfig set(String fieldName, Object value) {
110+
return (PscConfig) super.set(fieldName, value);
111+
}
112+
113+
@Override
114+
public PscConfig clone() {
115+
return (PscConfig) super.clone();
116+
}
117+
118+
}
Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.looker.v1.model;
18+
19+
/**
20+
* Service attachment configuration.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Looker (Google Cloud core) API. For a detailed
24+
* explanation see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class ServiceAttachment extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. Connection status.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String connectionStatus;
39+
40+
/**
41+
* Required. Fully qualified domain name that will be used in the private DNS record created for
42+
* the service attachment.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String localFqdn;
47+
48+
/**
49+
* Required. URI of the service attachment to connect to. Format:
50+
* projects/{project}/regions/{region}/serviceAttachments/{service_attachment}
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.lang.String targetServiceAttachmentUri;
55+
56+
/**
57+
* Output only. Connection status.
58+
* @return value or {@code null} for none
59+
*/
60+
public java.lang.String getConnectionStatus() {
61+
return connectionStatus;
62+
}
63+
64+
/**
65+
* Output only. Connection status.
66+
* @param connectionStatus connectionStatus or {@code null} for none
67+
*/
68+
public ServiceAttachment setConnectionStatus(java.lang.String connectionStatus) {
69+
this.connectionStatus = connectionStatus;
70+
return this;
71+
}
72+
73+
/**
74+
* Required. Fully qualified domain name that will be used in the private DNS record created for
75+
* the service attachment.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.lang.String getLocalFqdn() {
79+
return localFqdn;
80+
}
81+
82+
/**
83+
* Required. Fully qualified domain name that will be used in the private DNS record created for
84+
* the service attachment.
85+
* @param localFqdn localFqdn or {@code null} for none
86+
*/
87+
public ServiceAttachment setLocalFqdn(java.lang.String localFqdn) {
88+
this.localFqdn = localFqdn;
89+
return this;
90+
}
91+
92+
/**
93+
* Required. URI of the service attachment to connect to. Format:
94+
* projects/{project}/regions/{region}/serviceAttachments/{service_attachment}
95+
* @return value or {@code null} for none
96+
*/
97+
public java.lang.String getTargetServiceAttachmentUri() {
98+
return targetServiceAttachmentUri;
99+
}
100+
101+
/**
102+
* Required. URI of the service attachment to connect to. Format:
103+
* projects/{project}/regions/{region}/serviceAttachments/{service_attachment}
104+
* @param targetServiceAttachmentUri targetServiceAttachmentUri or {@code null} for none
105+
*/
106+
public ServiceAttachment setTargetServiceAttachmentUri(java.lang.String targetServiceAttachmentUri) {
107+
this.targetServiceAttachmentUri = targetServiceAttachmentUri;
108+
return this;
109+
}
110+
111+
@Override
112+
public ServiceAttachment set(String fieldName, Object value) {
113+
return (ServiceAttachment) super.set(fieldName, value);
114+
}
115+
116+
@Override
117+
public ServiceAttachment clone() {
118+
return (ServiceAttachment) super.clone();
119+
}
120+
121+
}

clients/google-api-services-looker/v1/2.0.0/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-looker</artifactId>
11-
<version>v1-rev20240522-2.0.0</version>
12-
<name>Looker (Google Cloud core) API v1-rev20240522-2.0.0</name>
11+
<version>v1-rev20240814-2.0.0</version>
12+
<name>Looker (Google Cloud core) API v1-rev20240814-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Looker (Google Cloud core) API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.44.2/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.45.0/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.36.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.6.0/</link>
9696
</links>

clients/google-api-services-looker/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-looker</artifactId>
25-
<version>v1-rev20240522-2.0.0</version>
25+
<version>v1-rev20240814-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-looker:v1-rev20240522-2.0.0'
38+
implementation 'com.google.apis:google-api-services-looker:v1-rev20240814-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)