Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-securitycenter</artifactId>
<version>v1-rev20260615-2.0.0</version>
<version>v1-rev20260619-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-securitycenter:v1-rev20260615-2.0.0'
implementation 'com.google.apis:google-api-services-securitycenter:v1-rev20260619-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,12 @@ public final class Finding extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.util.List<IamBinding> iamBindings;

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudSecuritycenterV1IamDetails iamDetails;

/**
* The value may be {@code null}.
*/
Expand Down Expand Up @@ -1032,6 +1038,21 @@ public Finding setIamBindings(java.util.List<IamBinding> iamBindings) {
return this;
}

/**
* @return value or {@code null} for none
*/
public GoogleCloudSecuritycenterV1IamDetails getIamDetails() {
return iamDetails;
}

/**
* @param iamDetails iamDetails or {@code null} for none
*/
public Finding setIamDetails(GoogleCloudSecuritycenterV1IamDetails iamDetails) {
this.iamDetails = iamDetails;
return this;
}

/**
* @return value or {@code null} for none
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.securitycenter.v1.model;

/**
* Model definition for GoogleCloudSecuritycenterV1IamDetails.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Security Command Center API. For a detailed
* explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudSecuritycenterV1IamDetails extends com.google.api.client.json.GenericJson {

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<GoogleCloudSecuritycenterV1IamRolePermission> iamRolePermissions;

/**
* @return value or {@code null} for none
*/
public java.util.List<GoogleCloudSecuritycenterV1IamRolePermission> getIamRolePermissions() {
return iamRolePermissions;
}

/**
* @param iamRolePermissions iamRolePermissions or {@code null} for none
*/
public GoogleCloudSecuritycenterV1IamDetails setIamRolePermissions(java.util.List<GoogleCloudSecuritycenterV1IamRolePermission> iamRolePermissions) {
this.iamRolePermissions = iamRolePermissions;
return this;
}

@Override
public GoogleCloudSecuritycenterV1IamDetails set(String fieldName, Object value) {
return (GoogleCloudSecuritycenterV1IamDetails) super.set(fieldName, value);
}

@Override
public GoogleCloudSecuritycenterV1IamDetails clone() {
return (GoogleCloudSecuritycenterV1IamDetails) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.securitycenter.v1.model;

/**
* Model definition for GoogleCloudSecuritycenterV1IamRolePermission.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Security Command Center API. For a detailed
* explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudSecuritycenterV1IamRolePermission extends com.google.api.client.json.GenericJson {

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String name;

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String role;

/**
* @return value or {@code null} for none
*/
public java.lang.String getName() {
return name;
}

/**
* @param name name or {@code null} for none
*/
public GoogleCloudSecuritycenterV1IamRolePermission setName(java.lang.String name) {
this.name = name;
return this;
}

/**
* @return value or {@code null} for none
*/
public java.lang.String getRole() {
return role;
}

/**
* @param role role or {@code null} for none
*/
public GoogleCloudSecuritycenterV1IamRolePermission setRole(java.lang.String role) {
this.role = role;
return this;
}

@Override
public GoogleCloudSecuritycenterV1IamRolePermission set(String fieldName, Object value) {
return (GoogleCloudSecuritycenterV1IamRolePermission) super.set(fieldName, value);
}

@Override
public GoogleCloudSecuritycenterV1IamRolePermission clone() {
return (GoogleCloudSecuritycenterV1IamRolePermission) super.clone();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,12 @@ public final class GoogleCloudSecuritycenterV2Finding extends com.google.api.cli
@com.google.api.client.util.Key
private java.util.List<GoogleCloudSecuritycenterV2IamBinding> iamBindings;

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudSecuritycenterV2IamDetails iamDetails;

/**
* The value may be {@code null}.
*/
Expand Down Expand Up @@ -1059,6 +1065,21 @@ public GoogleCloudSecuritycenterV2Finding setIamBindings(java.util.List<GoogleCl
return this;
}

/**
* @return value or {@code null} for none
*/
public GoogleCloudSecuritycenterV2IamDetails getIamDetails() {
return iamDetails;
}

/**
* @param iamDetails iamDetails or {@code null} for none
*/
public GoogleCloudSecuritycenterV2Finding setIamDetails(GoogleCloudSecuritycenterV2IamDetails iamDetails) {
this.iamDetails = iamDetails;
return this;
}

/**
* @return value or {@code null} for none
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.securitycenter.v1.model;

/**
* Model definition for GoogleCloudSecuritycenterV2IamDetails.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Security Command Center API. For a detailed
* explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudSecuritycenterV2IamDetails extends com.google.api.client.json.GenericJson {

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<GoogleCloudSecuritycenterV2IamRolePermission> iamRolePermissions;

/**
* @return value or {@code null} for none
*/
public java.util.List<GoogleCloudSecuritycenterV2IamRolePermission> getIamRolePermissions() {
return iamRolePermissions;
}

/**
* @param iamRolePermissions iamRolePermissions or {@code null} for none
*/
public GoogleCloudSecuritycenterV2IamDetails setIamRolePermissions(java.util.List<GoogleCloudSecuritycenterV2IamRolePermission> iamRolePermissions) {
this.iamRolePermissions = iamRolePermissions;
return this;
}

@Override
public GoogleCloudSecuritycenterV2IamDetails set(String fieldName, Object value) {
return (GoogleCloudSecuritycenterV2IamDetails) super.set(fieldName, value);
}

@Override
public GoogleCloudSecuritycenterV2IamDetails clone() {
return (GoogleCloudSecuritycenterV2IamDetails) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.securitycenter.v1.model;

/**
* Model definition for GoogleCloudSecuritycenterV2IamRolePermission.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Security Command Center API. For a detailed
* explanation see:
* <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>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudSecuritycenterV2IamRolePermission extends com.google.api.client.json.GenericJson {

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String name;

/**
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String role;

/**
* @return value or {@code null} for none
*/
public java.lang.String getName() {
return name;
}

/**
* @param name name or {@code null} for none
*/
public GoogleCloudSecuritycenterV2IamRolePermission setName(java.lang.String name) {
this.name = name;
return this;
}

/**
* @return value or {@code null} for none
*/
public java.lang.String getRole() {
return role;
}

/**
* @param role role or {@code null} for none
*/
public GoogleCloudSecuritycenterV2IamRolePermission setRole(java.lang.String role) {
this.role = role;
return this;
}

@Override
public GoogleCloudSecuritycenterV2IamRolePermission set(String fieldName, Object value) {
return (GoogleCloudSecuritycenterV2IamRolePermission) super.set(fieldName, value);
}

@Override
public GoogleCloudSecuritycenterV2IamRolePermission clone() {
return (GoogleCloudSecuritycenterV2IamRolePermission) super.clone();
}

}
Loading
Loading