1. Packages
  2. Cisco Meraki
  3. API Docs
  4. administered
  5. LicensingSubscriptionSubscriptionsBind
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

meraki.administered.LicensingSubscriptionSubscriptionsBind

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

    ~>Warning: This resource does not represent a real-world entity in Meraki Dashboard, therefore changing or deleting this resource on its own has no immediate effect. Instead, it is a task part of a Meraki Dashboard workflow. It is executed in Meraki without any additional verification. It does not check if it was executed before or if a similar configuration or action already existed previously.

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.administered.LicensingSubscriptionSubscriptionsBind;
    import com.pulumi.meraki.administered.LicensingSubscriptionSubscriptionsBindArgs;
    import com.pulumi.meraki.administered.inputs.LicensingSubscriptionSubscriptionsBindParametersArgs;
    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 example = new LicensingSubscriptionSubscriptionsBind("example", LicensingSubscriptionSubscriptionsBindArgs.builder()
                .subscriptionId("string")
                .validate(false)
                .parameters(LicensingSubscriptionSubscriptionsBindParametersArgs.builder()
                    .network_ids(                
                        "L_1234",
                        "N_5678")
                    .build())
                .build());
    
            ctx.export("merakiAdministeredLicensingSubscriptionSubscriptionsBindExample", example);
        }
    }
    
    resources:
      example:
        type: meraki:administered:LicensingSubscriptionSubscriptionsBind
        properties:
          subscriptionId: string
          validate: false
          parameters:
            network_ids:
              - L_1234
              - N_5678
    outputs:
      merakiAdministeredLicensingSubscriptionSubscriptionsBindExample: ${example}
    

    Create LicensingSubscriptionSubscriptionsBind Resource

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

    Constructor syntax

    new LicensingSubscriptionSubscriptionsBind(name: string, args: LicensingSubscriptionSubscriptionsBindArgs, opts?: CustomResourceOptions);
    @overload
    def LicensingSubscriptionSubscriptionsBind(resource_name: str,
                                               args: LicensingSubscriptionSubscriptionsBindArgs,
                                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def LicensingSubscriptionSubscriptionsBind(resource_name: str,
                                               opts: Optional[ResourceOptions] = None,
                                               parameters: Optional[LicensingSubscriptionSubscriptionsBindParametersArgs] = None,
                                               subscription_id: Optional[str] = None,
                                               validate: Optional[bool] = None)
    func NewLicensingSubscriptionSubscriptionsBind(ctx *Context, name string, args LicensingSubscriptionSubscriptionsBindArgs, opts ...ResourceOption) (*LicensingSubscriptionSubscriptionsBind, error)
    public LicensingSubscriptionSubscriptionsBind(string name, LicensingSubscriptionSubscriptionsBindArgs args, CustomResourceOptions? opts = null)
    public LicensingSubscriptionSubscriptionsBind(String name, LicensingSubscriptionSubscriptionsBindArgs args)
    public LicensingSubscriptionSubscriptionsBind(String name, LicensingSubscriptionSubscriptionsBindArgs args, CustomResourceOptions options)
    
    type: meraki:administered:LicensingSubscriptionSubscriptionsBind
    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 LicensingSubscriptionSubscriptionsBindArgs
    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 LicensingSubscriptionSubscriptionsBindArgs
    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 LicensingSubscriptionSubscriptionsBindArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LicensingSubscriptionSubscriptionsBindArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LicensingSubscriptionSubscriptionsBindArgs
    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 licensingSubscriptionSubscriptionsBindResource = new Meraki.Administered.LicensingSubscriptionSubscriptionsBind("licensingSubscriptionSubscriptionsBindResource", new()
    {
        Parameters = new Meraki.Administered.Inputs.LicensingSubscriptionSubscriptionsBindParametersArgs
        {
            NetworkIds = new[]
            {
                "string",
            },
        },
        SubscriptionId = "string",
        Validate = false,
    });
    
    example, err := administered.NewLicensingSubscriptionSubscriptionsBind(ctx, "licensingSubscriptionSubscriptionsBindResource", &administered.LicensingSubscriptionSubscriptionsBindArgs{
    	Parameters: &administered.LicensingSubscriptionSubscriptionsBindParametersArgs{
    		NetworkIds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	SubscriptionId: pulumi.String("string"),
    	Validate:       pulumi.Bool(false),
    })
    
    var licensingSubscriptionSubscriptionsBindResource = new LicensingSubscriptionSubscriptionsBind("licensingSubscriptionSubscriptionsBindResource", LicensingSubscriptionSubscriptionsBindArgs.builder()
        .parameters(LicensingSubscriptionSubscriptionsBindParametersArgs.builder()
            .networkIds("string")
            .build())
        .subscriptionId("string")
        .validate(false)
        .build());
    
    licensing_subscription_subscriptions_bind_resource = meraki.administered.LicensingSubscriptionSubscriptionsBind("licensingSubscriptionSubscriptionsBindResource",
        parameters=meraki.administered.LicensingSubscriptionSubscriptionsBindParametersArgs(
            network_ids=["string"],
        ),
        subscription_id="string",
        validate=False)
    
    const licensingSubscriptionSubscriptionsBindResource = new meraki.administered.LicensingSubscriptionSubscriptionsBind("licensingSubscriptionSubscriptionsBindResource", {
        parameters: {
            networkIds: ["string"],
        },
        subscriptionId: "string",
        validate: false,
    });
    
    type: meraki:administered:LicensingSubscriptionSubscriptionsBind
    properties:
        parameters:
            networkIds:
                - string
        subscriptionId: string
        validate: false
    

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

    Parameters LicensingSubscriptionSubscriptionsBindParameters
    SubscriptionId string
    subscriptionId path parameter. Subscription ID
    Validate bool
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.
    Parameters LicensingSubscriptionSubscriptionsBindParametersArgs
    SubscriptionId string
    subscriptionId path parameter. Subscription ID
    Validate bool
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.
    parameters LicensingSubscriptionSubscriptionsBindParameters
    subscriptionId String
    subscriptionId path parameter. Subscription ID
    validate Boolean
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.
    parameters LicensingSubscriptionSubscriptionsBindParameters
    subscriptionId string
    subscriptionId path parameter. Subscription ID
    validate boolean
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.
    parameters LicensingSubscriptionSubscriptionsBindParametersArgs
    subscription_id str
    subscriptionId path parameter. Subscription ID
    validate bool
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.
    parameters Property Map
    subscriptionId String
    subscriptionId path parameter. Subscription ID
    validate Boolean
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Item LicensingSubscriptionSubscriptionsBindItem
    Id string
    The provider-assigned unique ID for this managed resource.
    Item LicensingSubscriptionSubscriptionsBindItem
    id String
    The provider-assigned unique ID for this managed resource.
    item LicensingSubscriptionSubscriptionsBindItem
    id string
    The provider-assigned unique ID for this managed resource.
    item LicensingSubscriptionSubscriptionsBindItem
    id str
    The provider-assigned unique ID for this managed resource.
    item LicensingSubscriptionSubscriptionsBindItem
    id String
    The provider-assigned unique ID for this managed resource.
    item Property Map

    Look up Existing LicensingSubscriptionSubscriptionsBind Resource

    Get an existing LicensingSubscriptionSubscriptionsBind resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: LicensingSubscriptionSubscriptionsBindState, opts?: CustomResourceOptions): LicensingSubscriptionSubscriptionsBind
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            item: Optional[LicensingSubscriptionSubscriptionsBindItemArgs] = None,
            parameters: Optional[LicensingSubscriptionSubscriptionsBindParametersArgs] = None,
            subscription_id: Optional[str] = None,
            validate: Optional[bool] = None) -> LicensingSubscriptionSubscriptionsBind
    func GetLicensingSubscriptionSubscriptionsBind(ctx *Context, name string, id IDInput, state *LicensingSubscriptionSubscriptionsBindState, opts ...ResourceOption) (*LicensingSubscriptionSubscriptionsBind, error)
    public static LicensingSubscriptionSubscriptionsBind Get(string name, Input<string> id, LicensingSubscriptionSubscriptionsBindState? state, CustomResourceOptions? opts = null)
    public static LicensingSubscriptionSubscriptionsBind get(String name, Output<String> id, LicensingSubscriptionSubscriptionsBindState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Item LicensingSubscriptionSubscriptionsBindItem
    Parameters LicensingSubscriptionSubscriptionsBindParameters
    SubscriptionId string
    subscriptionId path parameter. Subscription ID
    Validate bool
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.
    Item LicensingSubscriptionSubscriptionsBindItemArgs
    Parameters LicensingSubscriptionSubscriptionsBindParametersArgs
    SubscriptionId string
    subscriptionId path parameter. Subscription ID
    Validate bool
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.
    item LicensingSubscriptionSubscriptionsBindItem
    parameters LicensingSubscriptionSubscriptionsBindParameters
    subscriptionId String
    subscriptionId path parameter. Subscription ID
    validate Boolean
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.
    item LicensingSubscriptionSubscriptionsBindItem
    parameters LicensingSubscriptionSubscriptionsBindParameters
    subscriptionId string
    subscriptionId path parameter. Subscription ID
    validate boolean
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.
    item LicensingSubscriptionSubscriptionsBindItemArgs
    parameters LicensingSubscriptionSubscriptionsBindParametersArgs
    subscription_id str
    subscriptionId path parameter. Subscription ID
    validate bool
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.
    item Property Map
    parameters Property Map
    subscriptionId String
    subscriptionId path parameter. Subscription ID
    validate Boolean
    validate query parameter. Check if the provided networks can be bound to the subscription. Returns any licensing problems and does not commit the results.

    Supporting Types

    LicensingSubscriptionSubscriptionsBindItem, LicensingSubscriptionSubscriptionsBindItemArgs

    Errors List<string>
    Array of errors if failed
    InsufficientEntitlements List<LicensingSubscriptionSubscriptionsBindItemInsufficientEntitlement>
    A list of entitlements required to successfully bind the networks to the subscription
    Networks List<LicensingSubscriptionSubscriptionsBindItemNetwork>
    Unbound networks
    SubscriptionId string
    Subscription ID
    Errors []string
    Array of errors if failed
    InsufficientEntitlements []LicensingSubscriptionSubscriptionsBindItemInsufficientEntitlement
    A list of entitlements required to successfully bind the networks to the subscription
    Networks []LicensingSubscriptionSubscriptionsBindItemNetwork
    Unbound networks
    SubscriptionId string
    Subscription ID
    errors List<String>
    Array of errors if failed
    insufficientEntitlements List<LicensingSubscriptionSubscriptionsBindItemInsufficientEntitlement>
    A list of entitlements required to successfully bind the networks to the subscription
    networks List<LicensingSubscriptionSubscriptionsBindItemNetwork>
    Unbound networks
    subscriptionId String
    Subscription ID
    errors string[]
    Array of errors if failed
    insufficientEntitlements LicensingSubscriptionSubscriptionsBindItemInsufficientEntitlement[]
    A list of entitlements required to successfully bind the networks to the subscription
    networks LicensingSubscriptionSubscriptionsBindItemNetwork[]
    Unbound networks
    subscriptionId string
    Subscription ID
    errors Sequence[str]
    Array of errors if failed
    insufficient_entitlements Sequence[LicensingSubscriptionSubscriptionsBindItemInsufficientEntitlement]
    A list of entitlements required to successfully bind the networks to the subscription
    networks Sequence[LicensingSubscriptionSubscriptionsBindItemNetwork]
    Unbound networks
    subscription_id str
    Subscription ID
    errors List<String>
    Array of errors if failed
    insufficientEntitlements List<Property Map>
    A list of entitlements required to successfully bind the networks to the subscription
    networks List<Property Map>
    Unbound networks
    subscriptionId String
    Subscription ID

    LicensingSubscriptionSubscriptionsBindItemInsufficientEntitlement, LicensingSubscriptionSubscriptionsBindItemInsufficientEntitlementArgs

    Quantity int
    Number required
    Sku string
    SKU of the required product
    Quantity int
    Number required
    Sku string
    SKU of the required product
    quantity Integer
    Number required
    sku String
    SKU of the required product
    quantity number
    Number required
    sku string
    SKU of the required product
    quantity int
    Number required
    sku str
    SKU of the required product
    quantity Number
    Number required
    sku String
    SKU of the required product

    LicensingSubscriptionSubscriptionsBindItemNetwork, LicensingSubscriptionSubscriptionsBindItemNetworkArgs

    Id string
    Network ID
    Name string
    Network name
    Id string
    Network ID
    Name string
    Network name
    id String
    Network ID
    name String
    Network name
    id string
    Network ID
    name string
    Network name
    id str
    Network ID
    name str
    Network name
    id String
    Network ID
    name String
    Network name

    LicensingSubscriptionSubscriptionsBindParameters, LicensingSubscriptionSubscriptionsBindParametersArgs

    NetworkIds List<string>
    List of network ids to bind to the subscription
    NetworkIds []string
    List of network ids to bind to the subscription
    networkIds List<String>
    List of network ids to bind to the subscription
    networkIds string[]
    List of network ids to bind to the subscription
    network_ids Sequence[str]
    List of network ids to bind to the subscription
    networkIds List<String>
    List of network ids to bind to the subscription

    Package Details

    Repository
    meraki pulumi/pulumi-meraki
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the meraki Terraform Provider.
    meraki logo
    Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi