Skip to content

feat(modelarmor): Added floor settings snippets #10066

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
83 changes: 83 additions & 0 deletions modelarmor/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<!--
Copyright 2025 Google LLC

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.
-->

<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.modelarmor</groupId>
<artifactId>modelarmor-samples</artifactId>
<packaging>jar</packaging>

<!--
The parent pom defines common style checks and testing strategies for our samples.
Removing or replacing it should not affect the execution of the samples in anyway.
-->
<parent>
<groupId>com.google.cloud.samples</groupId>
<artifactId>shared-configuration</artifactId>
<version>1.2.0</version>
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.59.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-modelarmor</artifactId>
</dependency>

<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-dlp</artifactId>
</dependency>

<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java-util</artifactId>
</dependency>

<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>1.4.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
52 changes: 52 additions & 0 deletions modelarmor/src/main/java/modelarmor/GetFolderFloorSetting.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/*
* Copyright 2025 Google LLC
*
* 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.
*/

package modelarmor;

// [START modelarmor_get_folder_floor_settings]

import com.google.cloud.modelarmor.v1.FloorSetting;
import com.google.cloud.modelarmor.v1.FloorSettingName;
import com.google.cloud.modelarmor.v1.GetFloorSettingRequest;
import com.google.cloud.modelarmor.v1.ModelArmorClient;
import java.io.IOException;

public class GetFolderFloorSetting {

public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
String folderId = "your-folder-id";

getFolderFloorSetting(folderId);
}

public static FloorSetting getFolderFloorSetting(String folderId) throws IOException {

// Initialize client that will be used to send requests. This client only
// needs to be created once, and can be reused for multiple requests.
try (ModelArmorClient client = ModelArmorClient.create()) {
String name = FloorSettingName.of(folderId, "global").toString();

GetFloorSettingRequest request = GetFloorSettingRequest.newBuilder().setName(name).build();

FloorSetting floorSetting = client.getFloorSetting(request);
System.out.println("Fetched floor setting for folder: " + folderId);

return floorSetting;
}
}
}
// [END modelarmor_get_folder_floor_settings]
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
/*
* Copyright 2025 Google LLC
*
* 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.
*/

package modelarmor;

// [START modelarmor_get_organization_floor_settings]

import com.google.cloud.modelarmor.v1.FloorSetting;
import com.google.cloud.modelarmor.v1.FloorSettingName;
import com.google.cloud.modelarmor.v1.GetFloorSettingRequest;
import com.google.cloud.modelarmor.v1.ModelArmorClient;
import java.io.IOException;

public class GetOrganizationFloorSetting {

public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
String organizationId = "your-organization-id";

getOrganizationFloorSetting(organizationId);
}

public static FloorSetting getOrganizationFloorSetting(String organizationId) throws IOException {

// Initialize client that will be used to send requests. This client only
// needs to be created once, and can be reused for multiple requests.
try (ModelArmorClient client = ModelArmorClient.create()) {
String name = FloorSettingName.ofOrganizationLocationName(organizationId, "global")
.toString();

GetFloorSettingRequest request = GetFloorSettingRequest.newBuilder().setName(name).build();

FloorSetting floorSetting = client.getFloorSetting(request);
System.out.println("Fetched floor setting for organization: " + organizationId);

return floorSetting;
}
}
}
// [END modelarmor_get_organization_floor_settings]
52 changes: 52 additions & 0 deletions modelarmor/src/main/java/modelarmor/GetProjectFloorSetting.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/*
* Copyright 2025 Google LLC
*
* 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.
*/

package modelarmor;

// [START modelarmor_get_project_floor_settings]

import com.google.cloud.modelarmor.v1.FloorSetting;
import com.google.cloud.modelarmor.v1.FloorSettingName;
import com.google.cloud.modelarmor.v1.GetFloorSettingRequest;
import com.google.cloud.modelarmor.v1.ModelArmorClient;
import java.io.IOException;

public class GetProjectFloorSetting {

public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
String projectId = "your-project-id";

getProjectFloorSetting(projectId);
}

