azure-native.attestation.AttestationProvider
Explore with Pulumi AI
Attestation service response message. Azure REST API version: 2021-06-01. Prior API version in Azure Native 1.x: 2020-10-01.
Other available API versions: 2021-06-01-preview.
Example Usage
AttestationProviders_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var attestationProvider = new AzureNative.Attestation.AttestationProvider("attestationProvider", new()
{
Location = "East US",
Properties = new AzureNative.Attestation.Inputs.AttestationServiceCreationSpecificParamsArgs
{
PublicNetworkAccess = AzureNative.Attestation.PublicNetworkAccessType.Enabled,
TpmAttestationAuthentication = AzureNative.Attestation.TpmAttestationAuthenticationType.Enabled,
},
ProviderName = "myattestationprovider",
ResourceGroupName = "MyResourceGroup",
Tags =
{
{ "Property1", "Value1" },
{ "Property2", "Value2" },
{ "Property3", "Value3" },
},
});
});
package main
import (
attestation "github.com/pulumi/pulumi-azure-native-sdk/attestation/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := attestation.NewAttestationProvider(ctx, "attestationProvider", &attestation.AttestationProviderArgs{
Location: pulumi.String("East US"),
Properties: &attestation.AttestationServiceCreationSpecificParamsArgs{
PublicNetworkAccess: pulumi.String(attestation.PublicNetworkAccessTypeEnabled),
TpmAttestationAuthentication: pulumi.String(attestation.TpmAttestationAuthenticationTypeEnabled),
},
ProviderName: pulumi.String("myattestationprovider"),
ResourceGroupName: pulumi.String("MyResourceGroup"),
Tags: pulumi.StringMap{
"Property1": pulumi.String("Value1"),
"Property2": pulumi.String("Value2"),
"Property3": pulumi.String("Value3"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.attestation.AttestationProvider;
import com.pulumi.azurenative.attestation.AttestationProviderArgs;
import com.pulumi.azurenative.attestation.inputs.AttestationServiceCreationSpecificParamsArgs;
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 attestationProvider = new AttestationProvider("attestationProvider", AttestationProviderArgs.builder()
.location("East US")
.properties(AttestationServiceCreationSpecificParamsArgs.builder()
.publicNetworkAccess("Enabled")
.tpmAttestationAuthentication("Enabled")
.build())
.providerName("myattestationprovider")
.resourceGroupName("MyResourceGroup")
.tags(Map.ofEntries(
Map.entry("Property1", "Value1"),
Map.entry("Property2", "Value2"),
Map.entry("Property3", "Value3")
))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
attestation_provider = azure_native.attestation.AttestationProvider("attestationProvider",
location="East US",
properties=azure_native.attestation.AttestationServiceCreationSpecificParamsArgs(
public_network_access=azure_native.attestation.PublicNetworkAccessType.ENABLED,
tpm_attestation_authentication=azure_native.attestation.TpmAttestationAuthenticationType.ENABLED,
),
provider_name="myattestationprovider",
resource_group_name="MyResourceGroup",
tags={
"Property1": "Value1",
"Property2": "Value2",
"Property3": "Value3",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const attestationProvider = new azure_native.attestation.AttestationProvider("attestationProvider", {
location: "East US",
properties: {
publicNetworkAccess: azure_native.attestation.PublicNetworkAccessType.Enabled,
tpmAttestationAuthentication: azure_native.attestation.TpmAttestationAuthenticationType.Enabled,
},
providerName: "myattestationprovider",
resourceGroupName: "MyResourceGroup",
tags: {
Property1: "Value1",
Property2: "Value2",
Property3: "Value3",
},
});
resources:
attestationProvider:
type: azure-native:attestation:AttestationProvider
properties:
location: East US
properties:
publicNetworkAccess: Enabled
tpmAttestationAuthentication: Enabled
providerName: myattestationprovider
resourceGroupName: MyResourceGroup
tags:
Property1: Value1
Property2: Value2
Property3: Value3
Create AttestationProvider Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AttestationProvider(name: string, args: AttestationProviderArgs, opts?: CustomResourceOptions);
@overload
def AttestationProvider(resource_name: str,
args: AttestationProviderArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AttestationProvider(resource_name: str,
opts: Optional[ResourceOptions] = None,
properties: Optional[AttestationServiceCreationSpecificParamsArgs] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
provider_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewAttestationProvider(ctx *Context, name string, args AttestationProviderArgs, opts ...ResourceOption) (*AttestationProvider, error)
public AttestationProvider(string name, AttestationProviderArgs args, CustomResourceOptions? opts = null)
public AttestationProvider(String name, AttestationProviderArgs args)
public AttestationProvider(String name, AttestationProviderArgs args, CustomResourceOptions options)
type: azure-native:attestation:AttestationProvider
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AttestationProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AttestationProviderArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AttestationProviderArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AttestationProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AttestationProviderArgs
- 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 attestationProviderResource = new AzureNative.Attestation.AttestationProvider("attestationProviderResource", new()
{
Properties = new AzureNative.Attestation.Inputs.AttestationServiceCreationSpecificParamsArgs
{
PolicySigningCertificates = new AzureNative.Attestation.Inputs.JSONWebKeySetArgs
{
Keys = new[]
{
new AzureNative.Attestation.Inputs.JSONWebKeyArgs
{
Kty = "string",
Dq = "string",
Kid = "string",
Dp = "string",
Alg = "string",
N = "string",
K = "string",
D = "string",
Crv = "string",
E = "string",
P = "string",
Q = "string",
Qi = "string",
Use = "string",
X = "string",
X5c = new[]
{
"string",
},
Y = "string",
},
},
},
PublicNetworkAccess = "string",
TpmAttestationAuthentication = "string",
},
ResourceGroupName = "string",
Location = "string",
ProviderName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := attestation.NewAttestationProvider(ctx, "attestationProviderResource", &attestation.AttestationProviderArgs{
Properties: &attestation.AttestationServiceCreationSpecificParamsArgs{
PolicySigningCertificates: &attestation.JSONWebKeySetArgs{
Keys: attestation.JSONWebKeyArray{
&attestation.JSONWebKeyArgs{
Kty: pulumi.String("string"),
Dq: pulumi.String("string"),
Kid: pulumi.String("string"),
Dp: pulumi.String("string"),
Alg: pulumi.String("string"),
N: pulumi.String("string"),
K: pulumi.String("string"),
D: pulumi.String("string"),
Crv: pulumi.String("string"),
E: pulumi.String("string"),
P: pulumi.String("string"),
Q: pulumi.String("string"),
Qi: pulumi.String("string"),
Use: pulumi.String("string"),
X: pulumi.String("string"),
X5c: pulumi.StringArray{
pulumi.String("string"),
},
Y: pulumi.String("string"),
},
},
},
PublicNetworkAccess: pulumi.String("string"),
TpmAttestationAuthentication: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
ProviderName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var attestationProviderResource = new AttestationProvider("attestationProviderResource", AttestationProviderArgs.builder()
.properties(AttestationServiceCreationSpecificParamsArgs.builder()
.policySigningCertificates(JSONWebKeySetArgs.builder()
.keys(JSONWebKeyArgs.builder()
.kty("string")
.dq("string")
.kid("string")
.dp("string")
.alg("string")
.n("string")
.k("string")
.d("string")
.crv("string")
.e("string")
.p("string")
.q("string")
.qi("string")
.use("string")
.x("string")
.x5c("string")
.y("string")
.build())
.build())
.publicNetworkAccess("string")
.tpmAttestationAuthentication("string")
.build())
.resourceGroupName("string")
.location("string")
.providerName("string")
.tags(Map.of("string", "string"))
.build());
attestation_provider_resource = azure_native.attestation.AttestationProvider("attestationProviderResource",
properties=azure_native.attestation.AttestationServiceCreationSpecificParamsArgs(
policy_signing_certificates=azure_native.attestation.JSONWebKeySetArgs(
keys=[azure_native.attestation.JSONWebKeyArgs(
kty="string",
dq="string",
kid="string",
dp="string",
alg="string",
n="string",
k="string",
d="string",
crv="string",
e="string",
p="string",
q="string",
qi="string",
use="string",
x="string",
x5c=["string"],
y="string",
)],
),
public_network_access="string",
tpm_attestation_authentication="string",
),
resource_group_name="string",
location="string",
provider_name="string",
tags={
"string": "string",
})
const attestationProviderResource = new azure_native.attestation.AttestationProvider("attestationProviderResource", {
properties: {
policySigningCertificates: {
keys: [{
kty: "string",
dq: "string",
kid: "string",
dp: "string",
alg: "string",
n: "string",
k: "string",
d: "string",
crv: "string",
e: "string",
p: "string",
q: "string",
qi: "string",
use: "string",
x: "string",
x5c: ["string"],
y: "string",
}],
},
publicNetworkAccess: "string",
tpmAttestationAuthentication: "string",
},
resourceGroupName: "string",
location: "string",
providerName: "string",
tags: {
string: "string",
},
});
type: azure-native:attestation:AttestationProvider
properties:
location: string
properties:
policySigningCertificates:
keys:
- alg: string
crv: string
d: string
dp: string
dq: string
e: string
k: string
kid: string
kty: string
"n": string
p: string
q: string
qi: string
use: string
x: string
x5c:
- string
"y": string
publicNetworkAccess: string
tpmAttestationAuthentication: string
providerName: string
resourceGroupName: string
tags:
string: string
AttestationProvider Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AttestationProvider resource accepts the following input properties:
- Properties
Pulumi.
Azure Native. Attestation. Inputs. Attestation Service Creation Specific Params - Properties of the attestation provider
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The supported Azure location where the attestation provider should be created.
- Provider
Name string - Name of the attestation provider.
- Dictionary<string, string>
- The tags that will be assigned to the attestation provider.
- Properties
Attestation
Service Creation Specific Params Args - Properties of the attestation provider
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The supported Azure location where the attestation provider should be created.
- Provider
Name string - Name of the attestation provider.
- map[string]string
- The tags that will be assigned to the attestation provider.
- properties
Attestation
Service Creation Specific Params - Properties of the attestation provider
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The supported Azure location where the attestation provider should be created.
- provider
Name String - Name of the attestation provider.
- Map<String,String>
- The tags that will be assigned to the attestation provider.
- properties
Attestation
Service Creation Specific Params - Properties of the attestation provider
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The supported Azure location where the attestation provider should be created.
- provider
Name string - Name of the attestation provider.
- {[key: string]: string}
- The tags that will be assigned to the attestation provider.
- properties
Attestation
Service Creation Specific Params Args - Properties of the attestation provider
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The supported Azure location where the attestation provider should be created.
- provider_
name str - Name of the attestation provider.
- Mapping[str, str]
- The tags that will be assigned to the attestation provider.
- properties Property Map
- Properties of the attestation provider
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The supported Azure location where the attestation provider should be created.
- provider
Name String - Name of the attestation provider.
- Map<String>
- The tags that will be assigned to the attestation provider.
Outputs
All input properties are implicitly available as output properties. Additionally, the AttestationProvider resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Private
Endpoint List<Pulumi.Connections Azure Native. Attestation. Outputs. Private Endpoint Connection Response> - List of private endpoint connections associated with the attestation provider.
- System
Data Pulumi.Azure Native. Attestation. Outputs. System Data Response - The system metadata relating to this resource
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Attest
Uri string - Gets the uri of attestation service
- Public
Network stringAccess - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- Status string
- Status of attestation service.
- Tpm
Attestation stringAuthentication - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
- Trust
Model string - Trust model for the attestation provider.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Private
Endpoint []PrivateConnections Endpoint Connection Response - List of private endpoint connections associated with the attestation provider.
- System
Data SystemData Response - The system metadata relating to this resource
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Attest
Uri string - Gets the uri of attestation service
- Public
Network stringAccess - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- Status string
- Status of attestation service.
- Tpm
Attestation stringAuthentication - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
- Trust
Model string - Trust model for the attestation provider.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - List of private endpoint connections associated with the attestation provider.
- system
Data SystemData Response - The system metadata relating to this resource
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- attest
Uri String - Gets the uri of attestation service
- public
Network StringAccess - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- status String
- Status of attestation service.
- tpm
Attestation StringAuthentication - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
- trust
Model String - Trust model for the attestation provider.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- private
Endpoint PrivateConnections Endpoint Connection Response[] - List of private endpoint connections associated with the attestation provider.
- system
Data SystemData Response - The system metadata relating to this resource
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- attest
Uri string - Gets the uri of attestation service
- public
Network stringAccess - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- status string
- Status of attestation service.
- tpm
Attestation stringAuthentication - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
- trust
Model string - Trust model for the attestation provider.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - List of private endpoint connections associated with the attestation provider.
- system_
data SystemData Response - The system metadata relating to this resource
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- attest_
uri str - Gets the uri of attestation service
- public_
network_ straccess - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- status str
- Status of attestation service.
- tpm_
attestation_ strauthentication - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
- trust_
model str - Trust model for the attestation provider.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- private
Endpoint List<Property Map>Connections - List of private endpoint connections associated with the attestation provider.
- system
Data Property Map - The system metadata relating to this resource
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- attest
Uri String - Gets the uri of attestation service
- public
Network StringAccess - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- status String
- Status of attestation service.
- tpm
Attestation StringAuthentication - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
- trust
Model String - Trust model for the attestation provider.
Supporting Types
AttestationServiceCreationSpecificParams, AttestationServiceCreationSpecificParamsArgs
- Policy
Signing Pulumi.Certificates Azure Native. Attestation. Inputs. JSONWeb Key Set - JSON Web Key Set defining a set of X.509 Certificates that will represent the parent certificate for the signing certificate used for policy operations
- Public
Network string | Pulumi.Access Azure Native. Attestation. Public Network Access Type - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- Tpm
Attestation string | Pulumi.Authentication Azure Native. Attestation. Tpm Attestation Authentication Type - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
- Policy
Signing JSONWebCertificates Key Set - JSON Web Key Set defining a set of X.509 Certificates that will represent the parent certificate for the signing certificate used for policy operations
- Public
Network string | PublicAccess Network Access Type - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- Tpm
Attestation string | TpmAuthentication Attestation Authentication Type - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
- policy
Signing JSONWebCertificates Key Set - JSON Web Key Set defining a set of X.509 Certificates that will represent the parent certificate for the signing certificate used for policy operations
- public
Network String | PublicAccess Network Access Type - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- tpm
Attestation String | TpmAuthentication Attestation Authentication Type - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
- policy
Signing JSONWebCertificates Key Set - JSON Web Key Set defining a set of X.509 Certificates that will represent the parent certificate for the signing certificate used for policy operations
- public
Network string | PublicAccess Network Access Type - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- tpm
Attestation string | TpmAuthentication Attestation Authentication Type - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
- policy_
signing_ JSONWebcertificates Key Set - JSON Web Key Set defining a set of X.509 Certificates that will represent the parent certificate for the signing certificate used for policy operations
- public_
network_ str | Publicaccess Network Access Type - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- tpm_
attestation_ str | Tpmauthentication Attestation Authentication Type - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
- policy
Signing Property MapCertificates - JSON Web Key Set defining a set of X.509 Certificates that will represent the parent certificate for the signing certificate used for policy operations
- public
Network String | "Enabled" | "Disabled"Access - Controls whether traffic from the public network is allowed to access the Attestation Provider APIs.
- tpm
Attestation String | "Enabled" | "Disabled"Authentication - The setting that controls whether authentication is enabled or disabled for TPM Attestation REST APIs.
JSONWebKey, JSONWebKeyArgs
- Kty string
- The "kty" (key type) parameter identifies the cryptographic algorithm family used with the key, such as "RSA" or "EC". "kty" values should either be registered in the IANA "JSON Web Key Types" registry established by [JWA] or be a value that contains a Collision- Resistant Name. The "kty" value is a case-sensitive string.
- Alg string
- The "alg" (algorithm) parameter identifies the algorithm intended for use with the key. The values used should either be registered in the IANA "JSON Web Signature and Encryption Algorithms" registry established by [JWA] or be a value that contains a Collision- Resistant Name.
- Crv string
- The "crv" (curve) parameter identifies the curve type
- D string
- RSA private exponent or ECC private key
- Dp string
- RSA Private Key Parameter
- Dq string
- RSA Private Key Parameter
- E string
- RSA public exponent, in Base64
- K string
- Symmetric key
- Kid string
- The "kid" (key ID) parameter is used to match a specific key. This is used, for instance, to choose among a set of keys within a JWK Set during key rollover. The structure of the "kid" value is unspecified. When "kid" values are used within a JWK Set, different keys within the JWK Set SHOULD use distinct "kid" values. (One example in which different keys might use the same "kid" value is if they have different "kty" (key type) values but are considered to be equivalent alternatives by the application using them.) The "kid" value is a case-sensitive string.
- N string
- RSA modulus, in Base64
- P string
- RSA secret prime
- Q string
- RSA secret prime, with p < q
- Qi string
- RSA Private Key Parameter
- Use string
- Use ("public key use") identifies the intended use of the public key. The "use" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Values are commonly "sig" (signature) or "enc" (encryption).
- X string
- X coordinate for the Elliptic Curve point
- X5c List<string>
- The "x5c" (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates [RFC5280]. The certificate chain is represented as a JSON array of certificate value strings. Each string in the array is a base64-encoded (Section 4 of [RFC4648] -- not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value. The PKIX certificate containing the key value MUST be the first certificate.
- Y string
- Y coordinate for the Elliptic Curve point
- Kty string
- The "kty" (key type) parameter identifies the cryptographic algorithm family used with the key, such as "RSA" or "EC". "kty" values should either be registered in the IANA "JSON Web Key Types" registry established by [JWA] or be a value that contains a Collision- Resistant Name. The "kty" value is a case-sensitive string.
- Alg string
- The "alg" (algorithm) parameter identifies the algorithm intended for use with the key. The values used should either be registered in the IANA "JSON Web Signature and Encryption Algorithms" registry established by [JWA] or be a value that contains a Collision- Resistant Name.
- Crv string
- The "crv" (curve) parameter identifies the curve type
- D string
- RSA private exponent or ECC private key
- Dp string
- RSA Private Key Parameter
- Dq string
- RSA Private Key Parameter
- E string
- RSA public exponent, in Base64
- K string
- Symmetric key
- Kid string
- The "kid" (key ID) parameter is used to match a specific key. This is used, for instance, to choose among a set of keys within a JWK Set during key rollover. The structure of the "kid" value is unspecified. When "kid" values are used within a JWK Set, different keys within the JWK Set SHOULD use distinct "kid" values. (One example in which different keys might use the same "kid" value is if they have different "kty" (key type) values but are considered to be equivalent alternatives by the application using them.) The "kid" value is a case-sensitive string.
- N string
- RSA modulus, in Base64
- P string
- RSA secret prime
- Q string
- RSA secret prime, with p < q
- Qi string
- RSA Private Key Parameter
- Use string
- Use ("public key use") identifies the intended use of the public key. The "use" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Values are commonly "sig" (signature) or "enc" (encryption).
- X string
- X coordinate for the Elliptic Curve point
- X5c []string
- The "x5c" (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates [RFC5280]. The certificate chain is represented as a JSON array of certificate value strings. Each string in the array is a base64-encoded (Section 4 of [RFC4648] -- not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value. The PKIX certificate containing the key value MUST be the first certificate.
- Y string
- Y coordinate for the Elliptic Curve point
- kty String
- The "kty" (key type) parameter identifies the cryptographic algorithm family used with the key, such as "RSA" or "EC". "kty" values should either be registered in the IANA "JSON Web Key Types" registry established by [JWA] or be a value that contains a Collision- Resistant Name. The "kty" value is a case-sensitive string.
- alg String
- The "alg" (algorithm) parameter identifies the algorithm intended for use with the key. The values used should either be registered in the IANA "JSON Web Signature and Encryption Algorithms" registry established by [JWA] or be a value that contains a Collision- Resistant Name.
- crv String
- The "crv" (curve) parameter identifies the curve type
- d String
- RSA private exponent or ECC private key
- dp String
- RSA Private Key Parameter
- dq String
- RSA Private Key Parameter
- e String
- RSA public exponent, in Base64
- k String
- Symmetric key
- kid String
- The "kid" (key ID) parameter is used to match a specific key. This is used, for instance, to choose among a set of keys within a JWK Set during key rollover. The structure of the "kid" value is unspecified. When "kid" values are used within a JWK Set, different keys within the JWK Set SHOULD use distinct "kid" values. (One example in which different keys might use the same "kid" value is if they have different "kty" (key type) values but are considered to be equivalent alternatives by the application using them.) The "kid" value is a case-sensitive string.
- n String
- RSA modulus, in Base64
- p String
- RSA secret prime
- q String
- RSA secret prime, with p < q
- qi String
- RSA Private Key Parameter
- use String
- Use ("public key use") identifies the intended use of the public key. The "use" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Values are commonly "sig" (signature) or "enc" (encryption).
- x String
- X coordinate for the Elliptic Curve point
- x5c List<String>
- The "x5c" (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates [RFC5280]. The certificate chain is represented as a JSON array of certificate value strings. Each string in the array is a base64-encoded (Section 4 of [RFC4648] -- not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value. The PKIX certificate containing the key value MUST be the first certificate.
- y String
- Y coordinate for the Elliptic Curve point
- kty string
- The "kty" (key type) parameter identifies the cryptographic algorithm family used with the key, such as "RSA" or "EC". "kty" values should either be registered in the IANA "JSON Web Key Types" registry established by [JWA] or be a value that contains a Collision- Resistant Name. The "kty" value is a case-sensitive string.
- alg string
- The "alg" (algorithm) parameter identifies the algorithm intended for use with the key. The values used should either be registered in the IANA "JSON Web Signature and Encryption Algorithms" registry established by [JWA] or be a value that contains a Collision- Resistant Name.
- crv string
- The "crv" (curve) parameter identifies the curve type
- d string
- RSA private exponent or ECC private key
- dp string
- RSA Private Key Parameter
- dq string
- RSA Private Key Parameter
- e string
- RSA public exponent, in Base64
- k string
- Symmetric key
- kid string
- The "kid" (key ID) parameter is used to match a specific key. This is used, for instance, to choose among a set of keys within a JWK Set during key rollover. The structure of the "kid" value is unspecified. When "kid" values are used within a JWK Set, different keys within the JWK Set SHOULD use distinct "kid" values. (One example in which different keys might use the same "kid" value is if they have different "kty" (key type) values but are considered to be equivalent alternatives by the application using them.) The "kid" value is a case-sensitive string.
- n string
- RSA modulus, in Base64
- p string
- RSA secret prime
- q string
- RSA secret prime, with p < q
- qi string
- RSA Private Key Parameter
- use string
- Use ("public key use") identifies the intended use of the public key. The "use" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Values are commonly "sig" (signature) or "enc" (encryption).
- x string
- X coordinate for the Elliptic Curve point
- x5c string[]
- The "x5c" (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates [RFC5280]. The certificate chain is represented as a JSON array of certificate value strings. Each string in the array is a base64-encoded (Section 4 of [RFC4648] -- not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value. The PKIX certificate containing the key value MUST be the first certificate.
- y string
- Y coordinate for the Elliptic Curve point
- kty str
- The "kty" (key type) parameter identifies the cryptographic algorithm family used with the key, such as "RSA" or "EC". "kty" values should either be registered in the IANA "JSON Web Key Types" registry established by [JWA] or be a value that contains a Collision- Resistant Name. The "kty" value is a case-sensitive string.
- alg str
- The "alg" (algorithm) parameter identifies the algorithm intended for use with the key. The values used should either be registered in the IANA "JSON Web Signature and Encryption Algorithms" registry established by [JWA] or be a value that contains a Collision- Resistant Name.
- crv str
- The "crv" (curve) parameter identifies the curve type
- d str
- RSA private exponent or ECC private key
- dp str
- RSA Private Key Parameter
- dq str
- RSA Private Key Parameter
- e str
- RSA public exponent, in Base64
- k str
- Symmetric key
- kid str
- The "kid" (key ID) parameter is used to match a specific key. This is used, for instance, to choose among a set of keys within a JWK Set during key rollover. The structure of the "kid" value is unspecified. When "kid" values are used within a JWK Set, different keys within the JWK Set SHOULD use distinct "kid" values. (One example in which different keys might use the same "kid" value is if they have different "kty" (key type) values but are considered to be equivalent alternatives by the application using them.) The "kid" value is a case-sensitive string.
- n str
- RSA modulus, in Base64
- p str
- RSA secret prime
- q str
- RSA secret prime, with p < q
- qi str
- RSA Private Key Parameter
- use str
- Use ("public key use") identifies the intended use of the public key. The "use" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Values are commonly "sig" (signature) or "enc" (encryption).
- x str
- X coordinate for the Elliptic Curve point
- x5c Sequence[str]
- The "x5c" (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates [RFC5280]. The certificate chain is represented as a JSON array of certificate value strings. Each string in the array is a base64-encoded (Section 4 of [RFC4648] -- not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value. The PKIX certificate containing the key value MUST be the first certificate.
- y str
- Y coordinate for the Elliptic Curve point
- kty String
- The "kty" (key type) parameter identifies the cryptographic algorithm family used with the key, such as "RSA" or "EC". "kty" values should either be registered in the IANA "JSON Web Key Types" registry established by [JWA] or be a value that contains a Collision- Resistant Name. The "kty" value is a case-sensitive string.
- alg String
- The "alg" (algorithm) parameter identifies the algorithm intended for use with the key. The values used should either be registered in the IANA "JSON Web Signature and Encryption Algorithms" registry established by [JWA] or be a value that contains a Collision- Resistant Name.
- crv String
- The "crv" (curve) parameter identifies the curve type
- d String
- RSA private exponent or ECC private key
- dp String
- RSA Private Key Parameter
- dq String
- RSA Private Key Parameter
- e String
- RSA public exponent, in Base64
- k String
- Symmetric key
- kid String
- The "kid" (key ID) parameter is used to match a specific key. This is used, for instance, to choose among a set of keys within a JWK Set during key rollover. The structure of the "kid" value is unspecified. When "kid" values are used within a JWK Set, different keys within the JWK Set SHOULD use distinct "kid" values. (One example in which different keys might use the same "kid" value is if they have different "kty" (key type) values but are considered to be equivalent alternatives by the application using them.) The "kid" value is a case-sensitive string.
- n String
- RSA modulus, in Base64
- p String
- RSA secret prime
- q String
- RSA secret prime, with p < q
- qi String
- RSA Private Key Parameter
- use String
- Use ("public key use") identifies the intended use of the public key. The "use" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Values are commonly "sig" (signature) or "enc" (encryption).
- x String
- X coordinate for the Elliptic Curve point
- x5c List<String>
- The "x5c" (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates [RFC5280]. The certificate chain is represented as a JSON array of certificate value strings. Each string in the array is a base64-encoded (Section 4 of [RFC4648] -- not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value. The PKIX certificate containing the key value MUST be the first certificate.
- y String
- Y coordinate for the Elliptic Curve point
JSONWebKeySet, JSONWebKeySetArgs
- Keys
List<Pulumi.
Azure Native. Attestation. Inputs. JSONWeb Key> - The value of the "keys" parameter is an array of JWK values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired.
- Keys
[]JSONWeb
Key - The value of the "keys" parameter is an array of JWK values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired.
- keys
List<JSONWeb
Key> - The value of the "keys" parameter is an array of JWK values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired.
- keys
JSONWeb
Key[] - The value of the "keys" parameter is an array of JWK values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired.
- keys
Sequence[JSONWeb
Key] - The value of the "keys" parameter is an array of JWK values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired.
- keys List<Property Map>
- The value of the "keys" parameter is an array of JWK values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired.
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name string
- The name of the resource
- Private
Link Pulumi.Service Connection State Azure Native. Attestation. Inputs. Private Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Private
Endpoint Pulumi.Azure Native. Attestation. Inputs. Private Endpoint Response - The resource of private end point.
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name string
- The name of the resource
- Private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name String
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name string
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State string - The provisioning state of the private endpoint connection resource.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id str
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name str
- The name of the resource
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning_
state str - The provisioning state of the private endpoint connection resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private_
endpoint PrivateEndpoint Response - The resource of private end point.
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name String
- The name of the resource
- private
Link Property MapService Connection State - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint Property Map - The resource of private end point.
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- The ARM identifier for Private Endpoint
- Id string
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
- id string
- The ARM identifier for Private Endpoint
- id str
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- Actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- description string
- The reason for approval/rejection of the connection.
- status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions_
required str - A message indicating if changes on the service provider require any updates on the consumer.
- description str
- The reason for approval/rejection of the connection.
- status str
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- actions
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
PublicNetworkAccessType, PublicNetworkAccessTypeArgs
- Enabled
- EnabledEnables public network connectivity to the Attestation Provider REST APIs.
- Disabled
- DisabledDisables public network connectivity to the Attestation Provider REST APIs.
- Public
Network Access Type Enabled - EnabledEnables public network connectivity to the Attestation Provider REST APIs.
- Public
Network Access Type Disabled - DisabledDisables public network connectivity to the Attestation Provider REST APIs.
- Enabled
- EnabledEnables public network connectivity to the Attestation Provider REST APIs.
- Disabled
- DisabledDisables public network connectivity to the Attestation Provider REST APIs.
- Enabled
- EnabledEnables public network connectivity to the Attestation Provider REST APIs.
- Disabled
- DisabledDisables public network connectivity to the Attestation Provider REST APIs.
- ENABLED
- EnabledEnables public network connectivity to the Attestation Provider REST APIs.
- DISABLED
- DisabledDisables public network connectivity to the Attestation Provider REST APIs.
- "Enabled"
- EnabledEnables public network connectivity to the Attestation Provider REST APIs.
- "Disabled"
- DisabledDisables public network connectivity to the Attestation Provider REST APIs.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TpmAttestationAuthenticationType, TpmAttestationAuthenticationTypeArgs
- Enabled
- EnabledEnables the requirement of authentication for TPM Attestation REST APIs.
- Disabled
- DisabledDisables the requirement of authentication for TPM Attestation REST APIs.
- Tpm
Attestation Authentication Type Enabled - EnabledEnables the requirement of authentication for TPM Attestation REST APIs.
- Tpm
Attestation Authentication Type Disabled - DisabledDisables the requirement of authentication for TPM Attestation REST APIs.
- Enabled
- EnabledEnables the requirement of authentication for TPM Attestation REST APIs.
- Disabled
- DisabledDisables the requirement of authentication for TPM Attestation REST APIs.
- Enabled
- EnabledEnables the requirement of authentication for TPM Attestation REST APIs.
- Disabled
- DisabledDisables the requirement of authentication for TPM Attestation REST APIs.
- ENABLED
- EnabledEnables the requirement of authentication for TPM Attestation REST APIs.
- DISABLED
- DisabledDisables the requirement of authentication for TPM Attestation REST APIs.
- "Enabled"
- EnabledEnables the requirement of authentication for TPM Attestation REST APIs.
- "Disabled"
- DisabledDisables the requirement of authentication for TPM Attestation REST APIs.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:attestation:AttestationProvider myattestationprovider /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Attestation/attestationProviders/{providerName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0