Skip to content

Commit dcac8cb

Browse files
1 parent a268911 commit dcac8cb

7 files changed

Lines changed: 180 additions & 6 deletions

File tree

clients/google-api-services-tagmanager/v2/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-tagmanager</artifactId>
25-
<version>v2-rev20260304-2.0.0</version>
25+
<version>v2-rev20260511-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-tagmanager:v2-rev20260304-2.0.0'
38+
implementation 'com.google.apis:google-api-services-tagmanager:v2-rev20260511-2.0.0'
3939
}
4040
```
4141

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
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.tagmanager.model;
18+
19+
/**
20+
* Model definition for CompilerErrorLite.
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 Tag Manager API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class CompilerErrorLite extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The value may be {@code null}.
34+
*/
35+
@com.google.api.client.util.Key
36+
private java.lang.String errorMessage;
37+
38+
/**
39+
* The value may be {@code null}.
40+
*/
41+
@com.google.api.client.util.Key
42+
private java.lang.String errorType;
43+
44+
/**
45+
* @return value or {@code null} for none
46+
*/
47+
public java.lang.String getErrorMessage() {
48+
return errorMessage;
49+
}
50+
51+
/**
52+
* @param errorMessage errorMessage or {@code null} for none
53+
*/
54+
public CompilerErrorLite setErrorMessage(java.lang.String errorMessage) {
55+
this.errorMessage = errorMessage;
56+
return this;
57+
}
58+
59+
/**
60+
* @return value or {@code null} for none
61+
*/
62+
public java.lang.String getErrorType() {
63+
return errorType;
64+
}
65+
66+
/**
67+
* @param errorType errorType or {@code null} for none
68+
*/
69+
public CompilerErrorLite setErrorType(java.lang.String errorType) {
70+
this.errorType = errorType;
71+
return this;
72+
}
73+
74+
@Override
75+
public CompilerErrorLite set(String fieldName, Object value) {
76+
return (CompilerErrorLite) super.set(fieldName, value);
77+
}
78+
79+
@Override
80+
public CompilerErrorLite clone() {
81+
return (CompilerErrorLite) super.clone();
82+
}
83+
84+
}

clients/google-api-services-tagmanager/v2/2.0.0/com/google/api/services/tagmanager/model/CreateContainerVersionResponse.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,19 @@ public final class CreateContainerVersionResponse extends com.google.api.client.
3636
@com.google.api.client.util.Key
3737
private java.lang.Boolean compilerError;
3838

39+
/**
40+
* Compiler error details.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<CompilerErrorLite> compilerErrors;
45+
46+
static {
47+
// hack to force ProGuard to consider CompilerErrorLite used, since otherwise it would be stripped out
48+
// see https://github.com/google/google-api-java-client/issues/543
49+
com.google.api.client.util.Data.nullOf(CompilerErrorLite.class);
50+
}
51+
3952
/**
4053
* The container version created.
4154
* The value may be {@code null}.
@@ -75,6 +88,23 @@ public CreateContainerVersionResponse setCompilerError(java.lang.Boolean compile
7588
return this;
7689
}
7790

91+
/**
92+
* Compiler error details.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<CompilerErrorLite> getCompilerErrors() {
96+
return compilerErrors;
97+
}
98+
99+
/**
100+
* Compiler error details.
101+
* @param compilerErrors compilerErrors or {@code null} for none
102+
*/
103+
public CreateContainerVersionResponse setCompilerErrors(java.util.List<CompilerErrorLite> compilerErrors) {
104+
this.compilerErrors = compilerErrors;
105+
return this;
106+
}
107+
78108
/**
79109
* The container version created.
80110
* @return value or {@code null} for none

clients/google-api-services-tagmanager/v2/2.0.0/com/google/api/services/tagmanager/model/PublishContainerVersionResponse.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,19 @@ public final class PublishContainerVersionResponse extends com.google.api.client
3636
@com.google.api.client.util.Key
3737
private java.lang.Boolean compilerError;
3838

39+
/**
40+
* Compiler error details.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<CompilerErrorLite> compilerErrors;
45+
46+
static {
47+
// hack to force ProGuard to consider CompilerErrorLite used, since otherwise it would be stripped out
48+
// see https://github.com/google/google-api-java-client/issues/543
49+
com.google.api.client.util.Data.nullOf(CompilerErrorLite.class);
50+
}
51+
3952
/**
4053
* The container version created.
4154
* The value may be {@code null}.
@@ -60,6 +73,23 @@ public PublishContainerVersionResponse setCompilerError(java.lang.Boolean compil
6073
return this;
6174
}
6275

76+
/**
77+
* Compiler error details.
78+
* @return value or {@code null} for none
79+
*/
80+
public java.util.List<CompilerErrorLite> getCompilerErrors() {
81+
return compilerErrors;
82+
}
83+
84+
/**
85+
* Compiler error details.
86+
* @param compilerErrors compilerErrors or {@code null} for none
87+
*/
88+
public PublishContainerVersionResponse setCompilerErrors(java.util.List<CompilerErrorLite> compilerErrors) {
89+
this.compilerErrors = compilerErrors;
90+
return this;
91+
}
92+
6393
/**
6494
* The container version created.
6595
* @return value or {@code null} for none

clients/google-api-services-tagmanager/v2/2.0.0/com/google/api/services/tagmanager/model/QuickPreviewResponse.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,19 @@ public final class QuickPreviewResponse extends com.google.api.client.json.Gener
3636
@com.google.api.client.util.Key
3737
private java.lang.Boolean compilerError;
3838

39+
/**
40+
* Compiler error details.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<CompilerErrorLite> compilerErrors;
45+
46+
static {
47+
// hack to force ProGuard to consider CompilerErrorLite used, since otherwise it would be stripped out
48+
// see https://github.com/google/google-api-java-client/issues/543
49+
com.google.api.client.util.Data.nullOf(CompilerErrorLite.class);
50+
}
51+
3952
/**
4053
* The quick previewed container version.
4154
* The value may be {@code null}.
@@ -67,6 +80,23 @@ public QuickPreviewResponse setCompilerError(java.lang.Boolean compilerError) {
6780
return this;
6881
}
6982

83+
/**
84+
* Compiler error details.
85+
* @return value or {@code null} for none
86+
*/
87+
public java.util.List<CompilerErrorLite> getCompilerErrors() {
88+
return compilerErrors;
89+
}
90+
91+
/**
92+
* Compiler error details.
93+
* @param compilerErrors compilerErrors or {@code null} for none
94+
*/
95+
public QuickPreviewResponse setCompilerErrors(java.util.List<CompilerErrorLite> compilerErrors) {
96+
this.compilerErrors = compilerErrors;
97+
return this;
98+
}
99+
70100
/**
71101
* The quick previewed container version.
72102
* @return value or {@code null} for none

clients/google-api-services-tagmanager/v2/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-tagmanager</artifactId>
11-
<version>v2-rev20260304-2.0.0</version>
12-
<name>Tag Manager API v2-rev20260304-2.0.0</name>
11+
<version>v2-rev20260511-2.0.0</version>
12+
<name>Tag Manager API v2-rev20260511-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-tagmanager/v2/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-tagmanager</artifactId>
25-
<version>v2-rev20260304-2.0.0</version>
25+
<version>v2-rev20260511-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-tagmanager:v2-rev20260304-2.0.0'
38+
implementation 'com.google.apis:google-api-services-tagmanager:v2-rev20260511-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)