Skip to content

Commit 5193d30

Browse files
chore: regenerate authorizedbuyersmarketplace client (googleapis#30327)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-java-client-services/actions/workflows/codegen.yaml
1 parent 2e1d947 commit 5193d30

40 files changed

+7238
-12
lines changed

clients/google-api-services-authorizedbuyersmarketplace/v1alpha/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-authorizedbuyersmarketplace</artifactId>
25-
<version>v1alpha-rev20251119-2.0.0</version>
25+
<version>v1alpha-rev20251211-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-authorizedbuyersmarketplace:v1alpha-rev20251119-2.0.0'
38+
implementation 'com.google.apis:google-api-services-authorizedbuyersmarketplace:v1alpha-rev20251211-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-authorizedbuyersmarketplace/v1alpha/2.0.0/com/google/api/services/authorizedbuyersmarketplace/v1alpha/AuthorizedBuyersMarketplace.java

Lines changed: 1228 additions & 0 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
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.authorizedbuyersmarketplace.v1alpha.model;
18+
19+
/**
20+
* Settings for controlling access to a curated package.
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 Authorized Buyers Marketplace 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 AccessControlSettings extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. Immutable. The list of media planners that are explicitly granted access to the
35+
* curated package. Eligible media planners can be found in the mediaPlanners.list method. Only a
36+
* single media planner may be allowlisted at this time. Format:
37+
* `mediaPlanners/{mediaPlannerAccountId}`
38+
* The value may be {@code null}.
39+
*/
40+
@com.google.api.client.util.Key
41+
private java.util.List<java.lang.String> allowlistedMediaPlanners;
42+
43+
/**
44+
* Required. Immutable. The list of media planners that are explicitly granted access to the
45+
* curated package. Eligible media planners can be found in the mediaPlanners.list method. Only a
46+
* single media planner may be allowlisted at this time. Format:
47+
* `mediaPlanners/{mediaPlannerAccountId}`
48+
* @return value or {@code null} for none
49+
*/
50+
public java.util.List<java.lang.String> getAllowlistedMediaPlanners() {
51+
return allowlistedMediaPlanners;
52+
}
53+
54+
/**
55+
* Required. Immutable. The list of media planners that are explicitly granted access to the
56+
* curated package. Eligible media planners can be found in the mediaPlanners.list method. Only a
57+
* single media planner may be allowlisted at this time. Format:
58+
* `mediaPlanners/{mediaPlannerAccountId}`
59+
* @param allowlistedMediaPlanners allowlistedMediaPlanners or {@code null} for none
60+
*/
61+
public AccessControlSettings setAllowlistedMediaPlanners(java.util.List<java.lang.String> allowlistedMediaPlanners) {
62+
this.allowlistedMediaPlanners = allowlistedMediaPlanners;
63+
return this;
64+
}
65+
66+
@Override
67+
public AccessControlSettings set(String fieldName, Object value) {
68+
return (AccessControlSettings) super.set(fieldName, value);
69+
}
70+
71+
@Override
72+
public AccessControlSettings clone() {
73+
return (AccessControlSettings) super.clone();
74+
}
75+
76+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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.authorizedbuyersmarketplace.v1alpha.model;
18+
19+
/**
20+
* Request message for ActivateCuratedPackage.
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 Authorized Buyers Marketplace 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 ActivateCuratedPackageRequest extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public ActivateCuratedPackageRequest set(String fieldName, Object value) {
35+
return (ActivateCuratedPackageRequest) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public ActivateCuratedPackageRequest clone() {
40+
return (ActivateCuratedPackageRequest) super.clone();
41+
}
42+
43+
}

0 commit comments

Comments
 (0)