public static FloorSetting getProjectFloorSetting(String projectId) throws IOException {

// Initialize client that will be used to send requests. This client only
// needs to be created once, and can be reused for multiple requests.
try (ModelArmorClient client = ModelArmorClient.create()) {
String name = FloorSettingName.of(projectId, "global").toString();

GetFloorSettingRequest request = GetFloorSettingRequest.newBuilder().setName(name).build();

FloorSetting floorSetting = client.getFloorSetting(request);
System.out.println("Fetched floor setting for project: " + projectId);

return floorSetting;
}
}
}
// [END modelarmor_get_project_floor_settings]
101 changes: 101 additions & 0 deletions modelarmor/src/main/java/modelarmor/UpdateFolderFloorSetting.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
/*
* Copyright 2025 Google LLC
*
* 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.
*/

package modelarmor;

// [START modelarmor_update_folder_floor_settings]

import com.google.cloud.modelarmor.v1.DetectionConfidenceLevel;
import com.google.cloud.modelarmor.v1.FilterConfig;
import com.google.cloud.modelarmor.v1.FloorSetting;
import com.google.cloud.modelarmor.v1.FloorSettingName;
import com.google.cloud.modelarmor.v1.ModelArmorClient;
import com.google.cloud.modelarmor.v1.RaiFilterSettings;
import com.google.cloud.modelarmor.v1.RaiFilterSettings.RaiFilter;
import com.google.cloud.modelarmor.v1.RaiFilterType;
import com.google.cloud.modelarmor.v1.UpdateFloorSettingRequest;
import com.google.protobuf.FieldMask;
import java.io.IOException;
import java.util.List;

public class UpdateFolderFloorSetting {

public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
String folderId = "your-folder-id";

updateFolderFloorSetting(folderId);
}

public static FloorSetting updateFolderFloorSetting(String folderId)
throws IOException {

// Initialize client that will be used to send requests. This client only
// needs to be created once, and can be reused for multiple requests.
try (ModelArmorClient client = ModelArmorClient.create()) {
String name = FloorSettingName.ofFolderLocationName(folderId, "global").toString();

// For more details on filters, please refer to the following doc:
// https://cloud.google.com/security-command-center/docs/key-concepts-model-armor#ma-filters
RaiFilterSettings raiFilterSettings =
RaiFilterSettings.newBuilder()
.addAllRaiFilters(
List.of(
RaiFilter.newBuilder()
.setFilterType(RaiFilterType.DANGEROUS)
.setConfidenceLevel(DetectionConfidenceLevel.HIGH)
.build(),
RaiFilter.newBuilder()
.setFilterType(RaiFilterType.HATE_SPEECH)
.setConfidenceLevel(DetectionConfidenceLevel.MEDIUM_AND_ABOVE)
.build(),
RaiFilter.newBuilder()
.setFilterType(RaiFilterType.HARASSMENT)
.setConfidenceLevel(DetectionConfidenceLevel.HIGH)
.build(),
RaiFilter.newBuilder()
.setFilterType(RaiFilterType.SEXUALLY_EXPLICIT)
.setConfidenceLevel(DetectionConfidenceLevel.MEDIUM_AND_ABOVE)
.build()))
.build();

FilterConfig modelArmorFilter = FilterConfig.newBuilder()
.setRaiSettings(raiFilterSettings)
.build();

// Create a field mask to specify which fields to update.
// Ref: https://protobuf.dev/reference/protobuf/google.protobuf/#field-mask
FieldMask updateMask = FieldMask.newBuilder().addPaths("filter_config.rai_settings").build();

FloorSetting floorSetting = FloorSetting.newBuilder()
.setName(name)
.setFilterConfig(modelArmorFilter)
.setEnableFloorSettingEnforcement(true)
.build();

UpdateFloorSettingRequest request = UpdateFloorSettingRequest.newBuilder()
.setFloorSetting(floorSetting)
.setUpdateMask(updateMask)
.build();

FloorSetting updatedFloorSetting = client.updateFloorSetting(request);
System.out.println("Updated floor setting for folder: " + folderId);

return updatedFloorSetting;
}
}
}
// [END modelarmor_update_folder_floor_settings]
Loading