azure-native.confluent.Organization
Explore with Pulumi AI
Organization resource.
Uses Azure REST API version 2024-07-01. In version 2.x of the Azure Native provider, it used API version 2021-12-01.
Other available API versions: 2021-12-01, 2023-08-22, 2024-02-13. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native confluent [ApiVersion]
. See the version guide for details.
Create Organization Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Organization(name: string, args: OrganizationArgs, opts?: CustomResourceOptions);
@overload
def Organization(resource_name: str,
args: OrganizationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Organization(resource_name: str,
opts: Optional[ResourceOptions] = None,
offer_detail: Optional[OfferDetailArgs] = None,
resource_group_name: Optional[str] = None,
user_detail: Optional[UserDetailArgs] = None,
link_organization: Optional[LinkOrganizationArgs] = None,
location: Optional[str] = None,
organization_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewOrganization(ctx *Context, name string, args OrganizationArgs, opts ...ResourceOption) (*Organization, error)
public Organization(string name, OrganizationArgs args, CustomResourceOptions? opts = null)
public Organization(String name, OrganizationArgs args)
public Organization(String name, OrganizationArgs args, CustomResourceOptions options)
type: azure-native:confluent:Organization
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. OrganizationArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. OrganizationArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. OrganizationArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. OrganizationArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. OrganizationArgs - 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 organizationResource = new AzureNative.Confluent.Organization("organizationResource", new()
{
OfferDetail = new AzureNative.Confluent.Inputs.OfferDetailArgs
{
Id = "string",
PlanId = "string",
PlanName = "string",
PublisherId = "string",
TermUnit = "string",
PrivateOfferId = "string",
PrivateOfferIds = new[]
{
"string",
},
Status = "string",
TermId = "string",
},
ResourceGroupName = "string",
UserDetail = new AzureNative.Confluent.Inputs.UserDetailArgs
{
EmailAddress = "string",
AadEmail = "string",
FirstName = "string",
LastName = "string",
UserPrincipalName = "string",
},
LinkOrganization = new AzureNative.Confluent.Inputs.LinkOrganizationArgs
{
Token = "string",
},
Location = "string",
OrganizationName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := confluent.NewOrganization(ctx, "organizationResource", &confluent.OrganizationArgs{
OfferDetail: &confluent.OfferDetailArgs{
Id: pulumi.String("string"),
PlanId: pulumi.String("string"),
PlanName: pulumi.String("string"),
PublisherId: pulumi.String("string"),
TermUnit: pulumi.String("string"),
PrivateOfferId: pulumi.String("string"),
PrivateOfferIds: pulumi.StringArray{
pulumi.String("string"),
},
Status: pulumi.String("string"),
TermId: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
UserDetail: &confluent.UserDetailArgs{
EmailAddress: pulumi.String("string"),
AadEmail: pulumi.String("string"),
FirstName: pulumi.String("string"),
LastName: pulumi.String("string"),
UserPrincipalName: pulumi.String("string"),
},
LinkOrganization: &confluent.LinkOrganizationArgs{
Token: pulumi.String("string"),
},
Location: pulumi.String("string"),
OrganizationName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var organizationResource = new Organization("organizationResource", OrganizationArgs.builder()
.offerDetail(OfferDetailArgs.builder()
.id("string")
.planId("string")
.planName("string")
.publisherId("string")
.termUnit("string")
.privateOfferId("string")
.privateOfferIds("string")
.status("string")
.termId("string")
.build())
.resourceGroupName("string")
.userDetail(UserDetailArgs.builder()
.emailAddress("string")
.aadEmail("string")
.firstName("string")
.lastName("string")
.userPrincipalName("string")
.build())
.linkOrganization(LinkOrganizationArgs.builder()
.token("string")
.build())
.location("string")
.organizationName("string")
.tags(Map.of("string", "string"))
.build());
organization_resource = azure_native.confluent.Organization("organizationResource",
offer_detail={
"id": "string",
"plan_id": "string",
"plan_name": "string",
"publisher_id": "string",
"term_unit": "string",
"private_offer_id": "string",
"private_offer_ids": ["string"],
"status": "string",
"term_id": "string",
},
resource_group_name="string",
user_detail={
"email_address": "string",
"aad_email": "string",
"first_name": "string",
"last_name": "string",
"user_principal_name": "string",
},
link_organization={
"token": "string",
},
location="string",
organization_name="string",
tags={
"string": "string",
})
const organizationResource = new azure_native.confluent.Organization("organizationResource", {
offerDetail: {
id: "string",
planId: "string",
planName: "string",
publisherId: "string",
termUnit: "string",
privateOfferId: "string",
privateOfferIds: ["string"],
status: "string",
termId: "string",
},
resourceGroupName: "string",
userDetail: {
emailAddress: "string",
aadEmail: "string",
firstName: "string",
lastName: "string",
userPrincipalName: "string",
},
linkOrganization: {
token: "string",
},
location: "string",
organizationName: "string",
tags: {
string: "string",
},
});
type: azure-native:confluent:Organization
properties:
linkOrganization:
token: string
location: string
offerDetail:
id: string
planId: string
planName: string
privateOfferId: string
privateOfferIds:
- string
publisherId: string
status: string
termId: string
termUnit: string
organizationName: string
resourceGroupName: string
tags:
string: string
userDetail:
aadEmail: string
emailAddress: string
firstName: string
lastName: string
userPrincipalName: string
Organization 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 Organization resource accepts the following input properties:
- Offer
Detail This property is required. Pulumi.Azure Native. Confluent. Inputs. Offer Detail - Confluent offer detail
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- Resource group name
- User
Detail This property is required. Pulumi.Azure Native. Confluent. Inputs. User Detail - Subscriber detail
- Link
Organization Pulumi.Azure Native. Confluent. Inputs. Link Organization - Link an existing Confluent organization
- Location string
- Location of Organization resource
- Organization
Name Changes to this property will trigger replacement.
- Organization resource name
- Dictionary<string, string>
- Organization resource tags
- Offer
Detail This property is required. OfferDetail Args - Confluent offer detail
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- Resource group name
- User
Detail This property is required. UserDetail Args - Subscriber detail
- Link
Organization LinkOrganization Args - Link an existing Confluent organization
- Location string
- Location of Organization resource
- Organization
Name Changes to this property will trigger replacement.
- Organization resource name
- map[string]string
- Organization resource tags
- offer
Detail This property is required. OfferDetail - Confluent offer detail
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Resource group name
- user
Detail This property is required. UserDetail - Subscriber detail
- link
Organization LinkOrganization - Link an existing Confluent organization
- location String
- Location of Organization resource
- organization
Name Changes to this property will trigger replacement.
- Organization resource name
- Map<String,String>
- Organization resource tags
- offer
Detail This property is required. OfferDetail - Confluent offer detail
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Resource group name
- user
Detail This property is required. UserDetail - Subscriber detail
- link
Organization LinkOrganization - Link an existing Confluent organization
- location string
- Location of Organization resource
- organization
Name Changes to this property will trigger replacement.
- Organization resource name
- {[key: string]: string}
- Organization resource tags
- offer_
detail This property is required. OfferDetail Args - Confluent offer detail
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- Resource group name
- user_
detail This property is required. UserDetail Args - Subscriber detail
- link_
organization LinkOrganization Args - Link an existing Confluent organization
- location str
- Location of Organization resource
- organization_
name Changes to this property will trigger replacement.
- Organization resource name
- Mapping[str, str]
- Organization resource tags
- offer
Detail This property is required. Property Map - Confluent offer detail
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Resource group name
- user
Detail This property is required. Property Map - Subscriber detail
- link
Organization Property Map - Link an existing Confluent organization
- location String
- Location of Organization resource
- organization
Name Changes to this property will trigger replacement.
- Organization resource name
- Map<String>
- Organization resource tags
Outputs
All input properties are implicitly available as output properties. Additionally, the Organization resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Created
Time string - The creation time of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- Organization
Id string - Id of the Confluent organization.
- Provisioning
State string - Provision states for confluent RP
- Sso
Url string - SSO url for the Confluent organization.
- System
Data Pulumi.Azure Native. Confluent. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource
- Type string
- The type of the resource.
- Azure
Api stringVersion - The Azure API version of the resource.
- Created
Time string - The creation time of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource.
- Organization
Id string - Id of the Confluent organization.
- Provisioning
State string - Provision states for confluent RP
- Sso
Url string - SSO url for the Confluent organization.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource
- Type string
- The type of the resource.
- azure
Api StringVersion - The Azure API version of the resource.
- created
Time String - The creation time of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- organization
Id String - Id of the Confluent organization.
- provisioning
State String - Provision states for confluent RP
- sso
Url String - SSO url for the Confluent organization.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource
- type String
- The type of the resource.
- azure
Api stringVersion - The Azure API version of the resource.
- created
Time string - The creation time of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource.
- organization
Id string - Id of the Confluent organization.
- provisioning
State string - Provision states for confluent RP
- sso
Url string - SSO url for the Confluent organization.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource
- type string
- The type of the resource.
- azure_
api_ strversion - The Azure API version of the resource.
- created_
time str - The creation time of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource.
- organization_
id str - Id of the Confluent organization.
- provisioning_
state str - Provision states for confluent RP
- sso_
url str - SSO url for the Confluent organization.
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource
- type str
- The type of the resource.
- azure
Api StringVersion - The Azure API version of the resource.
- created
Time String - The creation time of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource.
- organization
Id String - Id of the Confluent organization.
- provisioning
State String - Provision states for confluent RP
- sso
Url String - SSO url for the Confluent organization.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource
- type String
- The type of the resource.
Supporting Types
LinkOrganization, LinkOrganizationArgs
- Token
This property is required. string - User auth token
- Token
This property is required. string - User auth token
- token
This property is required. String - User auth token
- token
This property is required. string - User auth token
- token
This property is required. str - User auth token
- token
This property is required. String - User auth token
OfferDetail, OfferDetailArgs
- Id
This property is required. string - Offer Id
- Plan
Id This property is required. string - Offer Plan Id
- Plan
Name This property is required. string - Offer Plan Name
- Publisher
Id This property is required. string - Publisher Id
- Term
Unit This property is required. string - Offer Plan Term unit
- Private
Offer stringId - Private Offer Id
- Private
Offer List<string>Ids - Array of Private Offer Ids
- Status
string | Pulumi.
Azure Native. Confluent. Saa SOffer Status - SaaS Offer Status
- Term
Id string - Offer Plan Term Id
- Id
This property is required. string - Offer Id
- Plan
Id This property is required. string - Offer Plan Id
- Plan
Name This property is required. string - Offer Plan Name
- Publisher
Id This property is required. string - Publisher Id
- Term
Unit This property is required. string - Offer Plan Term unit
- Private
Offer stringId - Private Offer Id
- Private
Offer []stringIds - Array of Private Offer Ids
- Status
string | Saa
SOffer Status - SaaS Offer Status
- Term
Id string - Offer Plan Term Id
- id
This property is required. String - Offer Id
- plan
Id This property is required. String - Offer Plan Id
- plan
Name This property is required. String - Offer Plan Name
- publisher
Id This property is required. String - Publisher Id
- term
Unit This property is required. String - Offer Plan Term unit
- private
Offer StringId - Private Offer Id
- private
Offer List<String>Ids - Array of Private Offer Ids
- status
String | Saa
SOffer Status - SaaS Offer Status
- term
Id String - Offer Plan Term Id
- id
This property is required. string - Offer Id
- plan
Id This property is required. string - Offer Plan Id
- plan
Name This property is required. string - Offer Plan Name
- publisher
Id This property is required. string - Publisher Id
- term
Unit This property is required. string - Offer Plan Term unit
- private
Offer stringId - Private Offer Id
- private
Offer string[]Ids - Array of Private Offer Ids
- status
string | Saa
SOffer Status - SaaS Offer Status
- term
Id string - Offer Plan Term Id
- id
This property is required. str - Offer Id
- plan_
id This property is required. str - Offer Plan Id
- plan_
name This property is required. str - Offer Plan Name
- publisher_
id This property is required. str - Publisher Id
- term_
unit This property is required. str - Offer Plan Term unit
- private_
offer_ strid - Private Offer Id
- private_
offer_ Sequence[str]ids - Array of Private Offer Ids
- status
str | Saa
SOffer Status - SaaS Offer Status
- term_
id str - Offer Plan Term Id
- id
This property is required. String - Offer Id
- plan
Id This property is required. String - Offer Plan Id
- plan
Name This property is required. String - Offer Plan Name
- publisher
Id This property is required. String - Publisher Id
- term
Unit This property is required. String - Offer Plan Term unit
- private
Offer StringId - Private Offer Id
- private
Offer List<String>Ids - Array of Private Offer Ids
- status
String | "Started" | "Pending
Fulfillment Start" | "In Progress" | "Subscribed" | "Suspended" | "Reinstated" | "Succeeded" | "Failed" | "Unsubscribed" | "Updating" - SaaS Offer Status
- term
Id String - Offer Plan Term Id
OfferDetailResponse, OfferDetailResponseArgs
- Id
This property is required. string - Offer Id
- Plan
Id This property is required. string - Offer Plan Id
- Plan
Name This property is required. string - Offer Plan Name
- Publisher
Id This property is required. string - Publisher Id
- Term
Unit This property is required. string - Offer Plan Term unit
- Private
Offer stringId - Private Offer Id
- Private
Offer List<string>Ids - Array of Private Offer Ids
- Status string
- SaaS Offer Status
- Term
Id string - Offer Plan Term Id
- Id
This property is required. string - Offer Id
- Plan
Id This property is required. string - Offer Plan Id
- Plan
Name This property is required. string - Offer Plan Name
- Publisher
Id This property is required. string - Publisher Id
- Term
Unit This property is required. string - Offer Plan Term unit
- Private
Offer stringId - Private Offer Id
- Private
Offer []stringIds - Array of Private Offer Ids
- Status string
- SaaS Offer Status
- Term
Id string - Offer Plan Term Id
- id
This property is required. String - Offer Id
- plan
Id This property is required. String - Offer Plan Id
- plan
Name This property is required. String - Offer Plan Name
- publisher
Id This property is required. String - Publisher Id
- term
Unit This property is required. String - Offer Plan Term unit
- private
Offer StringId - Private Offer Id
- private
Offer List<String>Ids - Array of Private Offer Ids
- status String
- SaaS Offer Status
- term
Id String - Offer Plan Term Id
- id
This property is required. string - Offer Id
- plan
Id This property is required. string - Offer Plan Id
- plan
Name This property is required. string - Offer Plan Name
- publisher
Id This property is required. string - Publisher Id
- term
Unit This property is required. string - Offer Plan Term unit
- private
Offer stringId - Private Offer Id
- private
Offer string[]Ids - Array of Private Offer Ids
- status string
- SaaS Offer Status
- term
Id string - Offer Plan Term Id
- id
This property is required. str - Offer Id
- plan_
id This property is required. str - Offer Plan Id
- plan_
name This property is required. str - Offer Plan Name
- publisher_
id This property is required. str - Publisher Id
- term_
unit This property is required. str - Offer Plan Term unit
- private_
offer_ strid - Private Offer Id
- private_
offer_ Sequence[str]ids - Array of Private Offer Ids
- status str
- SaaS Offer Status
- term_
id str - Offer Plan Term Id
- id
This property is required. String - Offer Id
- plan
Id This property is required. String - Offer Plan Id
- plan
Name This property is required. String - Offer Plan Name
- publisher
Id This property is required. String - Publisher Id
- term
Unit This property is required. String - Offer Plan Term unit
- private
Offer StringId - Private Offer Id
- private
Offer List<String>Ids - Array of Private Offer Ids
- status String
- SaaS Offer Status
- term
Id String - Offer Plan Term Id
SaaSOfferStatus, SaaSOfferStatusArgs
- Started
- Started
- Pending
Fulfillment Start - PendingFulfillmentStart
- In
Progress - InProgress
- Subscribed
- Subscribed
- Suspended
- Suspended
- Reinstated
- Reinstated
- Succeeded
- Succeeded
- Failed
- Failed
- Unsubscribed
- Unsubscribed
- Updating
- Updating
- Saa
SOffer Status Started - Started
- Saa
SOffer Status Pending Fulfillment Start - PendingFulfillmentStart
- Saa
SOffer Status In Progress - InProgress
- Saa
SOffer Status Subscribed - Subscribed
- Saa
SOffer Status Suspended - Suspended
- Saa
SOffer Status Reinstated - Reinstated
- Saa
SOffer Status Succeeded - Succeeded
- Saa
SOffer Status Failed - Failed
- Saa
SOffer Status Unsubscribed - Unsubscribed
- Saa
SOffer Status Updating - Updating
- Started
- Started
- Pending
Fulfillment Start - PendingFulfillmentStart
- In
Progress - InProgress
- Subscribed
- Subscribed
- Suspended
- Suspended
- Reinstated
- Reinstated
- Succeeded
- Succeeded
- Failed
- Failed
- Unsubscribed
- Unsubscribed
- Updating
- Updating
- Started
- Started
- Pending
Fulfillment Start - PendingFulfillmentStart
- In
Progress - InProgress
- Subscribed
- Subscribed
- Suspended
- Suspended
- Reinstated
- Reinstated
- Succeeded
- Succeeded
- Failed
- Failed
- Unsubscribed
- Unsubscribed
- Updating
- Updating
- STARTED
- Started
- PENDING_FULFILLMENT_START
- PendingFulfillmentStart
- IN_PROGRESS
- InProgress
- SUBSCRIBED
- Subscribed
- SUSPENDED
- Suspended
- REINSTATED
- Reinstated
- SUCCEEDED
- Succeeded
- FAILED
- Failed
- UNSUBSCRIBED
- Unsubscribed
- UPDATING
- Updating
- "Started"
- Started
- "Pending
Fulfillment Start" - PendingFulfillmentStart
- "In
Progress" - InProgress
- "Subscribed"
- Subscribed
- "Suspended"
- Suspended
- "Reinstated"
- Reinstated
- "Succeeded"
- Succeeded
- "Failed"
- Failed
- "Unsubscribed"
- Unsubscribed
- "Updating"
- Updating
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.
UserDetail, UserDetailArgs
- Email
Address This property is required. string - Email address
- Aad
Email string - AAD email address
- First
Name string - First name
- Last
Name string - Last name
- User
Principal stringName - User principal name
- Email
Address This property is required. string - Email address
- Aad
Email string - AAD email address
- First
Name string - First name
- Last
Name string - Last name
- User
Principal stringName - User principal name
- email
Address This property is required. String - Email address
- aad
Email String - AAD email address
- first
Name String - First name
- last
Name String - Last name
- user
Principal StringName - User principal name
- email
Address This property is required. string - Email address
- aad
Email string - AAD email address
- first
Name string - First name
- last
Name string - Last name
- user
Principal stringName - User principal name
- email_
address This property is required. str - Email address
- aad_
email str - AAD email address
- first_
name str - First name
- last_
name str - Last name
- user_
principal_ strname - User principal name
- email
Address This property is required. String - Email address
- aad
Email String - AAD email address
- first
Name String - First name
- last
Name String - Last name
- user
Principal StringName - User principal name
UserDetailResponse, UserDetailResponseArgs
- Email
Address This property is required. string - Email address
- Aad
Email string - AAD email address
- First
Name string - First name
- Last
Name string - Last name
- User
Principal stringName - User principal name
- Email
Address This property is required. string - Email address
- Aad
Email string - AAD email address
- First
Name string - First name
- Last
Name string - Last name
- User
Principal stringName - User principal name
- email
Address This property is required. String - Email address
- aad
Email String - AAD email address
- first
Name String - First name
- last
Name String - Last name
- user
Principal StringName - User principal name
- email
Address This property is required. string - Email address
- aad
Email string - AAD email address
- first
Name string - First name
- last
Name string - Last name
- user
Principal stringName - User principal name
- email_
address This property is required. str - Email address
- aad_
email str - AAD email address
- first_
name str - First name
- last_
name str - Last name
- user_
principal_ strname - User principal name
- email
Address This property is required. String - Email address
- aad
Email String - AAD email address
- first
Name String - First name
- last
Name String - Last name
- user
Principal StringName - User principal name
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:confluent:Organization myOrganization /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Confluent/organizations/{organizationName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0