Share via


Pinecone.VectorDb organizations

Bicep resource definition

The organizations resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Pinecone.VectorDb/organizations resource, add the following Bicep to your template.

resource symbolicname 'Pinecone.VectorDb/organizations@2024-10-22-preview' = {
  identity: {
    type: 'string'
    userAssignedIdentities: {
      {customized property}: {}
    }
  }
  location: 'string'
  name: 'string'
  properties: {
    marketplace: {
      offerDetails: {
        offerId: 'string'
        planId: 'string'
        planName: 'string'
        publisherId: 'string'
        termId: 'string'
        termUnit: 'string'
      }
      subscriptionId: 'string'
    }
    partnerProperties: {
      displayName: 'string'
    }
    singleSignOnProperties: {
      aadDomains: [
        'string'
      ]
      enterpriseAppId: 'string'
      state: 'string'
      type: 'string'
      url: 'string'
    }
    user: {
      emailAddress: 'string'
      firstName: 'string'
      lastName: 'string'
      phoneNumber: 'string'
      upn: 'string'
    }
  }
  tags: {
    {customized property}: 'string'
  }
}

Property Values

Pinecone.VectorDb/organizations

Name Description Value
identity The managed service identities assigned to this resource. ManagedServiceIdentity
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Min length = 1
Max length = 50
Pattern = ^[a-zA-Z0-9][a-zA-Z0-9_\-.: ]*$ (required)
properties The resource-specific properties for this resource. OrganizationProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates

LiftrBaseMarketplaceDetails

Name Description Value
offerDetails Offer details for the marketplace that is selected by the user LiftrBaseOfferDetails (required)
subscriptionId Azure subscription id for the the marketplace offer is purchased from string

LiftrBaseOfferDetails

Name Description Value
offerId Offer Id for the marketplace offer string (required)
planId Plan Id for the marketplace offer string (required)
planName Plan Name for the marketplace offer string
publisherId Publisher Id for the marketplace offer string (required)
termId Plan Display Name for the marketplace offer string
termUnit Plan Display Name for the marketplace offer string

LiftrBaseSingleSignOnPropertiesV2

Name Description Value
aadDomains List of AAD domains fetched from Microsoft Graph for user. string[]
enterpriseAppId AAD enterprise application Id used to setup SSO string
state State of the Single Sign On for the resource 'Disable'
'Enable'
'Initial'
type Type of Single Sign-On mechanism being used 'OpenId'
'Saml' (required)
url URL for SSO to be used by the partner to redirect the user to their system string

LiftrBaseUserDetails

Name Description Value
emailAddress Email address of the user string

Constraints:
Pattern = ^[A-Za-z0-9._%+-]+@(?:[A-Za-z0-9-]+\.)+[A-Za-z]{2,}$
firstName First name of the user string
lastName Last name of the user string
phoneNumber User's phone number string
upn User's principal name string

ManagedServiceIdentity

Name Description Value
type Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed). 'None'
'SystemAssigned'
'SystemAssigned,UserAssigned'
'UserAssigned' (required)
userAssignedIdentities The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests. UserAssignedIdentities

OrganizationProperties

Name Description Value
marketplace Marketplace details of the resource. LiftrBaseMarketplaceDetails (required)
partnerProperties partner properties PartnerProperties
singleSignOnProperties Single sign-on properties LiftrBaseSingleSignOnPropertiesV2
user Details of the user. LiftrBaseUserDetails (required)

PartnerProperties

Name Description Value
displayName Pinecone Organization Name string

Constraints:
Min length = 1
Max length = 512
Pattern = ^[^\0]+$ (required)

TrackedResourceTags

Name Description Value

UserAssignedIdentities

Name Description Value

UserAssignedIdentity

Name Description Value

ARM template resource definition

The organizations resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Pinecone.VectorDb/organizations resource, add the following JSON to your template.

