com.azure.resourcemanager.security.models.PermissionProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-security Show documentation
Show all versions of azure-resourcemanager-security Show documentation
This package contains Microsoft Azure SDK for Security Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.Security (Azure Security Center) resource provider. Package tag package-composite-v3.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.security.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* A permission detected in the cloud account.
*/
public final class PermissionProperty extends ExpandableStringEnum {
/**
* Static value AWS::AWSSecurityHubReadOnlyAccess for PermissionProperty.
*/
public static final PermissionProperty AWS_AWSSECURITY_HUB_READ_ONLY_ACCESS
= fromString("AWS::AWSSecurityHubReadOnlyAccess");
/**
* Static value AWS::SecurityAudit for PermissionProperty.
*/
public static final PermissionProperty AWS_SECURITY_AUDIT = fromString("AWS::SecurityAudit");
/**
* Static value AWS::AmazonSSMAutomationRole for PermissionProperty.
*/
public static final PermissionProperty AWS_AMAZON_SSMAUTOMATION_ROLE = fromString("AWS::AmazonSSMAutomationRole");
/**
* Static value GCP::Security Center Admin Viewer for PermissionProperty.
*/
public static final PermissionProperty GCP_SECURITY_CENTER_ADMIN_VIEWER
= fromString("GCP::Security Center Admin Viewer");
/**
* Creates a new instance of PermissionProperty value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public PermissionProperty() {
}
/**
* Creates or finds a PermissionProperty from its string representation.
*
* @param name a name to look for.
* @return the corresponding PermissionProperty.
*/
public static PermissionProperty fromString(String name) {
return fromString(name, PermissionProperty.class);
}
/**
* Gets known PermissionProperty values.
*
* @return known PermissionProperty values.
*/
public static Collection values() {
return values(PermissionProperty.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy