Skip to content

Commit 8e57aa6

Browse files
1 parent 6ce221d commit 8e57aa6

File tree

6 files changed

+226
-6
lines changed

6 files changed

+226
-6
lines changed

clients/google-api-services-privateca/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-privateca</artifactId>
25-
<version>v1-rev20250326-2.0.0</version>
25+
<version>v1-rev20250528-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-privateca:v1-rev20250326-2.0.0'
38+
implementation 'com.google.apis:google-api-services-privateca:v1-rev20250528-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
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.privateca.v1.model;
18+
19+
/**
20+
* AttributeTypeAndValue specifies an attribute type and value. It can use either a OID or enum
21+
* value to specify the attribute type.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Certificate Authority API. For a detailed explanation
25+
* see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class AttributeTypeAndValue extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Object ID for an attribute type of an attribute and value pair.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private ObjectId objectId;
40+
41+
/**
42+
* The attribute type of the attribute and value pair.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String type;
47+
48+
/**
49+
* The value for the attribute type.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String value;
54+
55+
/**
56+
* Object ID for an attribute type of an attribute and value pair.
57+
* @return value or {@code null} for none
58+
*/
59+
public ObjectId getObjectId() {
60+
return objectId;
61+
}
62+
63+
/**
64+
* Object ID for an attribute type of an attribute and value pair.
65+
* @param objectId objectId or {@code null} for none
66+
*/
67+
public AttributeTypeAndValue setObjectId(ObjectId objectId) {
68+
this.objectId = objectId;
69+
return this;
70+
}
71+
72+
/**
73+
* The attribute type of the attribute and value pair.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.String getType() {
77+
return type;
78+
}
79+
80+
/**
81+
* The attribute type of the attribute and value pair.
82+
* @param type type or {@code null} for none
83+
*/
84+
public AttributeTypeAndValue setType(java.lang.String type) {
85+
this.type = type;
86+
return this;
87+
}
88+
89+
/**
90+
* The value for the attribute type.
91+
* @return value or {@code null} for none
92+
*/
93+
public java.lang.String getValue() {
94+
return value;
95+
}
96+
97+
/**
98+
* The value for the attribute type.
99+
* @param value value or {@code null} for none
100+
*/
101+
public AttributeTypeAndValue setValue(java.lang.String value) {
102+
this.value = value;
103+
return this;
104+
}
105+
106+
@Override
107+
public AttributeTypeAndValue set(String fieldName, Object value) {
108+
return (AttributeTypeAndValue) super.set(fieldName, value);
109+
}
110+
111+
@Override
112+
public AttributeTypeAndValue clone() {
113+
return (AttributeTypeAndValue) super.clone();
114+
}
115+
116+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
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.privateca.v1.model;
18+
19+
/**
20+
* RelativeDistinguishedName specifies a relative distinguished name which will be used to build a
21+
* distinguished name.
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Certificate Authority API. For a detailed explanation
25+
* see:
26+
* <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>
27+
* </p>
28+
*
29+
* @author Google, Inc.
30+
*/
31+
@SuppressWarnings("javadoc")
32+
public final class RelativeDistinguishedName extends com.google.api.client.json.GenericJson {
33+
34+
/**
35+
* Attributes describes the attribute value assertions in the RDN.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<AttributeTypeAndValue> attributes;
40+
41+
static {
42+
// hack to force ProGuard to consider AttributeTypeAndValue used, since otherwise it would be stripped out
43+
// see https://github.com/google/google-api-java-client/issues/543
44+
com.google.api.client.util.Data.nullOf(AttributeTypeAndValue.class);
45+
}
46+
47+
/**
48+
* Attributes describes the attribute value assertions in the RDN.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.util.List<AttributeTypeAndValue> getAttributes() {
52+
return attributes;
53+
}
54+
55+
/**
56+
* Attributes describes the attribute value assertions in the RDN.
57+
* @param attributes attributes or {@code null} for none
58+
*/
59+
public RelativeDistinguishedName setAttributes(java.util.List<AttributeTypeAndValue> attributes) {
60+
this.attributes = attributes;
61+
return this;
62+
}
63+
64+
@Override
65+
public RelativeDistinguishedName set(String fieldName, Object value) {
66+
return (RelativeDistinguishedName) super.set(fieldName, value);
67+
}
68+
69+
@Override
70+
public RelativeDistinguishedName clone() {
71+
return (RelativeDistinguishedName) super.clone();
72+
}
73+
74+
}

clients/google-api-services-privateca/v1/2.0.0/com/google/api/services/privateca/v1/model/Subject.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,19 @@ public final class Subject extends com.google.api.client.json.GenericJson {
8080
@com.google.api.client.util.Key
8181
private java.lang.String province;
8282

83+
/**
84+
* This field can be used in place of the named subject fields.
85+
* The value may be {@code null}.
86+
*/
87+
@com.google.api.client.util.Key
88+
private java.util.List<RelativeDistinguishedName> rdnSequence;
89+
90+
static {
91+
// hack to force ProGuard to consider RelativeDistinguishedName used, since otherwise it would be stripped out
92+
// see https://github.com/google/google-api-java-client/issues/543
93+
com.google.api.client.util.Data.nullOf(RelativeDistinguishedName.class);
94+
}
95+
8396
/**
8497
* The street address of the subject.
8598
* The value may be {@code null}.
@@ -206,6 +219,23 @@ public Subject setProvince(java.lang.String province) {
206219
return this;
207220
}
208221

222+
/**
223+
* This field can be used in place of the named subject fields.
224+
* @return value or {@code null} for none
225+
*/
226+
public java.util.List<RelativeDistinguishedName> getRdnSequence() {
227+
return rdnSequence;
228+
}
229+
230+
/**
231+
* This field can be used in place of the named subject fields.
232+
* @param rdnSequence rdnSequence or {@code null} for none
233+
*/
234+
public Subject setRdnSequence(java.util.List<RelativeDistinguishedName> rdnSequence) {
235+
this.rdnSequence = rdnSequence;
236+
return this;
237+
}
238+
209239
/**
210240
* The street address of the subject.
211241
* @return value or {@code null} for none

clients/google-api-services-privateca/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-privateca</artifactId>
11-
<version>v1-rev20250326-2.0.0</version>
12-
<name>Certificate Authority API v1-rev20250326-2.0.0</name>
11+
<version>v1-rev20250528-2.0.0</version>
12+
<name>Certificate Authority API v1-rev20250528-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-privateca/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-privateca</artifactId>
25-
<version>v1-rev20250326-2.0.0</version>
25+
<version>v1-rev20250528-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-privateca:v1-rev20250326-2.0.0'
38+
implementation 'com.google.apis:google-api-services-privateca:v1-rev20250528-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)