1. Packages
  2. Azure Native
  3. API Docs
  4. marketplace
  5. PrivateStoreCollectionOffer
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

azure-native.marketplace.PrivateStoreCollectionOffer

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

    The privateStore offer data structure. Azure REST API version: 2023-01-01. Prior API version in Azure Native 1.x: 2021-12-01.

    Example Usage

    PrivateStoreOffer_update

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var privateStoreCollectionOffer = new AzureNative.Marketplace.PrivateStoreCollectionOffer("privateStoreCollectionOffer", new()
        {
            CollectionId = "56a1a02d-8cf8-45df-bf37-d5f7120fcb3d",
            ETag = "\"9301f4fd-0000-0100-0000-5e248b350666\"",
            OfferId = "marketplacetestthirdparty.md-test-third-party-2",
            PrivateStoreId = "a0e28e55-90c4-41d8-8e34-bb7ef7775406",
            SpecificPlanIdsLimitation = new[]
            {
                "0001",
                "0002",
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/marketplace/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := marketplace.NewPrivateStoreCollectionOffer(ctx, "privateStoreCollectionOffer", &marketplace.PrivateStoreCollectionOfferArgs{
    			CollectionId:   pulumi.String("56a1a02d-8cf8-45df-bf37-d5f7120fcb3d"),
    			ETag:           pulumi.String("\"9301f4fd-0000-0100-0000-5e248b350666\""),
    			OfferId:        pulumi.String("marketplacetestthirdparty.md-test-third-party-2"),
    			PrivateStoreId: pulumi.String("a0e28e55-90c4-41d8-8e34-bb7ef7775406"),
    			SpecificPlanIdsLimitation: pulumi.StringArray{
    				pulumi.String("0001"),
    				pulumi.String("0002"),
    			},
    		})
    		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.marketplace.PrivateStoreCollectionOffer;
    import com.pulumi.azurenative.marketplace.PrivateStoreCollectionOfferArgs;
    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 privateStoreCollectionOffer = new PrivateStoreCollectionOffer("privateStoreCollectionOffer", PrivateStoreCollectionOfferArgs.builder()        
                .collectionId("56a1a02d-8cf8-45df-bf37-d5f7120fcb3d")
                .eTag("\"9301f4fd-0000-0100-0000-5e248b350666\"")
                .offerId("marketplacetestthirdparty.md-test-third-party-2")
                .privateStoreId("a0e28e55-90c4-41d8-8e34-bb7ef7775406")
                .specificPlanIdsLimitation(            
                    "0001",
                    "0002")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    private_store_collection_offer = azure_native.marketplace.PrivateStoreCollectionOffer("privateStoreCollectionOffer",
        collection_id="56a1a02d-8cf8-45df-bf37-d5f7120fcb3d",
        e_tag="\"9301f4fd-0000-0100-0000-5e248b350666\"",
        offer_id="marketplacetestthirdparty.md-test-third-party-2",
        private_store_id="a0e28e55-90c4-41d8-8e34-bb7ef7775406",
        specific_plan_ids_limitation=[
            "0001",
            "0002",
        ])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const privateStoreCollectionOffer = new azure_native.marketplace.PrivateStoreCollectionOffer("privateStoreCollectionOffer", {
        collectionId: "56a1a02d-8cf8-45df-bf37-d5f7120fcb3d",
        eTag: "\"9301f4fd-0000-0100-0000-5e248b350666\"",
        offerId: "marketplacetestthirdparty.md-test-third-party-2",
        privateStoreId: "a0e28e55-90c4-41d8-8e34-bb7ef7775406",
        specificPlanIdsLimitation: [
            "0001",
            "0002",
        ],
    });
    
    resources:
      privateStoreCollectionOffer:
        type: azure-native:marketplace:PrivateStoreCollectionOffer
        properties:
          collectionId: 56a1a02d-8cf8-45df-bf37-d5f7120fcb3d
          eTag: '"9301f4fd-0000-0100-0000-5e248b350666"'
          offerId: marketplacetestthirdparty.md-test-third-party-2
          privateStoreId: a0e28e55-90c4-41d8-8e34-bb7ef7775406
          specificPlanIdsLimitation:
            - '0001'
            - '0002'
    

    Create PrivateStoreCollectionOffer Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PrivateStoreCollectionOffer(name: string, args: PrivateStoreCollectionOfferArgs, opts?: CustomResourceOptions);
    @overload
    def PrivateStoreCollectionOffer(resource_name: str,
                                    args: PrivateStoreCollectionOfferArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def PrivateStoreCollectionOffer(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    collection_id: Optional[str] = None,
                                    private_store_id: Optional[str] = None,
                                    e_tag: Optional[str] = None,
                                    icon_file_uris: Optional[Mapping[str, str]] = None,
                                    offer_id: Optional[str] = None,
                                    plans: Optional[Sequence[PlanArgs]] = None,
                                    specific_plan_ids_limitation: Optional[Sequence[str]] = None,
                                    update_suppressed_due_idempotence: Optional[bool] = None)
    func NewPrivateStoreCollectionOffer(ctx *Context, name string, args PrivateStoreCollectionOfferArgs, opts ...ResourceOption) (*PrivateStoreCollectionOffer, error)
    public PrivateStoreCollectionOffer(string name, PrivateStoreCollectionOfferArgs args, CustomResourceOptions? opts = null)
    public PrivateStoreCollectionOffer(String name, PrivateStoreCollectionOfferArgs args)
    public PrivateStoreCollectionOffer(String name, PrivateStoreCollectionOfferArgs args, CustomResourceOptions options)
    
    type: azure-native:marketplace:PrivateStoreCollectionOffer
    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 PrivateStoreCollectionOfferArgs
    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 PrivateStoreCollectionOfferArgs
    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 PrivateStoreCollectionOfferArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PrivateStoreCollectionOfferArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PrivateStoreCollectionOfferArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var privateStoreCollectionOfferResource = new AzureNative.Marketplace.PrivateStoreCollectionOffer("privateStoreCollectionOfferResource", new()
    {
        CollectionId = "string",
        PrivateStoreId = "string",
        ETag = "string",
        IconFileUris = 
        {
            { "string", "string" },
        },
        OfferId = "string",
        Plans = new[]
        {
            new AzureNative.Marketplace.Inputs.PlanArgs
            {
                Accessibility = "string",
            },
        },
        SpecificPlanIdsLimitation = new[]
        {
            "string",
        },
        UpdateSuppressedDueIdempotence = false,
    });
    
    example, err := marketplace.NewPrivateStoreCollectionOffer(ctx, "privateStoreCollectionOfferResource", &marketplace.PrivateStoreCollectionOfferArgs{
    CollectionId: pulumi.String("string"),
    PrivateStoreId: pulumi.String("string"),
    ETag: pulumi.String("string"),
    IconFileUris: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    OfferId: pulumi.String("string"),
    Plans: marketplace.PlanArray{
    &marketplace.PlanArgs{
    Accessibility: pulumi.String("string"),
    },
    },
    SpecificPlanIdsLimitation: pulumi.StringArray{
    pulumi.String("string"),
    },
    UpdateSuppressedDueIdempotence: pulumi.Bool(false),
    })
    
    var privateStoreCollectionOfferResource = new PrivateStoreCollectionOffer("privateStoreCollectionOfferResource", PrivateStoreCollectionOfferArgs.builder()        
        .collectionId("string")
        .privateStoreId("string")
        .eTag("string")
        .iconFileUris(Map.of("string", "string"))
        .offerId("string")
        .plans(PlanArgs.builder()
            .accessibility("string")
            .build())
        .specificPlanIdsLimitation("string")
        .updateSuppressedDueIdempotence(false)
        .build());
    
    private_store_collection_offer_resource = azure_native.marketplace.PrivateStoreCollectionOffer("privateStoreCollectionOfferResource",
        collection_id="string",
        private_store_id="string",
        e_tag="string",
        icon_file_uris={
            "string": "string",
        },
        offer_id="string",
        plans=[azure_native.marketplace.PlanArgs(
            accessibility="string",
        )],
        specific_plan_ids_limitation=["string"],
        update_suppressed_due_idempotence=False)
    
    const privateStoreCollectionOfferResource = new azure_native.marketplace.PrivateStoreCollectionOffer("privateStoreCollectionOfferResource", {
        collectionId: "string",
        privateStoreId: "string",
        eTag: "string",
        iconFileUris: {
            string: "string",
        },
        offerId: "string",
        plans: [{
            accessibility: "string",
        }],
        specificPlanIdsLimitation: ["string"],
        updateSuppressedDueIdempotence: false,
    });
    
    type: azure-native:marketplace:PrivateStoreCollectionOffer
    properties:
        collectionId: string
        eTag: string
        iconFileUris:
            string: string
        offerId: string
        plans:
            - accessibility: string
        privateStoreId: string
        specificPlanIdsLimitation:
            - string
        updateSuppressedDueIdempotence: false
    

    PrivateStoreCollectionOffer 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 PrivateStoreCollectionOffer resource accepts the following input properties:

    CollectionId string
    The collection ID
    PrivateStoreId string
    The store ID - must use the tenant ID
    ETag string
    Identifier for purposes of race condition
    IconFileUris Dictionary<string, string>
    Icon File Uris
    OfferId string
    The offer ID to update or delete
    Plans List<Pulumi.AzureNative.Marketplace.Inputs.Plan>
    Offer plans
    SpecificPlanIdsLimitation List<string>
    Plan ids limitation for this offer
    UpdateSuppressedDueIdempotence bool
    Indicating whether the offer was not updated to db (true = not updated). If the allow list is identical to the existed one in db, the offer would not be updated.
    CollectionId string
    The collection ID
    PrivateStoreId string
    The store ID - must use the tenant ID
    ETag string
    Identifier for purposes of race condition
    IconFileUris map[string]string
    Icon File Uris
    OfferId string
    The offer ID to update or delete
    Plans []PlanArgs
    Offer plans
    SpecificPlanIdsLimitation []string
    Plan ids limitation for this offer
    UpdateSuppressedDueIdempotence bool
    Indicating whether the offer was not updated to db (true = not updated). If the allow list is identical to the existed one in db, the offer would not be updated.
    collectionId String
    The collection ID
    privateStoreId String
    The store ID - must use the tenant ID
    eTag String
    Identifier for purposes of race condition
    iconFileUris Map<String,String>
    Icon File Uris
    offerId String
    The offer ID to update or delete
    plans List<Plan>
    Offer plans
    specificPlanIdsLimitation List<String>
    Plan ids limitation for this offer
    updateSuppressedDueIdempotence Boolean
    Indicating whether the offer was not updated to db (true = not updated). If the allow list is identical to the existed one in db, the offer would not be updated.
    collectionId string
    The collection ID
    privateStoreId string
    The store ID - must use the tenant ID
    eTag string
    Identifier for purposes of race condition
    iconFileUris {[key: string]: string}
    Icon File Uris
    offerId string
    The offer ID to update or delete
    plans Plan[]
    Offer plans
    specificPlanIdsLimitation string[]
    Plan ids limitation for this offer
    updateSuppressedDueIdempotence boolean
    Indicating whether the offer was not updated to db (true = not updated). If the allow list is identical to the existed one in db, the offer would not be updated.
    collection_id str
    The collection ID
    private_store_id str
    The store ID - must use the tenant ID
    e_tag str
    Identifier for purposes of race condition
    icon_file_uris Mapping[str, str]
    Icon File Uris
    offer_id str
    The offer ID to update or delete
    plans Sequence[PlanArgs]
    Offer plans
    specific_plan_ids_limitation Sequence[str]
    Plan ids limitation for this offer
    update_suppressed_due_idempotence bool
    Indicating whether the offer was not updated to db (true = not updated). If the allow list is identical to the existed one in db, the offer would not be updated.
    collectionId String
    The collection ID
    privateStoreId String
    The store ID - must use the tenant ID
    eTag String
    Identifier for purposes of race condition
    iconFileUris Map<String>
    Icon File Uris
    offerId String
    The offer ID to update or delete
    plans List<Property Map>
    Offer plans
    specificPlanIdsLimitation List<String>
    Plan ids limitation for this offer
    updateSuppressedDueIdempotence Boolean
    Indicating whether the offer was not updated to db (true = not updated). If the allow list is identical to the existed one in db, the offer would not be updated.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PrivateStoreCollectionOffer resource produces the following output properties:

    CreatedAt string
    Private store offer creation date
    Id string
    The provider-assigned unique ID for this managed resource.
    ModifiedAt string
    Private store offer modification date
    Name string
    The name of the resource.
    OfferDisplayName string
    It will be displayed prominently in the marketplace
    PublisherDisplayName string
    Publisher name that will be displayed prominently in the marketplace
    SystemData Pulumi.AzureNative.Marketplace.Outputs.SystemDataResponse
    Metadata pertaining to creation and last modification of the resource
    Type string
    The type of the resource.
    UniqueOfferId string
    Offers unique id
    CreatedAt string
    Private store offer creation date
    Id string
    The provider-assigned unique ID for this managed resource.
    ModifiedAt string
    Private store offer modification date
    Name string
    The name of the resource.
    OfferDisplayName string
    It will be displayed prominently in the marketplace
    PublisherDisplayName string
    Publisher name that will be displayed prominently in the marketplace
    SystemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource
    Type string
    The type of the resource.
    UniqueOfferId string
    Offers unique id
    createdAt String
    Private store offer creation date
    id String
    The provider-assigned unique ID for this managed resource.
    modifiedAt String
    Private store offer modification date
    name String
    The name of the resource.
    offerDisplayName String
    It will be displayed prominently in the marketplace
    publisherDisplayName String
    Publisher name that will be displayed prominently in the marketplace
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource
    type String
    The type of the resource.
    uniqueOfferId String
    Offers unique id
    createdAt string
    Private store offer creation date
    id string
    The provider-assigned unique ID for this managed resource.
    modifiedAt string
    Private store offer modification date
    name string
    The name of the resource.
    offerDisplayName string
    It will be displayed prominently in the marketplace
    publisherDisplayName string
    Publisher name that will be displayed prominently in the marketplace
    systemData SystemDataResponse
    Metadata pertaining to creation and last modification of the resource
    type string
    The type of the resource.
    uniqueOfferId string
    Offers unique id
    created_at str
    Private store offer creation date
    id str
    The provider-assigned unique ID for this managed resource.
    modified_at str
    Private store offer modification date
    name str
    The name of the resource.
    offer_display_name str
    It will be displayed prominently in the marketplace
    publisher_display_name str
    Publisher name that will be displayed prominently in the marketplace
    system_data SystemDataResponse
    Metadata pertaining to creation and last modification of the resource
    type str
    The type of the resource.
    unique_offer_id str
    Offers unique id
    createdAt String
    Private store offer creation date
    id String
    The provider-assigned unique ID for this managed resource.
    modifiedAt String
    Private store offer modification date
    name String
    The name of the resource.
    offerDisplayName String
    It will be displayed prominently in the marketplace
    publisherDisplayName String
    Publisher name that will be displayed prominently in the marketplace
    systemData Property Map
    Metadata pertaining to creation and last modification of the resource
    type String
    The type of the resource.
    uniqueOfferId String
    Offers unique id

    Supporting Types

    Accessibility, AccessibilityArgs

    Unknown
    Unknown
    Public
    Public
    PrivateTenantOnLevel
    PrivateTenantOnLevel
    PrivateSubscriptionOnLevel
    PrivateSubscriptionOnLevel
    AccessibilityUnknown
    Unknown
    AccessibilityPublic
    Public
    AccessibilityPrivateTenantOnLevel
    PrivateTenantOnLevel
    AccessibilityPrivateSubscriptionOnLevel
    PrivateSubscriptionOnLevel
    Unknown
    Unknown
    Public
    Public
    PrivateTenantOnLevel
    PrivateTenantOnLevel
    PrivateSubscriptionOnLevel
    PrivateSubscriptionOnLevel
    Unknown
    Unknown
    Public
    Public
    PrivateTenantOnLevel
    PrivateTenantOnLevel
    PrivateSubscriptionOnLevel
    PrivateSubscriptionOnLevel
    UNKNOWN
    Unknown
    PUBLIC
    Public
    PRIVATE_TENANT_ON_LEVEL
    PrivateTenantOnLevel
    PRIVATE_SUBSCRIPTION_ON_LEVEL
    PrivateSubscriptionOnLevel
    "Unknown"
    Unknown
    "Public"
    Public
    "PrivateTenantOnLevel"
    PrivateTenantOnLevel
    "PrivateSubscriptionOnLevel"
    PrivateSubscriptionOnLevel

    Plan, PlanArgs

    Accessibility string | Accessibility
    Plan accessibility
    accessibility String | Accessibility
    Plan accessibility
    accessibility string | Accessibility
    Plan accessibility
    accessibility str | Accessibility
    Plan accessibility

    PlanResponse, PlanResponseArgs

    AltStackReference string
    Alternative stack type
    PlanDisplayName string
    Friendly name for the plan for display in the marketplace
    PlanId string
    Text identifier for this plan
    SkuId string
    Identifier for this plan
    StackType string
    Stack type (classic or arm)
    Accessibility string
    Plan accessibility
    AltStackReference string
    Alternative stack type
    PlanDisplayName string
    Friendly name for the plan for display in the marketplace
    PlanId string
    Text identifier for this plan
    SkuId string
    Identifier for this plan
    StackType string
    Stack type (classic or arm)
    Accessibility string
    Plan accessibility
    altStackReference String
    Alternative stack type
    planDisplayName String
    Friendly name for the plan for display in the marketplace
    planId String
    Text identifier for this plan
    skuId String
    Identifier for this plan
    stackType String
    Stack type (classic or arm)
    accessibility String
    Plan accessibility
    altStackReference string
    Alternative stack type
    planDisplayName string
    Friendly name for the plan for display in the marketplace
    planId string
    Text identifier for this plan
    skuId string
    Identifier for this plan
    stackType string
    Stack type (classic or arm)
    accessibility string
    Plan accessibility
    alt_stack_reference str
    Alternative stack type
    plan_display_name str
    Friendly name for the plan for display in the marketplace
    plan_id str
    Text identifier for this plan
    sku_id str
    Identifier for this plan
    stack_type str
    Stack type (classic or arm)
    accessibility str
    Plan accessibility
    altStackReference String
    Alternative stack type
    planDisplayName String
    Friendly name for the plan for display in the marketplace
    planId String
    Text identifier for this plan
    skuId String
    Identifier for this plan
    stackType String
    Stack type (classic or arm)
    accessibility String
    Plan accessibility

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC)
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    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.
    CreatedByType string
    The type of identity that created the resource
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    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.
    createdByType String
    The type of identity that created the resource
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    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.
    createdByType string
    The type of identity that created the resource
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    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_type str
    The type of identity that created the resource
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    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.
    createdByType String
    The type of identity that created the resource
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    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:marketplace:PrivateStoreCollectionOffer marketplacetestthirdparty.md-test-third-party-2 /providers/Microsoft.Marketplace/privateStores/{privateStoreId}/collections/{collectionId}/offers/{offerId} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi