Class WorkspaceNamedValue
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.azurenative.apimanagement.WorkspaceNamedValue
-
public class WorkspaceNamedValue extends com.pulumi.resources.CustomResource
NamedValue details. Azure REST API version: 2022-09-01-preview. Other available API versions: 2023-03-01-preview, 2023-05-01-preview. ## Example Usage ### ApiManagementCreateWorkspaceNamedValue ```java package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.azurenative.apimanagement.WorkspaceNamedValue; import com.pulumi.azurenative.apimanagement.WorkspaceNamedValueArgs; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.io.File; import java.nio.file.Files; import java.nio.file.Paths; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { var workspaceNamedValue = new WorkspaceNamedValue("workspaceNamedValue", WorkspaceNamedValueArgs.builder() .displayName("prop3name") .namedValueId("testprop2") .resourceGroupName("rg1") .secret(false) .serviceName("apimService1") .tags( "foo", "bar") .value("propValue") .workspaceId("wks1") .build()); } } ``` ### ApiManagementCreateWorkspaceNamedValueWithKeyVault ```java package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.azurenative.apimanagement.WorkspaceNamedValue; import com.pulumi.azurenative.apimanagement.WorkspaceNamedValueArgs; import java.util.List; import java.util.ArrayList; import java.util.Map; import java.io.File; import java.nio.file.Files; import java.nio.file.Paths; public class App { public static void main(String[] args) { Pulumi.run(App::stack); } public static void stack(Context ctx) { var workspaceNamedValue = new WorkspaceNamedValue("workspaceNamedValue", WorkspaceNamedValueArgs.builder() .displayName("prop6namekv") .keyVault(Map.ofEntries( Map.entry("identityClientId", "ceaa6b06-c00f-43ef-99ac-f53d1fe876a0"), Map.entry("secretIdentifier", "https://contoso.vault.azure.net/secrets/aadSecret") )) .namedValueId("testprop6") .resourceGroupName("rg1") .secret(true) .serviceName("apimService1") .tags( "foo", "bar") .workspaceId("wks1") .build()); } } ``` ## Import An existing resource can be imported using its type token, name, and identifier, e.g. ```sh $ pulumi import azure-native:apimanagement:WorkspaceNamedValue testprop6 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/workspaces/{workspaceId}/namedValues/{namedValueId} ```
-
-
Constructor Summary
Constructors Constructor Description WorkspaceNamedValue(java.lang.String name)
WorkspaceNamedValue(java.lang.String name, WorkspaceNamedValueArgs args)
WorkspaceNamedValue(java.lang.String name, WorkspaceNamedValueArgs args, com.pulumi.resources.CustomResourceOptions options)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.pulumi.core.Output<java.lang.String>
displayName()
static WorkspaceNamedValue
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.com.pulumi.core.Output<java.util.Optional<KeyVaultContractPropertiesResponse>>
keyVault()
com.pulumi.core.Output<java.lang.String>
name()
com.pulumi.core.Output<java.util.Optional<java.lang.Boolean>>
secret()
com.pulumi.core.Output<java.util.Optional<java.util.List<java.lang.String>>>
tags()
com.pulumi.core.Output<java.lang.String>
type()
com.pulumi.core.Output<java.util.Optional<java.lang.String>>
value()
-
-
-
Constructor Detail
-
WorkspaceNamedValue
public WorkspaceNamedValue(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
WorkspaceNamedValue
public WorkspaceNamedValue(java.lang.String name, WorkspaceNamedValueArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
WorkspaceNamedValue
public WorkspaceNamedValue(java.lang.String name, WorkspaceNamedValueArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.options
- A bag of options that control this resource's behavior.
-
-
Method Detail
-
displayName
public com.pulumi.core.Output<java.lang.String> displayName()
- Returns:
- Unique name of NamedValue. It may contain only letters, digits, period, dash, and underscore characters.
-
keyVault
public com.pulumi.core.Output<java.util.Optional<KeyVaultContractPropertiesResponse>> keyVault()
- Returns:
- KeyVault location details of the namedValue.
-
name
public com.pulumi.core.Output<java.lang.String> name()
- Returns:
- The name of the resource
-
secret
public com.pulumi.core.Output<java.util.Optional<java.lang.Boolean>> secret()
- Returns:
- Determines whether the value is a secret and should be encrypted or not. Default value is false.
-
tags
public com.pulumi.core.Output<java.util.Optional<java.util.List<java.lang.String>>> tags()
- Returns:
- Optional tags that when provided can be used to filter the NamedValue list.
-
type
public com.pulumi.core.Output<java.lang.String> type()
- Returns:
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
-
value
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> value()
- Returns:
- Value of the NamedValue. Can contain policy expressions. It may not be empty or consist only of whitespace. This property will not be filled on 'GET' operations! Use '/listSecrets' POST request to get the value.
-
get
public static WorkspaceNamedValue get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.- Parameters:
name
- The _unique_ name of the resulting resource.id
- The _unique_ provider ID of the resource to lookup.options
- Optional settings to control the behavior of the CustomResource.
-
-