Skip to content

Commit 63529ae

Browse files
1 parent 3519dd0 commit 63529ae

14 files changed

+1115
-9
lines changed

clients/google-api-services-securitycenter/v1beta1/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-securitycenter</artifactId>
25-
<version>v1beta1-rev20250707-2.0.0</version>
25+
<version>v1beta1-rev20250721-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-securitycenter:v1beta1-rev20250707-2.0.0'
38+
implementation 'com.google.apis:google-api-services-securitycenter:v1beta1-rev20250721-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
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.securitycenter.v1beta1.model;
18+
19+
/**
20+
* CloudControl associated with the finding.
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 Security Command Center 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 CloudControl extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Name of the CloudControl associated with the finding.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String cloudControlName;
39+
40+
/**
41+
* Policy type of the CloudControl
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String policyType;
46+
47+
/**
48+
* Type of cloud control.
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String type;
53+
54+
/**
55+
* Version of the Cloud Control
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.Integer version;
60+
61+
/**
62+
* Name of the CloudControl associated with the finding.
63+
* @return value or {@code null} for none
64+
*/
65+
public java.lang.String getCloudControlName() {
66+
return cloudControlName;
67+
}
68+
69+
/**
70+
* Name of the CloudControl associated with the finding.
71+
* @param cloudControlName cloudControlName or {@code null} for none
72+
*/
73+
public CloudControl setCloudControlName(java.lang.String cloudControlName) {
74+
this.cloudControlName = cloudControlName;
75+
return this;
76+
}
77+
78+
/**
79+
* Policy type of the CloudControl
80+
* @return value or {@code null} for none
81+
*/
82+
public java.lang.String getPolicyType() {
83+
return policyType;
84+
}
85+
86+
/**
87+
* Policy type of the CloudControl
88+
* @param policyType policyType or {@code null} for none
89+
*/
90+
public CloudControl setPolicyType(java.lang.String policyType) {
91+
this.policyType = policyType;
92+
return this;
93+
}
94+
95+
/**
96+
* Type of cloud control.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.lang.String getType() {
100+
return type;
101+
}
102+
103+
/**
104+
* Type of cloud control.
105+
* @param type type or {@code null} for none
106+
*/
107+
public CloudControl setType(java.lang.String type) {
108+
this.type = type;
109+
return this;
110+
}
111+
112+
/**
113+
* Version of the Cloud Control
114+
* @return value or {@code null} for none
115+
*/
116+
public java.lang.Integer getVersion() {
117+
return version;
118+
}
119+
120+
/**
121+
* Version of the Cloud Control
122+
* @param version version or {@code null} for none
123+
*/
124+
public CloudControl setVersion(java.lang.Integer version) {
125+
this.version = version;
126+
return this;
127+
}
128+
129+
@Override
130+
public CloudControl set(String fieldName, Object value) {
131+
return (CloudControl) super.set(fieldName, value);
132+
}
133+
134+
@Override
135+
public CloudControl clone() {
136+
return (CloudControl) super.clone();
137+
}
138+
139+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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.securitycenter.v1beta1.model;
18+
19+
/**
20+
* Compliance Details associated with the finding.
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 Security Command Center 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 ComplianceDetails extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* CloudControl associated with the finding
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private CloudControl cloudControl;
39+
40+
/**
41+
* Cloud Control Deployments associated with the finding. For example,
42+
* organizations/123/locations/global/cloudControlDeployments/deploymentIdentifier
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.util.List<java.lang.String> cloudControlDeploymentNames;
47+
48+
/**
49+
* Details of Frameworks associated with the finding
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<Framework> frameworks;
54+
55+
/**
56+
* CloudControl associated with the finding
57+
* @return value or {@code null} for none
58+
*/
59+
public CloudControl getCloudControl() {
60+
return cloudControl;
61+
}
62+
63+
/**
64+
* CloudControl associated with the finding
65+
* @param cloudControl cloudControl or {@code null} for none
66+
*/
67+
public ComplianceDetails setCloudControl(CloudControl cloudControl) {
68+
this.cloudControl = cloudControl;
69+
return this;
70+
}
71+
72+
/**
73+
* Cloud Control Deployments associated with the finding. For example,
74+
* organizations/123/locations/global/cloudControlDeployments/deploymentIdentifier
75+
* @return value or {@code null} for none
76+
*/
77+
public java.util.List<java.lang.String> getCloudControlDeploymentNames() {
78+
return cloudControlDeploymentNames;
79+
}
80+
81+
/**
82+
* Cloud Control Deployments associated with the finding. For example,
83+
* organizations/123/locations/global/cloudControlDeployments/deploymentIdentifier
84+
* @param cloudControlDeploymentNames cloudControlDeploymentNames or {@code null} for none
85+
*/
86+
public ComplianceDetails setCloudControlDeploymentNames(java.util.List<java.lang.String> cloudControlDeploymentNames) {
87+
this.cloudControlDeploymentNames = cloudControlDeploymentNames;
88+
return this;
89+
}
90+
91+
/**
92+
* Details of Frameworks associated with the finding
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<Framework> getFrameworks() {
96+
return frameworks;
97+
}
98+
99+
/**
100+
* Details of Frameworks associated with the finding
101+
* @param frameworks frameworks or {@code null} for none
102+
*/
103+
public ComplianceDetails setFrameworks(java.util.List<Framework> frameworks) {
104+
this.frameworks = frameworks;
105+
return this;
106+
}
107+
108+
@Override
109+
public ComplianceDetails set(String fieldName, Object value) {
110+
return (ComplianceDetails) super.set(fieldName, value);
111+
}
112+
113+
@Override
114+
public ComplianceDetails clone() {
115+
return (ComplianceDetails) super.clone();
116+
}
117+
118+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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.securitycenter.v1beta1.model;
18+
19+
/**
20+
* Compliance control associated with the finding.
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 Security Command Center 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 Control extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Name of the Control
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String controlName;
39+
40+
/**
41+
* Display name of the control. For example, AU-02.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String displayName;
46+
47+
/**
48+
* Name of the Control
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getControlName() {
52+
return controlName;
53+
}
54+
55+
/**
56+
* Name of the Control
57+
* @param controlName controlName or {@code null} for none
58+
*/
59+
public Control setControlName(java.lang.String controlName) {
60+
this.controlName = controlName;
61+
return this;
62+
}
63+
64+
/**
65+
* Display name of the control. For example, AU-02.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getDisplayName() {
69+
return displayName;
70+
}
71+
72+
/**
73+
* Display name of the control. For example, AU-02.
74+
* @param displayName displayName or {@code null} for none
75+
*/
76+
public Control setDisplayName(java.lang.String displayName) {
77+
this.displayName = displayName;
78+
return this;
79+
}
80+
81+
@Override
82+
public Control set(String fieldName, Object value) {
83+
return (Control) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public Control clone() {
88+
return (Control) super.clone();
89+
}
90+
91+
}

0 commit comments

Comments
 (0)