azure-native.eventgrid.Client
Explore with Pulumi AI
The Client resource. Azure REST API version: 2023-06-01-preview.
Other available API versions: 2023-12-15-preview, 2024-06-01-preview.
Example Usage
Clients_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var client = new AzureNative.EventGrid.Client("client", new()
{
Attributes = new Dictionary<string, object?>
{
["deviceTypes"] = new[]
{
"Fan",
"Light",
"AC",
},
["floor"] = 3,
["room"] = "345",
},
ClientCertificateAuthentication = new AzureNative.EventGrid.Inputs.ClientCertificateAuthenticationArgs
{
ValidationScheme = AzureNative.EventGrid.ClientCertificateValidationScheme.SubjectMatchesAuthenticationName,
},
ClientName = "exampleClientName1",
Description = "This is a test client",
NamespaceName = "exampleNamespaceName1",
ResourceGroupName = "examplerg",
State = AzureNative.EventGrid.ClientState.Enabled,
});
});
package main
import (
eventgrid "github.com/pulumi/pulumi-azure-native-sdk/eventgrid/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := eventgrid.NewClient(ctx, "client", &eventgrid.ClientArgs{
Attributes: pulumi.Any(map[string]interface{}{
"deviceTypes": []string{
"Fan",
"Light",
"AC",
},
"floor": 3,
"room": "345",
}),
ClientCertificateAuthentication: &eventgrid.ClientCertificateAuthenticationArgs{
ValidationScheme: pulumi.String(eventgrid.ClientCertificateValidationSchemeSubjectMatchesAuthenticationName),
},
ClientName: pulumi.String("exampleClientName1"),
Description: pulumi.String("This is a test client"),
NamespaceName: pulumi.String("exampleNamespaceName1"),
ResourceGroupName: pulumi.String("examplerg"),
State: pulumi.String(eventgrid.ClientStateEnabled),
})
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.eventgrid.Client;
import com.pulumi.azurenative.eventgrid.ClientArgs;
import com.pulumi.azurenative.eventgrid.inputs.ClientCertificateAuthenticationArgs;
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 client = new Client("client", ClientArgs.builder()
.attributes(Map.ofEntries(
Map.entry("deviceTypes",
"Fan",
"Light",
"AC"),
Map.entry("floor", 3),
Map.entry("room", "345")
))
.clientCertificateAuthentication(ClientCertificateAuthenticationArgs.builder()
.validationScheme("SubjectMatchesAuthenticationName")
.build())
.clientName("exampleClientName1")
.description("This is a test client")
.namespaceName("exampleNamespaceName1")
.resourceGroupName("examplerg")
.state("Enabled")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
client = azure_native.eventgrid.Client("client",
attributes={
"deviceTypes": [
"Fan",
"Light",
"AC",
],
"floor": 3,
"room": "345",
},
client_certificate_authentication={
"validation_scheme": azure_native.eventgrid.ClientCertificateValidationScheme.SUBJECT_MATCHES_AUTHENTICATION_NAME,
},
client_name="exampleClientName1",
description="This is a test client",
namespace_name="exampleNamespaceName1",
resource_group_name="examplerg",
state=azure_native.eventgrid.ClientState.ENABLED)
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const client = new azure_native.eventgrid.Client("client", {
attributes: {
deviceTypes: [
"Fan",
"Light",
"AC",
],
floor: 3,
room: "345",
},
clientCertificateAuthentication: {
validationScheme: azure_native.eventgrid.ClientCertificateValidationScheme.SubjectMatchesAuthenticationName,
},
clientName: "exampleClientName1",
description: "This is a test client",
namespaceName: "exampleNamespaceName1",
resourceGroupName: "examplerg",
state: azure_native.eventgrid.ClientState.Enabled,
});
resources:
client:
type: azure-native:eventgrid:Client
properties:
attributes:
deviceTypes:
- Fan
- Light
- AC
floor: 3
room: '345'
clientCertificateAuthentication:
validationScheme: SubjectMatchesAuthenticationName
clientName: exampleClientName1
description: This is a test client
namespaceName: exampleNamespaceName1
resourceGroupName: examplerg
state: Enabled
Create Client Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Client(name: string, args: ClientArgs, opts?: CustomResourceOptions);
@overload
def Client(resource_name: str,
args: ClientArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Client(resource_name: str,
opts: Optional[ResourceOptions] = None,
namespace_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
attributes: Optional[Any] = None,
authentication: Optional[ClientAuthenticationArgs] = None,
authentication_name: Optional[str] = None,
client_certificate_authentication: Optional[ClientCertificateAuthenticationArgs] = None,
client_name: Optional[str] = None,
description: Optional[str] = None,
state: Optional[Union[str, ClientState]] = None)
func NewClient(ctx *Context, name string, args ClientArgs, opts ...ResourceOption) (*Client, error)
public Client(string name, ClientArgs args, CustomResourceOptions? opts = null)
public Client(String name, ClientArgs args)
public Client(String name, ClientArgs args, CustomResourceOptions options)
type: azure-native:eventgrid:Client
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 ClientArgs
- 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 ClientArgs
- 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 ClientArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClientArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClientArgs
- 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 clientResource = new AzureNative.EventGrid.Client("clientResource", new()
{
NamespaceName = "string",
ResourceGroupName = "string",
Attributes = "any",
Authentication = new AzureNative.EventGrid.Inputs.ClientAuthenticationArgs
{
CertificateSubject = new AzureNative.EventGrid.Inputs.ClientCertificateSubjectDistinguishedNameArgs
{
CommonName = "string",
CountryCode = "string",
Organization = "string",
OrganizationUnit = "string",
},
CertificateThumbprint = new AzureNative.EventGrid.Inputs.ClientCertificateThumbprintArgs
{
Primary = "string",
Secondary = "string",
},
},
AuthenticationName = "string",
ClientCertificateAuthentication = new AzureNative.EventGrid.Inputs.ClientCertificateAuthenticationArgs
{
AllowedThumbprints = new[]
{
"string",
},
ValidationScheme = "string",
},
ClientName = "string",
Description = "string",
State = "string",
});
example, err := eventgrid.NewClient(ctx, "clientResource", &eventgrid.ClientArgs{
NamespaceName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Attributes: pulumi.Any("any"),
Authentication: &eventgrid.ClientAuthenticationArgs{
CertificateSubject: &eventgrid.ClientCertificateSubjectDistinguishedNameArgs{
CommonName: pulumi.String("string"),
CountryCode: pulumi.String("string"),
Organization: pulumi.String("string"),
OrganizationUnit: pulumi.String("string"),
},
CertificateThumbprint: &eventgrid.ClientCertificateThumbprintArgs{
Primary: pulumi.String("string"),
Secondary: pulumi.String("string"),
},
},
AuthenticationName: pulumi.String("string"),
ClientCertificateAuthentication: &eventgrid.ClientCertificateAuthenticationArgs{
AllowedThumbprints: pulumi.StringArray{
pulumi.String("string"),
},
ValidationScheme: pulumi.String("string"),
},
ClientName: pulumi.String("string"),
Description: pulumi.String("string"),
State: pulumi.String("string"),
})
var clientResource = new Client("clientResource", ClientArgs.builder()
.namespaceName("string")
.resourceGroupName("string")
.attributes("any")
.authentication(ClientAuthenticationArgs.builder()
.certificateSubject(ClientCertificateSubjectDistinguishedNameArgs.builder()
.commonName("string")
.countryCode("string")
.organization("string")
.organizationUnit("string")
.build())
.certificateThumbprint(ClientCertificateThumbprintArgs.builder()
.primary("string")
.secondary("string")
.build())
.build())
.authenticationName("string")
.clientCertificateAuthentication(ClientCertificateAuthenticationArgs.builder()
.allowedThumbprints("string")
.validationScheme("string")
.build())
.clientName("string")
.description("string")
.state("string")
.build());
client_resource = azure_native.eventgrid.Client("clientResource",
namespace_name="string",
resource_group_name="string",
attributes="any",
authentication={
"certificateSubject": {
"commonName": "string",
"countryCode": "string",
"organization": "string",
"organizationUnit": "string",
},
"certificateThumbprint": {
"primary": "string",
"secondary": "string",
},
},
authentication_name="string",
client_certificate_authentication={
"allowedThumbprints": ["string"],
"validationScheme": "string",
},
client_name="string",
description="string",
state="string")
const clientResource = new azure_native.eventgrid.Client("clientResource", {
namespaceName: "string",
resourceGroupName: "string",
attributes: "any",
authentication: {
certificateSubject: {
commonName: "string",
countryCode: "string",
organization: "string",
organizationUnit: "string",
},
certificateThumbprint: {
primary: "string",
secondary: "string",
},
},
authenticationName: "string",
clientCertificateAuthentication: {
allowedThumbprints: ["string"],
validationScheme: "string",
},
clientName: "string",
description: "string",
state: "string",
});
type: azure-native:eventgrid:Client
properties:
attributes: any
authentication:
certificateSubject:
commonName: string
countryCode: string
organization: string
organizationUnit: string
certificateThumbprint:
primary: string
secondary: string
authenticationName: string
clientCertificateAuthentication:
allowedThumbprints:
- string
validationScheme: string
clientName: string
description: string
namespaceName: string
resourceGroupName: string
state: string
Client 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 Client resource accepts the following input properties:
- Namespace
Name string - Name of the namespace.
- Resource
Group stringName - The name of the resource group within the user's subscription.
- Attributes object
- Attributes for the client. Supported values are int, bool, string, string[]. Example: "attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] }
- Authentication
Pulumi.
Azure Native. Event Grid. Inputs. Client Authentication - Authentication information for the client.
- Authentication
Name string - The name presented by the client for authentication. The default value is the name of the resource.
- Client
Certificate Pulumi.Authentication Azure Native. Event Grid. Inputs. Client Certificate Authentication - The client certificate authentication information.
- Client
Name string - The client name.
- Description string
- Description for the Client resource.
- State
string | Pulumi.
Azure Native. Event Grid. Client State - Indicates if the client is enabled or not. Default value is Enabled.
- Namespace
Name string - Name of the namespace.
- Resource
Group stringName - The name of the resource group within the user's subscription.
- Attributes interface{}
- Attributes for the client. Supported values are int, bool, string, string[]. Example: "attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] }
- Authentication
Client
Authentication Args - Authentication information for the client.
- Authentication
Name string - The name presented by the client for authentication. The default value is the name of the resource.
- Client
Certificate ClientAuthentication Certificate Authentication Args - The client certificate authentication information.
- Client
Name string - The client name.
- Description string
- Description for the Client resource.
- State
string | Client
State Enum - Indicates if the client is enabled or not. Default value is Enabled.
- namespace
Name String - Name of the namespace.
- resource
Group StringName - The name of the resource group within the user's subscription.
- attributes Object
- Attributes for the client. Supported values are int, bool, string, string[]. Example: "attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] }
- authentication
Client
Authentication - Authentication information for the client.
- authentication
Name String - The name presented by the client for authentication. The default value is the name of the resource.
- client
Certificate ClientAuthentication Certificate Authentication - The client certificate authentication information.
- client
Name String - The client name.
- description String
- Description for the Client resource.
- state
String | Client
State - Indicates if the client is enabled or not. Default value is Enabled.
- namespace
Name string - Name of the namespace.
- resource
Group stringName - The name of the resource group within the user's subscription.
- attributes any
- Attributes for the client. Supported values are int, bool, string, string[]. Example: "attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] }
- authentication
Client
Authentication - Authentication information for the client.
- authentication
Name string - The name presented by the client for authentication. The default value is the name of the resource.
- client
Certificate ClientAuthentication Certificate Authentication - The client certificate authentication information.
- client
Name string - The client name.
- description string
- Description for the Client resource.
- state
string | Client
State - Indicates if the client is enabled or not. Default value is Enabled.
- namespace_
name str - Name of the namespace.
- resource_
group_ strname - The name of the resource group within the user's subscription.
- attributes Any
- Attributes for the client. Supported values are int, bool, string, string[]. Example: "attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] }
- authentication
Client
Authentication Args - Authentication information for the client.
- authentication_
name str - The name presented by the client for authentication. The default value is the name of the resource.
- client_
certificate_ Clientauthentication Certificate Authentication Args - The client certificate authentication information.
- client_
name str - The client name.
- description str
- Description for the Client resource.
- state
str | Client
State - Indicates if the client is enabled or not. Default value is Enabled.
- namespace
Name String - Name of the namespace.
- resource
Group StringName - The name of the resource group within the user's subscription.
- attributes Any
- Attributes for the client. Supported values are int, bool, string, string[]. Example: "attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] }
- authentication Property Map
- Authentication information for the client.
- authentication
Name String - The name presented by the client for authentication. The default value is the name of the resource.
- client
Certificate Property MapAuthentication - The client certificate authentication information.
- client
Name String - The client name.
- description String
- Description for the Client resource.
- state String | "Enabled" | "Disabled"
- Indicates if the client is enabled or not. Default value is Enabled.
Outputs
All input properties are implicitly available as output properties. Additionally, the Client resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the resource.
- Provisioning
State string - Provisioning state of the Client resource.
- System
Data Pulumi.Azure Native. Event Grid. Outputs. System Data Response - The system metadata relating to the Client resource.
- Type string
- Type of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the resource.
- Provisioning
State string - Provisioning state of the Client resource.
- System
Data SystemData Response - The system metadata relating to the Client resource.
- Type string
- Type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the resource.
- provisioning
State String - Provisioning state of the Client resource.
- system
Data SystemData Response - The system metadata relating to the Client resource.
- type String
- Type of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the resource.
- provisioning
State string - Provisioning state of the Client resource.
- system
Data SystemData Response - The system metadata relating to the Client resource.
- type string
- Type of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the resource.
- provisioning_
state str - Provisioning state of the Client resource.
- system_
data SystemData Response - The system metadata relating to the Client resource.
- type str
- Type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the resource.
- provisioning
State String - Provisioning state of the Client resource.
- system
Data Property Map - The system metadata relating to the Client resource.
- type String
- Type of the resource.
Supporting Types
ClientAuthentication, ClientAuthenticationArgs
- Certificate
Subject Pulumi.Azure Native. Event Grid. Inputs. Client Certificate Subject Distinguished Name - The CA certificate subject name used for authentication.
- Certificate
Thumbprint Pulumi.Azure Native. Event Grid. Inputs. Client Certificate Thumbprint - The self signed certificate's thumbprints data used for authentication.
- Certificate
Subject ClientCertificate Subject Distinguished Name - The CA certificate subject name used for authentication.
- Certificate
Thumbprint ClientCertificate Thumbprint - The self signed certificate's thumbprints data used for authentication.
- certificate
Subject ClientCertificate Subject Distinguished Name - The CA certificate subject name used for authentication.
- certificate
Thumbprint ClientCertificate Thumbprint - The self signed certificate's thumbprints data used for authentication.
- certificate
Subject ClientCertificate Subject Distinguished Name - The CA certificate subject name used for authentication.
- certificate
Thumbprint ClientCertificate Thumbprint - The self signed certificate's thumbprints data used for authentication.
- certificate_
subject ClientCertificate Subject Distinguished Name - The CA certificate subject name used for authentication.
- certificate_
thumbprint ClientCertificate Thumbprint - The self signed certificate's thumbprints data used for authentication.
- certificate
Subject Property Map - The CA certificate subject name used for authentication.
- certificate
Thumbprint Property Map - The self signed certificate's thumbprints data used for authentication.
ClientAuthenticationResponse, ClientAuthenticationResponseArgs
- Certificate
Subject Pulumi.Azure Native. Event Grid. Inputs. Client Certificate Subject Distinguished Name Response - The CA certificate subject name used for authentication.
- Certificate
Thumbprint Pulumi.Azure Native. Event Grid. Inputs. Client Certificate Thumbprint Response - The self signed certificate's thumbprints data used for authentication.
- Certificate
Subject ClientCertificate Subject Distinguished Name Response - The CA certificate subject name used for authentication.
- Certificate
Thumbprint ClientCertificate Thumbprint Response - The self signed certificate's thumbprints data used for authentication.
- certificate
Subject ClientCertificate Subject Distinguished Name Response - The CA certificate subject name used for authentication.
- certificate
Thumbprint ClientCertificate Thumbprint Response - The self signed certificate's thumbprints data used for authentication.
- certificate
Subject ClientCertificate Subject Distinguished Name Response - The CA certificate subject name used for authentication.
- certificate
Thumbprint ClientCertificate Thumbprint Response - The self signed certificate's thumbprints data used for authentication.
- certificate_
subject ClientCertificate Subject Distinguished Name Response - The CA certificate subject name used for authentication.
- certificate_
thumbprint ClientCertificate Thumbprint Response - The self signed certificate's thumbprints data used for authentication.
- certificate
Subject Property Map - The CA certificate subject name used for authentication.
- certificate
Thumbprint Property Map - The self signed certificate's thumbprints data used for authentication.
ClientCertificateAuthentication, ClientCertificateAuthenticationArgs
- Allowed
Thumbprints List<string> - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- Validation
Scheme string | Pulumi.Azure Native. Event Grid. Client Certificate Validation Scheme - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- Allowed
Thumbprints []string - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- Validation
Scheme string | ClientCertificate Validation Scheme - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowed
Thumbprints List<String> - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validation
Scheme String | ClientCertificate Validation Scheme - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowed
Thumbprints string[] - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validation
Scheme string | ClientCertificate Validation Scheme - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowed_
thumbprints Sequence[str] - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validation_
scheme str | ClientCertificate Validation Scheme - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowed
Thumbprints List<String> - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validation
Scheme String | "SubjectMatches Authentication Name" | "Dns Matches Authentication Name" | "Uri Matches Authentication Name" | "Ip Matches Authentication Name" | "Email Matches Authentication Name" | "Thumbprint Match" - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
ClientCertificateAuthenticationResponse, ClientCertificateAuthenticationResponseArgs
- Allowed
Thumbprints List<string> - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- Validation
Scheme string - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- Allowed
Thumbprints []string - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- Validation
Scheme string - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowed
Thumbprints List<String> - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validation
Scheme String - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowed
Thumbprints string[] - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validation
Scheme string - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowed_
thumbprints Sequence[str] - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validation_
scheme str - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowed
Thumbprints List<String> - The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validation
Scheme String - The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
ClientCertificateSubjectDistinguishedName, ClientCertificateSubjectDistinguishedNameArgs
- Common
Name string - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- Country
Code string - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- Organization string
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- Organization
Unit string - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- Common
Name string - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- Country
Code string - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- Organization string
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- Organization
Unit string - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- common
Name String - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- country
Code String - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- organization String
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- organization
Unit String - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- common
Name string - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- country
Code string - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- organization string
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- organization
Unit string - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- common_
name str - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- country_
code str - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- organization str
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- organization_
unit str - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- common
Name String - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- country
Code String - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- organization String
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- organization
Unit String - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
ClientCertificateSubjectDistinguishedNameResponse, ClientCertificateSubjectDistinguishedNameResponseArgs
- Common
Name string - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- Country
Code string - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- Organization string
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- Organization
Unit string - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- Common
Name string - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- Country
Code string - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- Organization string
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- Organization
Unit string - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- common
Name String - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- country
Code String - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- organization String
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- organization
Unit String - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- common
Name string - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- country
Code string - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- organization string
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- organization
Unit string - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- common_
name str - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- country_
code str - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- organization str
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- organization_
unit str - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- common
Name String - The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- country
Code String - The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.
- organization String
- The organization field in the subject name. If present, the allowed limit is 64 characters.
- organization
Unit String - The organization unit field in the subject name. If present, the allowed limit is 32 characters.
ClientCertificateThumbprint, ClientCertificateThumbprintArgs
ClientCertificateThumbprintResponse, ClientCertificateThumbprintResponseArgs
ClientCertificateValidationScheme, ClientCertificateValidationSchemeArgs
- Subject
Matches Authentication Name - SubjectMatchesAuthenticationName
- Dns
Matches Authentication Name - DnsMatchesAuthenticationName
- Uri
Matches Authentication Name - UriMatchesAuthenticationName
- Ip
Matches Authentication Name - IpMatchesAuthenticationName
- Email
Matches Authentication Name - EmailMatchesAuthenticationName
- Thumbprint
Match - ThumbprintMatch
- Client
Certificate Validation Scheme Subject Matches Authentication Name - SubjectMatchesAuthenticationName
- Client
Certificate Validation Scheme Dns Matches Authentication Name - DnsMatchesAuthenticationName
- Client
Certificate Validation Scheme Uri Matches Authentication Name - UriMatchesAuthenticationName
- Client
Certificate Validation Scheme Ip Matches Authentication Name - IpMatchesAuthenticationName
- Client
Certificate Validation Scheme Email Matches Authentication Name - EmailMatchesAuthenticationName
- Client
Certificate Validation Scheme Thumbprint Match - ThumbprintMatch
- Subject
Matches Authentication Name - SubjectMatchesAuthenticationName
- Dns
Matches Authentication Name - DnsMatchesAuthenticationName
- Uri
Matches Authentication Name - UriMatchesAuthenticationName
- Ip
Matches Authentication Name - IpMatchesAuthenticationName
- Email
Matches Authentication Name - EmailMatchesAuthenticationName
- Thumbprint
Match - ThumbprintMatch
- Subject
Matches Authentication Name - SubjectMatchesAuthenticationName
- Dns
Matches Authentication Name - DnsMatchesAuthenticationName
- Uri
Matches Authentication Name - UriMatchesAuthenticationName
- Ip
Matches Authentication Name - IpMatchesAuthenticationName
- Email
Matches Authentication Name - EmailMatchesAuthenticationName
- Thumbprint
Match - ThumbprintMatch
- SUBJECT_MATCHES_AUTHENTICATION_NAME
- SubjectMatchesAuthenticationName
- DNS_MATCHES_AUTHENTICATION_NAME
- DnsMatchesAuthenticationName
- URI_MATCHES_AUTHENTICATION_NAME
- UriMatchesAuthenticationName
- IP_MATCHES_AUTHENTICATION_NAME
- IpMatchesAuthenticationName
- EMAIL_MATCHES_AUTHENTICATION_NAME
- EmailMatchesAuthenticationName
- THUMBPRINT_MATCH
- ThumbprintMatch
- "Subject
Matches Authentication Name" - SubjectMatchesAuthenticationName
- "Dns
Matches Authentication Name" - DnsMatchesAuthenticationName
- "Uri
Matches Authentication Name" - UriMatchesAuthenticationName
- "Ip
Matches Authentication Name" - IpMatchesAuthenticationName
- "Email
Matches Authentication Name" - EmailMatchesAuthenticationName
- "Thumbprint
Match" - ThumbprintMatch
ClientState, ClientStateArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Client
State Enabled - Enabled
- Client
State Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:eventgrid:Client exampleClientName1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/namespaces/{namespaceName}/clients/{clientName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0