azure-native.marketplace.PrivateStoreCollectionOffer
Explore with Pulumi AI
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 (
	marketplace "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 * 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",
    ],
});
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",
    ])
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.
Constructor 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=[{
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The PrivateStoreCollectionOffer resource accepts the following input properties:
- CollectionId string
- The collection ID
- PrivateStore stringId 
- The store ID - must use the tenant ID
- ETag string
- Identifier for purposes of race condition
- IconFile Dictionary<string, string>Uris 
- Icon File Uris
- OfferId string
- The offer ID to update or delete
- Plans
List<Pulumi.Azure Native. Marketplace. Inputs. Plan> 
- Offer plans
- SpecificPlan List<string>Ids Limitation 
- Plan ids limitation for this offer
- UpdateSuppressed boolDue Idempotence 
- 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
- PrivateStore stringId 
- The store ID - must use the tenant ID
- ETag string
- Identifier for purposes of race condition
- IconFile map[string]stringUris 
- Icon File Uris
- OfferId string
- The offer ID to update or delete
- Plans
[]PlanArgs 
- Offer plans
- SpecificPlan []stringIds Limitation 
- Plan ids limitation for this offer
- UpdateSuppressed boolDue Idempotence 
- 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
- privateStore StringId 
- The store ID - must use the tenant ID
- eTag String
- Identifier for purposes of race condition
- iconFile Map<String,String>Uris 
- Icon File Uris
- offerId String
- The offer ID to update or delete
- plans List<Plan>
- Offer plans
- specificPlan List<String>Ids Limitation 
- Plan ids limitation for this offer
- updateSuppressed BooleanDue Idempotence 
- 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
- privateStore stringId 
- The store ID - must use the tenant ID
- eTag string
- Identifier for purposes of race condition
- iconFile {[key: string]: string}Uris 
- Icon File Uris
- offerId string
- The offer ID to update or delete
- plans Plan[]
- Offer plans
- specificPlan string[]Ids Limitation 
- Plan ids limitation for this offer
- updateSuppressed booleanDue Idempotence 
- 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_ strid 
- The store ID - must use the tenant ID
- e_tag str
- Identifier for purposes of race condition
- icon_file_ Mapping[str, str]uris 
- Icon File Uris
- offer_id str
- The offer ID to update or delete
- plans
Sequence[PlanArgs] 
- Offer plans
- specific_plan_ Sequence[str]ids_ limitation 
- Plan ids limitation for this offer
- update_suppressed_ booldue_ idempotence 
- 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
- privateStore StringId 
- The store ID - must use the tenant ID
- eTag String
- Identifier for purposes of race condition
- iconFile Map<String>Uris 
- Icon File Uris
- offerId String
- The offer ID to update or delete
- plans List<Property Map>
- Offer plans
- specificPlan List<String>Ids Limitation 
- Plan ids limitation for this offer
- updateSuppressed BooleanDue Idempotence 
- 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.
- OfferDisplay stringName 
- It will be displayed prominently in the marketplace
- PublisherDisplay stringName 
- Publisher name that will be displayed prominently in the marketplace
- SystemData Pulumi.Azure Native. Marketplace. Outputs. System Data Response 
- Metadata pertaining to creation and last modification of the resource
- Type string
- The type of the resource.
- UniqueOffer stringId 
- 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.
- OfferDisplay stringName 
- It will be displayed prominently in the marketplace
- PublisherDisplay stringName 
- Publisher name that will be displayed prominently in the marketplace
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource
- Type string
- The type of the resource.
- UniqueOffer stringId 
- 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.
- offerDisplay StringName 
- It will be displayed prominently in the marketplace
- publisherDisplay StringName 
- Publisher name that will be displayed prominently in the marketplace
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource
- type String
- The type of the resource.
- uniqueOffer StringId 
- 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.
- offerDisplay stringName 
- It will be displayed prominently in the marketplace
- publisherDisplay stringName 
- Publisher name that will be displayed prominently in the marketplace
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource
- type string
- The type of the resource.
- uniqueOffer stringId 
- 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_ strname 
- It will be displayed prominently in the marketplace
- publisher_display_ strname 
- Publisher name that will be displayed prominently in the marketplace
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the resource
- type str
- The type of the resource.
- unique_offer_ strid 
- 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.
- offerDisplay StringName 
- It will be displayed prominently in the marketplace
- publisherDisplay StringName 
- 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.
- uniqueOffer StringId 
- Offers unique id
Supporting Types
Accessibility, AccessibilityArgs  
- Unknown
- Unknown
- Public
- Public
- PrivateTenant On Level 
- PrivateTenantOnLevel
- PrivateSubscription On Level 
- PrivateSubscriptionOnLevel
- AccessibilityUnknown 
- Unknown
- AccessibilityPublic 
- Public
- AccessibilityPrivate Tenant On Level 
- PrivateTenantOnLevel
- AccessibilityPrivate Subscription On Level 
- PrivateSubscriptionOnLevel
- Unknown
- Unknown
- Public
- Public
- PrivateTenant On Level 
- PrivateTenantOnLevel
- PrivateSubscription On Level 
- PrivateSubscriptionOnLevel
- Unknown
- Unknown
- Public
- Public
- PrivateTenant On Level 
- PrivateTenantOnLevel
- PrivateSubscription On Level 
- PrivateSubscriptionOnLevel
- UNKNOWN
- Unknown
- PUBLIC
- Public
- PRIVATE_TENANT_ON_LEVEL
- PrivateTenantOnLevel
- PRIVATE_SUBSCRIPTION_ON_LEVEL
- PrivateSubscriptionOnLevel
- "Unknown"
- Unknown
- "Public"
- Public
- "PrivateTenant On Level" 
- PrivateTenantOnLevel
- "PrivateSubscription On Level" 
- PrivateSubscriptionOnLevel
Plan, PlanArgs  
- Accessibility
string | Pulumi.Azure Native. Marketplace. Accessibility 
- Plan accessibility
- Accessibility string | Accessibility
- Plan accessibility
- accessibility String | Accessibility
- Plan accessibility
- accessibility string | Accessibility
- Plan accessibility
- accessibility str | Accessibility
- Plan accessibility
- accessibility
String | "Unknown" | "Public" | "PrivateTenant On Level" | "Private Subscription On Level" 
- Plan accessibility
PlanResponse, PlanResponseArgs    
- AltStack stringReference 
- Alternative stack type
- PlanDisplay stringName 
- 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
- AltStack stringReference 
- Alternative stack type
- PlanDisplay stringName 
- 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
- altStack StringReference 
- Alternative stack type
- planDisplay StringName 
- 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
- altStack stringReference 
- Alternative stack type
- planDisplay stringName 
- 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_ strreference 
- Alternative stack type
- plan_display_ strname 
- 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
- altStack StringReference 
- Alternative stack type
- planDisplay StringName 
- 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.
- 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: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