com.azure.resourcemanager.mongocluster.models.Origin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-mongocluster Show documentation
Show all versions of azure-resourcemanager-mongocluster Show documentation
This package contains Microsoft Azure SDK for Mongo Cluster Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Microsoft Azure management API provides create, read, update, and delete functionality for Azure Cosmos DB for MongoDB vCore resources including clusters and firewall rules.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) TypeSpec Code Generator.
package com.azure.resourcemanager.mongocluster.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value
* is "user,system".
*/
public final class Origin extends ExpandableStringEnum {
/**
* Static value user for Origin.
*/
public static final Origin USER = fromString("user");
/**
* Static value system for Origin.
*/
public static final Origin SYSTEM = fromString("system");
/**
* Static value user,system for Origin.
*/
public static final Origin USER_SYSTEM = fromString("user,system");
/**
* Creates a new instance of Origin value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public Origin() {
}
/**
* Creates or finds a Origin from its string representation.
*
* @param name a name to look for.
* @return the corresponding Origin.
*/
public static Origin fromString(String name) {
return fromString(name, Origin.class);
}
/**
* Gets known Origin values.
*
* @return known Origin values.
*/
public static Collection values() {
return values(Origin.class);
}
}