1. Packages
  2. Azure Native v2
  3. API Docs
  4. apimanagement
  5. NamedValue
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.apimanagement.NamedValue

Explore with Pulumi AI

NamedValue details. Azure REST API version: 2022-08-01. Prior API version in Azure Native 1.x: 2020-12-01.

Other available API versions: 2022-09-01-preview, 2023-03-01-preview, 2023-05-01-preview, 2023-09-01-preview, 2024-05-01, 2024-06-01-preview.

Example Usage

ApiManagementCreateNamedValue

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var namedValue = new AzureNative.ApiManagement.NamedValue("namedValue", new()
    {
        DisplayName = "prop3name",
        NamedValueId = "testprop2",
        ResourceGroupName = "rg1",
        Secret = false,
        ServiceName = "apimService1",
        Tags = new[]
        {
            "foo",
            "bar",
        },
        Value = "propValue",
    });

});
Copy
package main

import (
	apimanagement "github.com/pulumi/pulumi-azure-native-sdk/apimanagement/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := apimanagement.NewNamedValue(ctx, "namedValue", &apimanagement.NamedValueArgs{
			DisplayName:       pulumi.String("prop3name"),
			NamedValueId:      pulumi.String("testprop2"),
			ResourceGroupName: pulumi.String("rg1"),
			Secret:            pulumi.Bool(false),
			ServiceName:       pulumi.String("apimService1"),
			Tags: pulumi.StringArray{
				pulumi.String("foo"),
				pulumi.String("bar"),
			},
			Value: pulumi.String("propValue"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.apimanagement.NamedValue;
import com.pulumi.azurenative.apimanagement.NamedValueArgs;
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 namedValue = new NamedValue("namedValue", NamedValueArgs.builder()
            .displayName("prop3name")
            .namedValueId("testprop2")
            .resourceGroupName("rg1")
            .secret(false)
            .serviceName("apimService1")
            .tags(            
                "foo",
                "bar")
            .value("propValue")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const namedValue = new azure_native.apimanagement.NamedValue("namedValue", {
    displayName: "prop3name",
    namedValueId: "testprop2",
    resourceGroupName: "rg1",
    secret: false,
    serviceName: "apimService1",
    tags: [
        "foo",
        "bar",
    ],
    value: "propValue",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

named_value = azure_native.apimanagement.NamedValue("namedValue",
    display_name="prop3name",
    named_value_id="testprop2",
    resource_group_name="rg1",
    secret=False,
    service_name="apimService1",
    tags=[
        "foo",
        "bar",
    ],
    value="propValue")
Copy
resources:
  namedValue:
    type: azure-native:apimanagement:NamedValue
    properties:
      displayName: prop3name
      namedValueId: testprop2
      resourceGroupName: rg1
      secret: false
      serviceName: apimService1
      tags:
        - foo
        - bar
      value: propValue
Copy

ApiManagementCreateNamedValueWithKeyVault

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var namedValue = new AzureNative.ApiManagement.NamedValue("namedValue", new()
    {
        DisplayName = "prop6namekv",
        KeyVault = new AzureNative.ApiManagement.Inputs.KeyVaultContractCreatePropertiesArgs
        {
            IdentityClientId = "ceaa6b06-c00f-43ef-99ac-f53d1fe876a0",
            SecretIdentifier = "https://contoso.vault.azure.net/secrets/aadSecret",
        },
        NamedValueId = "testprop6",
        ResourceGroupName = "rg1",
        Secret = true,
        ServiceName = "apimService1",
        Tags = new[]
        {
            "foo",
            "bar",
        },
    });

});
Copy
package main

import (
	apimanagement "github.com/pulumi/pulumi-azure-native-sdk/apimanagement/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := apimanagement.NewNamedValue(ctx, "namedValue", &apimanagement.NamedValueArgs{
			DisplayName: pulumi.String("prop6namekv"),
			KeyVault: &apimanagement.KeyVaultContractCreatePropertiesArgs{
				IdentityClientId: pulumi.String("ceaa6b06-c00f-43ef-99ac-f53d1fe876a0"),
				SecretIdentifier: pulumi.String("https://contoso.vault.azure.net/secrets/aadSecret"),
			},
			NamedValueId:      pulumi.String("testprop6"),
			ResourceGroupName: pulumi.String("rg1"),
			Secret:            pulumi.Bool(true),
			ServiceName:       pulumi.String("apimService1"),
			Tags: pulumi.StringArray{
				pulumi.String("foo"),
				pulumi.String("bar"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.apimanagement.NamedValue;
import com.pulumi.azurenative.apimanagement.NamedValueArgs;
import com.pulumi.azurenative.apimanagement.inputs.KeyVaultContractCreatePropertiesArgs;
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 namedValue = new NamedValue("namedValue", NamedValueArgs.builder()
            .displayName("prop6namekv")
            .keyVault(KeyVaultContractCreatePropertiesArgs.builder()
                .identityClientId("ceaa6b06-c00f-43ef-99ac-f53d1fe876a0")
                .secretIdentifier("https://contoso.vault.azure.net/secrets/aadSecret")
                .build())
            .namedValueId("testprop6")
            .resourceGroupName("rg1")
            .secret(true)
            .serviceName("apimService1")
            .tags(            
                "foo",
                "bar")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const namedValue = new azure_native.apimanagement.NamedValue("namedValue", {
    displayName: "prop6namekv",
    keyVault: {
        identityClientId: "ceaa6b06-c00f-43ef-99ac-f53d1fe876a0",
        secretIdentifier: "https://contoso.vault.azure.net/secrets/aadSecret",
    },
    namedValueId: "testprop6",
    resourceGroupName: "rg1",
    secret: true,
    serviceName: "apimService1",
    tags: [
        "foo",
        "bar",
    ],
});
Copy
import pulumi
import pulumi_azure_native as azure_native

named_value = azure_native.apimanagement.NamedValue("namedValue",
    display_name="prop6namekv",
    key_vault={
        "identity_client_id": "ceaa6b06-c00f-43ef-99ac-f53d1fe876a0",
        "secret_identifier": "https://contoso.vault.azure.net/secrets/aadSecret",
    },
    named_value_id="testprop6",
    resource_group_name="rg1",
    secret=True,
    service_name="apimService1",
    tags=[
        "foo",
        "bar",
    ])
Copy
resources:
  namedValue:
    type: azure-native:apimanagement:NamedValue
    properties:
      displayName: prop6namekv
      keyVault:
        identityClientId: ceaa6b06-c00f-43ef-99ac-f53d1fe876a0
        secretIdentifier: https://contoso.vault.azure.net/secrets/aadSecret
      namedValueId: testprop6
      resourceGroupName: rg1
      secret: true
      serviceName: apimService1
      tags:
        - foo
        - bar
Copy

Create NamedValue Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new NamedValue(name: string, args: NamedValueArgs, opts?: CustomResourceOptions);
@overload
def NamedValue(resource_name: str,
               args: NamedValueArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def NamedValue(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               display_name: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               service_name: Optional[str] = None,
               key_vault: Optional[KeyVaultContractCreatePropertiesArgs] = None,
               named_value_id: Optional[str] = None,
               secret: Optional[bool] = None,
               tags: Optional[Sequence[str]] = None,
               value: Optional[str] = None)
func NewNamedValue(ctx *Context, name string, args NamedValueArgs, opts ...ResourceOption) (*NamedValue, error)
public NamedValue(string name, NamedValueArgs args, CustomResourceOptions? opts = null)
public NamedValue(String name, NamedValueArgs args)
public NamedValue(String name, NamedValueArgs args, CustomResourceOptions options)
type: azure-native:apimanagement:NamedValue
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. NamedValueArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. NamedValueArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. NamedValueArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. NamedValueArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. NamedValueArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var namedValueResource = new AzureNative.Apimanagement.NamedValue("namedValueResource", new()
{
    DisplayName = "string",
    ResourceGroupName = "string",
    ServiceName = "string",
    KeyVault = 
    {
        { "identityClientId", "string" },
        { "secretIdentifier", "string" },
    },
    NamedValueId = "string",
    Secret = false,
    Tags = new[]
    {
        "string",
    },
    Value = "string",
});
Copy
example, err := apimanagement.NewNamedValue(ctx, "namedValueResource", &apimanagement.NamedValueArgs{
	DisplayName:       "string",
	ResourceGroupName: "string",
	ServiceName:       "string",
	KeyVault: map[string]interface{}{
		"identityClientId": "string",
		"secretIdentifier": "string",
	},
	NamedValueId: "string",
	Secret:       false,
	Tags: []string{
		"string",
	},
	Value: "string",
})
Copy
var namedValueResource = new NamedValue("namedValueResource", NamedValueArgs.builder()
    .displayName("string")
    .resourceGroupName("string")
    .serviceName("string")
    .keyVault(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .namedValueId("string")
    .secret(false)
    .tags("string")
    .value("string")
    .build());
Copy
named_value_resource = azure_native.apimanagement.NamedValue("namedValueResource",
    display_name=string,
    resource_group_name=string,
    service_name=string,
    key_vault={
        identityClientId: string,
        secretIdentifier: string,
    },
    named_value_id=string,
    secret=False,
    tags=[string],
    value=string)
Copy
const namedValueResource = new azure_native.apimanagement.NamedValue("namedValueResource", {
    displayName: "string",
    resourceGroupName: "string",
    serviceName: "string",
    keyVault: {
        identityClientId: "string",
        secretIdentifier: "string",
    },
    namedValueId: "string",
    secret: false,
    tags: ["string"],
    value: "string",
});
Copy
type: azure-native:apimanagement:NamedValue
properties:
    displayName: string
    keyVault:
        identityClientId: string
        secretIdentifier: string
    namedValueId: string
    resourceGroupName: string
    secret: false
    serviceName: string
    tags:
        - string
    value: string
Copy

NamedValue Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The NamedValue resource accepts the following input properties:

DisplayName This property is required. string
Unique name of NamedValue. It may contain only letters, digits, period, dash, and underscore characters.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the API Management service.
KeyVault Pulumi.AzureNative.ApiManagement.Inputs.KeyVaultContractCreateProperties
KeyVault location details of the namedValue.
NamedValueId Changes to this property will trigger replacement. string
Identifier of the NamedValue.
Secret bool
Determines whether the value is a secret and should be encrypted or not. Default value is false.
Tags List<string>
Optional tags that when provided can be used to filter the NamedValue list.
Value string
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.
DisplayName This property is required. string
Unique name of NamedValue. It may contain only letters, digits, period, dash, and underscore characters.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the API Management service.
KeyVault KeyVaultContractCreatePropertiesArgs
KeyVault location details of the namedValue.
NamedValueId Changes to this property will trigger replacement. string
Identifier of the NamedValue.
Secret bool
Determines whether the value is a secret and should be encrypted or not. Default value is false.
Tags []string
Optional tags that when provided can be used to filter the NamedValue list.
Value string
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.
displayName This property is required. String
Unique name of NamedValue. It may contain only letters, digits, period, dash, and underscore characters.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the API Management service.
keyVault KeyVaultContractCreateProperties
KeyVault location details of the namedValue.
namedValueId Changes to this property will trigger replacement. String
Identifier of the NamedValue.
secret Boolean
Determines whether the value is a secret and should be encrypted or not. Default value is false.
tags List<String>
Optional tags that when provided can be used to filter the NamedValue list.
value String
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.
displayName This property is required. string
Unique name of NamedValue. It may contain only letters, digits, period, dash, and underscore characters.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
serviceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the API Management service.
keyVault KeyVaultContractCreateProperties
KeyVault location details of the namedValue.
namedValueId Changes to this property will trigger replacement. string
Identifier of the NamedValue.
secret boolean
Determines whether the value is a secret and should be encrypted or not. Default value is false.
tags string[]
Optional tags that when provided can be used to filter the NamedValue list.
value string
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.
display_name This property is required. str
Unique name of NamedValue. It may contain only letters, digits, period, dash, and underscore characters.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
service_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the API Management service.
key_vault KeyVaultContractCreatePropertiesArgs
KeyVault location details of the namedValue.
named_value_id Changes to this property will trigger replacement. str
Identifier of the NamedValue.
secret bool
Determines whether the value is a secret and should be encrypted or not. Default value is false.
tags Sequence[str]
Optional tags that when provided can be used to filter the NamedValue list.
value str
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.
displayName This property is required. String
Unique name of NamedValue. It may contain only letters, digits, period, dash, and underscore characters.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the API Management service.
keyVault Property Map
KeyVault location details of the namedValue.
namedValueId Changes to this property will trigger replacement. String
Identifier of the NamedValue.
secret Boolean
Determines whether the value is a secret and should be encrypted or not. Default value is false.
tags List<String>
Optional tags that when provided can be used to filter the NamedValue list.
value String
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.

Outputs

All input properties are implicitly available as output properties. Additionally, the NamedValue resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

KeyVaultContractCreateProperties
, KeyVaultContractCreatePropertiesArgs

IdentityClientId string
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
SecretIdentifier string
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi
IdentityClientId string
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
SecretIdentifier string
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi
identityClientId String
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
secretIdentifier String
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi
identityClientId string
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
secretIdentifier string
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi
identity_client_id str
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
secret_identifier str
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi
identityClientId String
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
secretIdentifier String
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi

KeyVaultContractPropertiesResponse
, KeyVaultContractPropertiesResponseArgs

IdentityClientId string
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
LastStatus Pulumi.AzureNative.ApiManagement.Inputs.KeyVaultLastAccessStatusContractPropertiesResponse
Last time sync and refresh status of secret from key vault.
SecretIdentifier string
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi
IdentityClientId string
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
LastStatus KeyVaultLastAccessStatusContractPropertiesResponse
Last time sync and refresh status of secret from key vault.
SecretIdentifier string
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi
identityClientId String
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
lastStatus KeyVaultLastAccessStatusContractPropertiesResponse
Last time sync and refresh status of secret from key vault.
secretIdentifier String
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi
identityClientId string
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
lastStatus KeyVaultLastAccessStatusContractPropertiesResponse
Last time sync and refresh status of secret from key vault.
secretIdentifier string
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi
identity_client_id str
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
last_status KeyVaultLastAccessStatusContractPropertiesResponse
Last time sync and refresh status of secret from key vault.
secret_identifier str
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi
identityClientId String
Null for SystemAssignedIdentity or Client Id for UserAssignedIdentity , which will be used to access key vault secret.
lastStatus Property Map
Last time sync and refresh status of secret from key vault.
secretIdentifier String
Key vault secret identifier for fetching secret. Providing a versioned secret will prevent auto-refresh. This requires API Management service to be configured with aka.ms/apimmsi

KeyVaultLastAccessStatusContractPropertiesResponse
, KeyVaultLastAccessStatusContractPropertiesResponseArgs

Code string
Last status code for sync and refresh of secret from key vault.
Message string
Details of the error else empty.
TimeStampUtc string
Last time secret was accessed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
Code string
Last status code for sync and refresh of secret from key vault.
Message string
Details of the error else empty.
TimeStampUtc string
Last time secret was accessed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
code String
Last status code for sync and refresh of secret from key vault.
message String
Details of the error else empty.
timeStampUtc String
Last time secret was accessed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
code string
Last status code for sync and refresh of secret from key vault.
message string
Details of the error else empty.
timeStampUtc string
Last time secret was accessed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
code str
Last status code for sync and refresh of secret from key vault.
message str
Details of the error else empty.
time_stamp_utc str
Last time secret was accessed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.
code String
Last status code for sync and refresh of secret from key vault.
message String
Details of the error else empty.
timeStampUtc String
Last time secret was accessed. The date conforms to the following format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:apimanagement:NamedValue testprop6 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/namedValues/{namedValueId} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0