Skip to content

Commit 65d336e

Browse files
1 parent d5ac512 commit 65d336e

File tree

4 files changed

+36
-9
lines changed

4 files changed

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

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

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,21 @@ public final class ServiceAttachment extends com.google.api.client.json.GenericJ
3838
private java.lang.String connectionStatus;
3939

4040
/**
41-
* Required. Fully qualified domain name that will be used in the private DNS record created for
41+
* Optional. Fully qualified domain name that will be used in the private DNS record created for
4242
* the service attachment.
4343
* The value may be {@code null}.
4444
*/
4545
@com.google.api.client.util.Key
4646
private java.lang.String localFqdn;
4747

48+
/**
49+
* Optional. List of fully qualified domain names that will be used in the private DNS record
50+
* created for the service attachment.
51+
* The value may be {@code null}.
52+
*/
53+
@com.google.api.client.util.Key
54+
private java.util.List<java.lang.String> localFqdns;
55+
4856
/**
4957
* Required. URI of the service attachment to connect to. Format:
5058
* projects/{project}/regions/{region}/serviceAttachments/{service_attachment}
@@ -71,7 +79,7 @@ public ServiceAttachment setConnectionStatus(java.lang.String connectionStatus)
7179
}
7280

7381
/**
74-
* Required. Fully qualified domain name that will be used in the private DNS record created for
82+
* Optional. Fully qualified domain name that will be used in the private DNS record created for
7583
* the service attachment.
7684
* @return value or {@code null} for none
7785
*/
@@ -80,7 +88,7 @@ public java.lang.String getLocalFqdn() {
8088
}
8189

8290
/**
83-
* Required. Fully qualified domain name that will be used in the private DNS record created for
91+
* Optional. Fully qualified domain name that will be used in the private DNS record created for
8492
* the service attachment.
8593
* @param localFqdn localFqdn or {@code null} for none
8694
*/
@@ -89,6 +97,25 @@ public ServiceAttachment setLocalFqdn(java.lang.String localFqdn) {
8997
return this;
9098
}
9199

100+
/**
101+
* Optional. List of fully qualified domain names that will be used in the private DNS record
102+
* created for the service attachment.
103+
* @return value or {@code null} for none
104+
*/
105+
public java.util.List<java.lang.String> getLocalFqdns() {
106+
return localFqdns;
107+
}
108+
109+
/**
110+
* Optional. List of fully qualified domain names that will be used in the private DNS record
111+
* created for the service attachment.
112+
* @param localFqdns localFqdns or {@code null} for none
113+
*/
114+
public ServiceAttachment setLocalFqdns(java.util.List<java.lang.String> localFqdns) {
115+
this.localFqdns = localFqdns;
116+
return this;
117+
}
118+
92119
/**
93120
* Required. URI of the service attachment to connect to. Format:
94121
* projects/{project}/regions/{region}/serviceAttachments/{service_attachment}

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-rev20250414-2.0.0</version>
12-
<name>Looker (Google Cloud core) API v1-rev20250414-2.0.0</name>
11+
<version>v1-rev20250604-2.0.0</version>
12+
<name>Looker (Google Cloud core) API v1-rev20250604-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-rev20250414-2.0.0</version>
25+
<version>v1-rev20250604-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-rev20250414-2.0.0'
38+
implementation 'com.google.apis:google-api-services-looker:v1-rev20250604-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)