meraki.administered.LicensingSubscriptionSubscriptionsBind
Explore with Pulumi AI
~>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={
"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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The LicensingSubscriptionSubscriptionsBind resource accepts the following input properties:
- Parameters
Licensing
Subscription Subscriptions Bind Parameters - Subscription
Id 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
Licensing
Subscription Subscriptions Bind Parameters Args - Subscription
Id 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
Licensing
Subscription Subscriptions Bind Parameters - subscription
Id 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
Licensing
Subscription Subscriptions Bind Parameters - subscription
Id 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
Licensing
Subscription Subscriptions Bind Parameters Args - 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
- subscription
Id 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
Licensing
Subscription Subscriptions Bind Item
- Id string
- The provider-assigned unique ID for this managed resource.
- Item
Licensing
Subscription Subscriptions Bind Item
- id String
- The provider-assigned unique ID for this managed resource.
- item
Licensing
Subscription Subscriptions Bind Item
- id string
- The provider-assigned unique ID for this managed resource.
- item
Licensing
Subscription Subscriptions Bind Item
- id str
- The provider-assigned unique ID for this managed resource.
- item
Licensing
Subscription Subscriptions Bind Item
- 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.
- Item
Licensing
Subscription Subscriptions Bind Item - Parameters
Licensing
Subscription Subscriptions Bind Parameters - Subscription
Id 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
Licensing
Subscription Subscriptions Bind Item Args - Parameters
Licensing
Subscription Subscriptions Bind Parameters Args - Subscription
Id 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
Licensing
Subscription Subscriptions Bind Item - parameters
Licensing
Subscription Subscriptions Bind Parameters - subscription
Id 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
Licensing
Subscription Subscriptions Bind Item - parameters
Licensing
Subscription Subscriptions Bind Parameters - subscription
Id 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
Licensing
Subscription Subscriptions Bind Item Args - parameters
Licensing
Subscription Subscriptions Bind Parameters Args - 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
- subscription
Id 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
- Insufficient
Entitlements List<LicensingSubscription Subscriptions Bind Item Insufficient Entitlement> - A list of entitlements required to successfully bind the networks to the subscription
- Networks
List<Licensing
Subscription Subscriptions Bind Item Network> - Unbound networks
- Subscription
Id string - Subscription ID
- Errors []string
- Array of errors if failed
- Insufficient
Entitlements []LicensingSubscription Subscriptions Bind Item Insufficient Entitlement - A list of entitlements required to successfully bind the networks to the subscription
- Networks
[]Licensing
Subscription Subscriptions Bind Item Network - Unbound networks
- Subscription
Id string - Subscription ID
- errors List<String>
- Array of errors if failed
- insufficient
Entitlements List<LicensingSubscription Subscriptions Bind Item Insufficient Entitlement> - A list of entitlements required to successfully bind the networks to the subscription
- networks
List<Licensing
Subscription Subscriptions Bind Item Network> - Unbound networks
- subscription
Id String - Subscription ID
- errors string[]
- Array of errors if failed
- insufficient
Entitlements LicensingSubscription Subscriptions Bind Item Insufficient Entitlement[] - A list of entitlements required to successfully bind the networks to the subscription
- networks
Licensing
Subscription Subscriptions Bind Item Network[] - Unbound networks
- subscription
Id string - Subscription ID
- errors Sequence[str]
- Array of errors if failed
- insufficient_
entitlements Sequence[LicensingSubscription Subscriptions Bind Item Insufficient Entitlement] - A list of entitlements required to successfully bind the networks to the subscription
- networks
Sequence[Licensing
Subscription Subscriptions Bind Item Network] - Unbound networks
- subscription_
id str - Subscription ID
- errors List<String>
- Array of errors if failed
- insufficient
Entitlements List<Property Map> - A list of entitlements required to successfully bind the networks to the subscription
- networks List<Property Map>
- Unbound networks
- subscription
Id String - Subscription ID
LicensingSubscriptionSubscriptionsBindItemInsufficientEntitlement, LicensingSubscriptionSubscriptionsBindItemInsufficientEntitlementArgs
LicensingSubscriptionSubscriptionsBindItemNetwork, LicensingSubscriptionSubscriptionsBindItemNetworkArgs
LicensingSubscriptionSubscriptionsBindParameters, LicensingSubscriptionSubscriptionsBindParametersArgs
- Network
Ids List<string> - List of network ids to bind to the subscription
- Network
Ids []string - List of network ids to bind to the subscription
- network
Ids List<String> - List of network ids to bind to the subscription
- network
Ids string[] - List of network ids to bind to the subscription
- network_
ids Sequence[str] - List of network ids to bind to the subscription
- network
Ids 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.