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, 2024-12-15-preview, 2025-02-15.
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 * 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,
});
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)
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={
        "certificate_subject": {
            "common_name": "string",
            "country_code": "string",
            "organization": "string",
            "organization_unit": "string",
        },
        "certificate_thumbprint": {
            "primary": "string",
            "secondary": "string",
        },
    },
    authentication_name="string",
    client_certificate_authentication={
        "allowed_thumbprints": ["string"],
        "validation_scheme": "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Client resource accepts the following input properties:
- NamespaceName string
- Name of the namespace.
- ResourceGroup 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.
- AuthenticationName string
- The name presented by the client for authentication. The default value is the name of the resource.
- ClientCertificate Pulumi.Authentication Azure Native. Event Grid. Inputs. Client Certificate Authentication 
- The client certificate authentication information.
- ClientName 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.
- NamespaceName string
- Name of the namespace.
- ResourceGroup 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
ClientAuthentication Args 
- Authentication information for the client.
- AuthenticationName string
- The name presented by the client for authentication. The default value is the name of the resource.
- ClientCertificate ClientAuthentication Certificate Authentication Args 
- The client certificate authentication information.
- ClientName string
- The client name.
- Description string
- Description for the Client resource.
- State
string | ClientState Enum 
- Indicates if the client is enabled or not. Default value is Enabled.
- namespaceName String
- Name of the namespace.
- resourceGroup 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
ClientAuthentication 
- Authentication information for the client.
- authenticationName String
- The name presented by the client for authentication. The default value is the name of the resource.
- clientCertificate ClientAuthentication Certificate Authentication 
- The client certificate authentication information.
- clientName String
- The client name.
- description String
- Description for the Client resource.
- state
String | ClientState 
- Indicates if the client is enabled or not. Default value is Enabled.
- namespaceName string
- Name of the namespace.
- resourceGroup 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
ClientAuthentication 
- Authentication information for the client.
- authenticationName string
- The name presented by the client for authentication. The default value is the name of the resource.
- clientCertificate ClientAuthentication Certificate Authentication 
- The client certificate authentication information.
- clientName string
- The client name.
- description string
- Description for the Client resource.
- state
string | ClientState 
- 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
ClientAuthentication 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 | ClientState 
- Indicates if the client is enabled or not. Default value is Enabled.
- namespaceName String
- Name of the namespace.
- resourceGroup 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.
- authenticationName String
- The name presented by the client for authentication. The default value is the name of the resource.
- clientCertificate Property MapAuthentication 
- The client certificate authentication information.
- clientName 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.
- ProvisioningState string
- Provisioning state of the Client resource.
- SystemData 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.
- ProvisioningState string
- Provisioning state of the Client resource.
- SystemData 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.
- provisioningState String
- Provisioning state of the Client resource.
- systemData 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.
- provisioningState string
- Provisioning state of the Client resource.
- systemData 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.
- provisioningState String
- Provisioning state of the Client resource.
- systemData Property Map
- The system metadata relating to the Client resource.
- type String
- Type of the resource.
Supporting Types
ClientAuthentication, ClientAuthenticationArgs    
- CertificateSubject Pulumi.Azure Native. Event Grid. Inputs. Client Certificate Subject Distinguished Name 
- The CA certificate subject name used for authentication.
- CertificateThumbprint Pulumi.Azure Native. Event Grid. Inputs. Client Certificate Thumbprint 
- The self signed certificate's thumbprints data used for authentication.
- CertificateSubject ClientCertificate Subject Distinguished Name 
- The CA certificate subject name used for authentication.
- CertificateThumbprint ClientCertificate Thumbprint 
- The self signed certificate's thumbprints data used for authentication.
- certificateSubject ClientCertificate Subject Distinguished Name 
- The CA certificate subject name used for authentication.
- certificateThumbprint ClientCertificate Thumbprint 
- The self signed certificate's thumbprints data used for authentication.
- certificateSubject ClientCertificate Subject Distinguished Name 
- The CA certificate subject name used for authentication.
- certificateThumbprint 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.
- certificateSubject Property Map
- The CA certificate subject name used for authentication.
- certificateThumbprint Property Map
- The self signed certificate's thumbprints data used for authentication.
ClientAuthenticationResponse, ClientAuthenticationResponseArgs      
- CertificateSubject Pulumi.Azure Native. Event Grid. Inputs. Client Certificate Subject Distinguished Name Response 
- The CA certificate subject name used for authentication.
- CertificateThumbprint Pulumi.Azure Native. Event Grid. Inputs. Client Certificate Thumbprint Response 
- The self signed certificate's thumbprints data used for authentication.
- CertificateSubject ClientCertificate Subject Distinguished Name Response 
- The CA certificate subject name used for authentication.
- CertificateThumbprint ClientCertificate Thumbprint Response 
- The self signed certificate's thumbprints data used for authentication.
- certificateSubject ClientCertificate Subject Distinguished Name Response 
- The CA certificate subject name used for authentication.
- certificateThumbprint ClientCertificate Thumbprint Response 
- The self signed certificate's thumbprints data used for authentication.
- certificateSubject ClientCertificate Subject Distinguished Name Response 
- The CA certificate subject name used for authentication.
- certificateThumbprint 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.
- certificateSubject Property Map
- The CA certificate subject name used for authentication.
- certificateThumbprint Property Map
- The self signed certificate's thumbprints data used for authentication.
ClientCertificateAuthentication, ClientCertificateAuthenticationArgs      
- AllowedThumbprints List<string>
- The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- ValidationScheme string | Pulumi.Azure Native. Event Grid. Client Certificate Validation Scheme 
- The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- AllowedThumbprints []string
- The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- ValidationScheme string | ClientCertificate Validation Scheme 
- The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowedThumbprints List<String>
- The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validationScheme String | ClientCertificate Validation Scheme 
- The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowedThumbprints string[]
- The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validationScheme 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.
- allowedThumbprints List<String>
- The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validationScheme 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        
- AllowedThumbprints List<string>
- The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- ValidationScheme string
- The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- AllowedThumbprints []string
- The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- ValidationScheme string
- The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowedThumbprints List<String>
- The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validationScheme String
- The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
- allowedThumbprints string[]
- The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validationScheme 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.
- allowedThumbprints List<String>
- The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'.
- validationScheme String
- The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName.
ClientCertificateSubjectDistinguishedName, ClientCertificateSubjectDistinguishedNameArgs          
- CommonName string
- The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- CountryCode 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.
- OrganizationUnit string
- The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- CommonName string
- The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- CountryCode 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.
- OrganizationUnit string
- The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- commonName String
- The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- countryCode 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.
- organizationUnit String
- The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- commonName string
- The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- countryCode 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.
- organizationUnit 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.
- commonName String
- The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- countryCode 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.
- organizationUnit String
- The organization unit field in the subject name. If present, the allowed limit is 32 characters.
ClientCertificateSubjectDistinguishedNameResponse, ClientCertificateSubjectDistinguishedNameResponseArgs            
- CommonName string
- The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- CountryCode 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.
- OrganizationUnit string
- The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- CommonName string
- The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- CountryCode 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.
- OrganizationUnit string
- The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- commonName String
- The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- countryCode 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.
- organizationUnit String
- The organization unit field in the subject name. If present, the allowed limit is 32 characters.
- commonName string
- The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- countryCode 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.
- organizationUnit 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.
- commonName String
- The common name field in the subject name. The allowed limit is 64 characters and it should be specified.
- countryCode 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.
- organizationUnit String
- The organization unit field in the subject name. If present, the allowed limit is 32 characters.
ClientCertificateThumbprint, ClientCertificateThumbprintArgs      
ClientCertificateThumbprintResponse, ClientCertificateThumbprintResponseArgs        
ClientCertificateValidationScheme, ClientCertificateValidationSchemeArgs        
- SubjectMatches Authentication Name 
- SubjectMatchesAuthenticationName
- DnsMatches Authentication Name 
- DnsMatchesAuthenticationName
- UriMatches Authentication Name 
- UriMatchesAuthenticationName
- IpMatches Authentication Name 
- IpMatchesAuthenticationName
- EmailMatches Authentication Name 
- EmailMatchesAuthenticationName
- ThumbprintMatch 
- ThumbprintMatch
- ClientCertificate Validation Scheme Subject Matches Authentication Name 
- SubjectMatchesAuthenticationName
- ClientCertificate Validation Scheme Dns Matches Authentication Name 
- DnsMatchesAuthenticationName
- ClientCertificate Validation Scheme Uri Matches Authentication Name 
- UriMatchesAuthenticationName
- ClientCertificate Validation Scheme Ip Matches Authentication Name 
- IpMatchesAuthenticationName
- ClientCertificate Validation Scheme Email Matches Authentication Name 
- EmailMatchesAuthenticationName
- ClientCertificate Validation Scheme Thumbprint Match 
- ThumbprintMatch
- SubjectMatches Authentication Name 
- SubjectMatchesAuthenticationName
- DnsMatches Authentication Name 
- DnsMatchesAuthenticationName
- UriMatches Authentication Name 
- UriMatchesAuthenticationName
- IpMatches Authentication Name 
- IpMatchesAuthenticationName
- EmailMatches Authentication Name 
- EmailMatchesAuthenticationName
- ThumbprintMatch 
- ThumbprintMatch
- SubjectMatches Authentication Name 
- SubjectMatchesAuthenticationName
- DnsMatches Authentication Name 
- DnsMatchesAuthenticationName
- UriMatches Authentication Name 
- UriMatchesAuthenticationName
- IpMatches Authentication Name 
- IpMatchesAuthenticationName
- EmailMatches Authentication Name 
- EmailMatchesAuthenticationName
- ThumbprintMatch 
- 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
- "SubjectMatches Authentication Name" 
- SubjectMatchesAuthenticationName
- "DnsMatches Authentication Name" 
- DnsMatchesAuthenticationName
- "UriMatches Authentication Name" 
- UriMatchesAuthenticationName
- "IpMatches Authentication Name" 
- IpMatchesAuthenticationName
- "EmailMatches Authentication Name" 
- EmailMatchesAuthenticationName
- "ThumbprintMatch" 
- ThumbprintMatch
ClientState, ClientStateArgs    
- Enabled
- Enabled
- Disabled
- Disabled
- ClientState Enabled 
- Enabled
- ClientState Disabled 
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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