Skip to content

Commit efedcdc

Browse files
1 parent 4bddaa7 commit efedcdc

File tree

5 files changed

+148
-6
lines changed

5 files changed

+148
-6
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-rev20251001-2.0.0</version>
25+
<version>v1-rev20251017-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-rev20251001-2.0.0'
38+
implementation 'com.google.apis:google-api-services-looker:v1-rev20251017-2.0.0'
3939
}
4040
```
4141

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
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+
* Controlled egress 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 ControlledEgressConfig extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. List of fully qualified domain names to be added to the allowlist for outbound
35+
* traffic.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<java.lang.String> egressFqdns;
40+
41+
/**
42+
* Optional. Whether marketplace is enabled.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.Boolean marketplaceEnabled;
47+
48+
/**
49+
* Optional. List of fully qualified domain names to be added to the allowlist for outbound
50+
* traffic.
51+
* @return value or {@code null} for none
52+
*/
53+
public java.util.List<java.lang.String> getEgressFqdns() {
54+
return egressFqdns;
55+
}
56+
57+
/**
58+
* Optional. List of fully qualified domain names to be added to the allowlist for outbound
59+
* traffic.
60+
* @param egressFqdns egressFqdns or {@code null} for none
61+
*/
62+
public ControlledEgressConfig setEgressFqdns(java.util.List<java.lang.String> egressFqdns) {
63+
this.egressFqdns = egressFqdns;
64+
return this;
65+
}
66+
67+
/**
68+
* Optional. Whether marketplace is enabled.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.lang.Boolean getMarketplaceEnabled() {
72+
return marketplaceEnabled;
73+
}
74+
75+
/**
76+
* Optional. Whether marketplace is enabled.
77+
* @param marketplaceEnabled marketplaceEnabled or {@code null} for none
78+
*/
79+
public ControlledEgressConfig setMarketplaceEnabled(java.lang.Boolean marketplaceEnabled) {
80+
this.marketplaceEnabled = marketplaceEnabled;
81+
return this;
82+
}
83+
84+
@Override
85+
public ControlledEgressConfig set(String fieldName, Object value) {
86+
return (ControlledEgressConfig) super.set(fieldName, value);
87+
}
88+
89+
@Override
90+
public ControlledEgressConfig clone() {
91+
return (ControlledEgressConfig) super.clone();
92+
}
93+
94+
}

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,20 @@ public final class Instance extends com.google.api.client.json.GenericJson {
5353
@com.google.api.client.util.Key
5454
private java.lang.String consumerNetwork;
5555

56+
/**
57+
* Optional. Controlled egress configuration.
58+
* The value may be {@code null}.
59+
*/
60+
@com.google.api.client.util.Key
61+
private ControlledEgressConfig controlledEgressConfig;
62+
63+
/**
64+
* Optional. Whether controlled egress is enabled on the Looker instance.
65+
* The value may be {@code null}.
66+
*/
67+
@com.google.api.client.util.Key
68+
private java.lang.Boolean controlledEgressEnabled;
69+
5670
/**
5771
* Output only. The time when the Looker instance provisioning was first requested.
5872
* The value may be {@code null}.
@@ -306,6 +320,40 @@ public Instance setConsumerNetwork(java.lang.String consumerNetwork) {
306320
return this;
307321
}
308322

323+
/**
324+
* Optional. Controlled egress configuration.
325+
* @return value or {@code null} for none
326+
*/
327+
public ControlledEgressConfig getControlledEgressConfig() {
328+
return controlledEgressConfig;
329+
}
330+
331+
/**
332+
* Optional. Controlled egress configuration.
333+
* @param controlledEgressConfig controlledEgressConfig or {@code null} for none
334+
*/
335+
public Instance setControlledEgressConfig(ControlledEgressConfig controlledEgressConfig) {
336+
this.controlledEgressConfig = controlledEgressConfig;
337+
return this;
338+
}
339+
340+
/**
341+
* Optional. Whether controlled egress is enabled on the Looker instance.
342+
* @return value or {@code null} for none
343+
*/
344+
public java.lang.Boolean getControlledEgressEnabled() {
345+
return controlledEgressEnabled;
346+
}
347+
348+
/**
349+
* Optional. Whether controlled egress is enabled on the Looker instance.
350+
* @param controlledEgressEnabled controlledEgressEnabled or {@code null} for none
351+
*/
352+
public Instance setControlledEgressEnabled(java.lang.Boolean controlledEgressEnabled) {
353+
this.controlledEgressEnabled = controlledEgressEnabled;
354+
return this;
355+
}
356+
309357
/**
310358
* Output only. The time when the Looker instance provisioning was first requested.
311359
* @return value or {@code null} for none

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

Lines changed: 2 additions & 2 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-rev20251001-2.0.0</version>
12-
<name>Looker (Google Cloud core) API v1-rev20251001-2.0.0</name>
11+
<version>v1-rev20251017-2.0.0</version>
12+
<name>Looker (Google Cloud core) API v1-rev20251017-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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-rev20251001-2.0.0</version>
25+
<version>v1-rev20251017-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-rev20251001-2.0.0'
38+
implementation 'com.google.apis:google-api-services-looker:v1-rev20251017-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)