{
  "type": "Pinecone.VectorDb/organizations",
  "apiVersion": "2024-10-22-preview",
  "name": "string",
  "identity": {
    "type": "string",
    "userAssignedIdentities": {
      "{customized property}": {
      }
    }
  },
  "location": "string",
  "properties": {
    "marketplace": {
      "offerDetails": {
        "offerId": "string",
        "planId": "string",
        "planName": "string",
        "publisherId": "string",
        "termId": "string",
        "termUnit": "string"
      },
      "subscriptionId": "string"
    },
    "partnerProperties": {
      "displayName": "string"
    },
    "singleSignOnProperties": {
      "aadDomains": [ "string" ],
      "enterpriseAppId": "string",
      "state": "string",
      "type": "string",
      "url": "string"
    },
    "user": {
      "emailAddress": "string",
      "firstName": "string",
      "lastName": "string",
      "phoneNumber": "string",
      "upn": "string"
    }
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Pinecone.VectorDb/organizations

Name Description Value
apiVersion The api version '2024-10-22-preview'
identity The managed service identities assigned to this resource. ManagedServiceIdentity
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Min length = 1
Max length = 50
Pattern = ^[a-zA-Z0-9][a-zA-Z0-9_\-.: ]*$ (required)
properties The resource-specific properties for this resource. OrganizationProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Pinecone.VectorDb/organizations'

LiftrBaseMarketplaceDetails

Name Description Value
offerDetails Offer details for the marketplace that is selected by the user LiftrBaseOfferDetails (required)
subscriptionId Azure subscription id for the the marketplace offer is purchased from string

LiftrBaseOfferDetails

Name Description Value
offerId Offer Id for the marketplace offer string (required)
planId Plan Id for the marketplace offer string (required)
planName Plan Name for the marketplace offer string
publisherId Publisher Id for the marketplace offer string (required)
termId Plan Display Name for the marketplace offer string
termUnit Plan Display Name for the marketplace offer string

LiftrBaseSingleSignOnPropertiesV2

Name Description Value
aadDomains List of AAD domains fetched from Microsoft Graph for user. string[]
enterpriseAppId AAD enterprise application Id used to setup SSO string
state State of the Single Sign On for the resource 'Disable'
'Enable'
'Initial'
type Type of Single Sign-On mechanism being used 'OpenId'
'Saml' (required)
url URL for SSO to be used by the partner to redirect the user to their system string

LiftrBaseUserDetails

Name Description Value
emailAddress Email address of the user string

Constraints:
Pattern = ^[A-Za-z0-9._%+-]+@(?:[A-Za-z0-9-]+\.)+[A-Za-z]{2,}$
firstName First name of the user string
lastName Last name of the user string
phoneNumber User's phone number string
upn User's principal name string

ManagedServiceIdentity

Name Description Value
type Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed). 'None'
'SystemAssigned'
'SystemAssigned,UserAssigned'
'UserAssigned' (required)
userAssignedIdentities The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests. UserAssignedIdentities

OrganizationProperties

Name Description Value
marketplace Marketplace details of the resource. LiftrBaseMarketplaceDetails (required)
partnerProperties partner properties PartnerProperties
singleSignOnProperties Single sign-on properties LiftrBaseSingleSignOnPropertiesV2
user Details of the user. LiftrBaseUserDetails (required)

PartnerProperties

Name Description Value
displayName Pinecone Organization Name string

Constraints:
Min length = 1
Max length = 512
Pattern = ^[^\0]+$ (required)

TrackedResourceTags

Name Description Value

UserAssignedIdentities

Name Description Value

UserAssignedIdentity

Name Description Value

Usage Examples

Terraform (AzAPI provider) resource definition

The organizations resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Pinecone.VectorDb/organizations resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Pinecone.VectorDb/organizations@2024-10-22-preview"
  name = "string"
  parent_id = "string"
  identity {
    type = "string"
    identity_ids = [
      "string"
    ]
  }
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    properties = {
      marketplace = {
        offerDetails = {
          offerId = "string"
          planId = "string"
          planName = "string"
          publisherId = "string"
          termId = "string"
          termUnit = "string"
        }
        subscriptionId = "string"
      }
      partnerProperties = {
        displayName = "string"
      }
      singleSignOnProperties = {
        aadDomains = [
          "string"
        ]
        enterpriseAppId = "string"
        state = "string"
        type = "string"
        url = "string"
      }
      user = {
        emailAddress = "string"
        firstName = "string"
        lastName = "string"
        phoneNumber = "string"
        upn = "string"
      }
    }
  }
}

Property Values

Pinecone.VectorDb/organizations

Name Description Value
identity The managed service identities assigned to this resource. ManagedServiceIdentity
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Min length = 1
Max length = 50
Pattern = ^[a-zA-Z0-9][a-zA-Z0-9_\-.: ]*$ (required)
properties The resource-specific properties for this resource. OrganizationProperties
tags Resource tags Dictionary of tag names and values.
type The resource type "Pinecone.VectorDb/organizations@2024-10-22-preview"

LiftrBaseMarketplaceDetails

Name Description Value
offerDetails Offer details for the marketplace that is selected by the user LiftrBaseOfferDetails (required)
subscriptionId Azure subscription id for the the marketplace offer is purchased from string

LiftrBaseOfferDetails

Name Description Value
offerId Offer Id for the marketplace offer string (required)
planId Plan Id for the marketplace offer string (required)
planName Plan Name for the marketplace offer string
publisherId Publisher Id for the marketplace offer string (required)
termId Plan Display Name for the marketplace offer string
termUnit Plan Display Name for the marketplace offer string

LiftrBaseSingleSignOnPropertiesV2

Name Description Value
aadDomains List of AAD domains fetched from Microsoft Graph for user. string[]
enterpriseAppId AAD enterprise application Id used to setup SSO string
state State of the Single Sign On for the resource 'Disable'
'Enable'
'Initial'
type Type of Single Sign-On mechanism being used 'OpenId'
'Saml' (required)
url URL for SSO to be used by the partner to redirect the user to their system string

LiftrBaseUserDetails

Name Description Value
emailAddress Email address of the user string

Constraints:
Pattern = ^[A-Za-z0-9._%+-]+@(?:[A-Za-z0-9-]+\.)+[A-Za-z]{2,}$
firstName First name of the user string
lastName Last name of the user string
phoneNumber User's phone number string
upn User's principal name string

ManagedServiceIdentity

Name Description Value
type Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed). 'None'
'SystemAssigned'
'SystemAssigned,UserAssigned'
'UserAssigned' (required)
userAssignedIdentities The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests. UserAssignedIdentities

OrganizationProperties

Name Description Value
marketplace Marketplace details of the resource. LiftrBaseMarketplaceDetails (required)
partnerProperties partner properties PartnerProperties
singleSignOnProperties Single sign-on properties LiftrBaseSingleSignOnPropertiesV2
user Details of the user. LiftrBaseUserDetails (required)

PartnerProperties

Name Description Value
displayName Pinecone Organization Name string

Constraints:
Min length = 1
Max length = 512
Pattern = ^[^\0]+$ (required)

TrackedResourceTags

Name Description Value

UserAssignedIdentities

Name Description Value

UserAssignedIdentity

Name Description Value