meraki.networks.Unbind
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.networks.Unbind;
import com.pulumi.meraki.networks.UnbindArgs;
import com.pulumi.meraki.networks.inputs.UnbindParametersArgs;
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 Unbind("example", UnbindArgs.builder()
            .networkId("string")
            .parameters(UnbindParametersArgs.builder()
                .retain_configs(true)
                .build())
            .build());
        ctx.export("merakiNetworksUnbindExample", example);
    }
}
resources:
  example:
    type: meraki:networks:Unbind
    properties:
      networkId: string
      parameters:
        retain_configs: true
outputs:
  merakiNetworksUnbindExample: ${example}
Create Unbind Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Unbind(name: string, args: UnbindArgs, opts?: CustomResourceOptions);@overload
def Unbind(resource_name: str,
           args: UnbindArgs,
           opts: Optional[ResourceOptions] = None)
@overload
def Unbind(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           network_id: Optional[str] = None,
           parameters: Optional[UnbindParametersArgs] = None)func NewUnbind(ctx *Context, name string, args UnbindArgs, opts ...ResourceOption) (*Unbind, error)public Unbind(string name, UnbindArgs args, CustomResourceOptions? opts = null)
public Unbind(String name, UnbindArgs args)
public Unbind(String name, UnbindArgs args, CustomResourceOptions options)
type: meraki:networks:Unbind
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 UnbindArgs
- 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 UnbindArgs
- 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 UnbindArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UnbindArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UnbindArgs
- 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 unbindResource = new Meraki.Networks.Unbind("unbindResource", new()
{
    NetworkId = "string",
    Parameters = new Meraki.Networks.Inputs.UnbindParametersArgs
    {
        RetainConfigs = false,
    },
});
example, err := networks.NewUnbind(ctx, "unbindResource", &networks.UnbindArgs{
	NetworkId: pulumi.String("string"),
	Parameters: &networks.UnbindParametersArgs{
		RetainConfigs: pulumi.Bool(false),
	},
})
var unbindResource = new Unbind("unbindResource", UnbindArgs.builder()
    .networkId("string")
    .parameters(UnbindParametersArgs.builder()
        .retainConfigs(false)
        .build())
    .build());
unbind_resource = meraki.networks.Unbind("unbindResource",
    network_id="string",
    parameters={
        "retain_configs": False,
    })
const unbindResource = new meraki.networks.Unbind("unbindResource", {
    networkId: "string",
    parameters: {
        retainConfigs: false,
    },
});
type: meraki:networks:Unbind
properties:
    networkId: string
    parameters:
        retainConfigs: false
Unbind 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 Unbind resource accepts the following input properties:
- NetworkId string
- networkId path parameter. Network ID
- Parameters
UnbindParameters 
- NetworkId string
- networkId path parameter. Network ID
- Parameters
UnbindParameters Args 
- networkId String
- networkId path parameter. Network ID
- parameters
UnbindParameters 
- networkId string
- networkId path parameter. Network ID
- parameters
UnbindParameters 
- network_id str
- networkId path parameter. Network ID
- parameters
UnbindParameters Args 
- networkId String
- networkId path parameter. Network ID
- parameters Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the Unbind resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Item
UnbindItem 
- Id string
- The provider-assigned unique ID for this managed resource.
- Item
UnbindItem 
- id String
- The provider-assigned unique ID for this managed resource.
- item
UnbindItem 
- id string
- The provider-assigned unique ID for this managed resource.
- item
UnbindItem 
- id str
- The provider-assigned unique ID for this managed resource.
- item
UnbindItem 
- id String
- The provider-assigned unique ID for this managed resource.
- item Property Map
Look up Existing Unbind Resource
Get an existing Unbind 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?: UnbindState, opts?: CustomResourceOptions): Unbind@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        item: Optional[UnbindItemArgs] = None,
        network_id: Optional[str] = None,
        parameters: Optional[UnbindParametersArgs] = None) -> Unbindfunc GetUnbind(ctx *Context, name string, id IDInput, state *UnbindState, opts ...ResourceOption) (*Unbind, error)public static Unbind Get(string name, Input<string> id, UnbindState? state, CustomResourceOptions? opts = null)public static Unbind get(String name, Output<String> id, UnbindState state, CustomResourceOptions options)resources:  _:    type: meraki:networks:Unbind    get:      id: ${id}- 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
UnbindItem 
- NetworkId string
- networkId path parameter. Network ID
- Parameters
UnbindParameters 
- Item
UnbindItem Args 
- NetworkId string
- networkId path parameter. Network ID
- Parameters
UnbindParameters Args 
- item
UnbindItem 
- networkId String
- networkId path parameter. Network ID
- parameters
UnbindParameters 
- item
UnbindItem 
- networkId string
- networkId path parameter. Network ID
- parameters
UnbindParameters 
- item
UnbindItem Args 
- network_id str
- networkId path parameter. Network ID
- parameters
UnbindParameters Args 
- item Property Map
- networkId String
- networkId path parameter. Network ID
- parameters Property Map
Supporting Types
UnbindItem, UnbindItemArgs    
- EnrollmentString string
- Enrollment string for the network
- Id string
- Network ID
- IsBound boolTo Config Template 
- If the network is bound to a config template
- Name string
- Network name
- Notes string
- Notes for the network
- OrganizationId string
- Organization ID
- ProductTypes List<string>
- List of the product types that the network supports
- List<string>
- Network tags
- TimeZone string
- Timezone of the network
- Url string
- URL to the network Dashboard UI
- EnrollmentString string
- Enrollment string for the network
- Id string
- Network ID
- IsBound boolTo Config Template 
- If the network is bound to a config template
- Name string
- Network name
- Notes string
- Notes for the network
- OrganizationId string
- Organization ID
- ProductTypes []string
- List of the product types that the network supports
- []string
- Network tags
- TimeZone string
- Timezone of the network
- Url string
- URL to the network Dashboard UI
- enrollmentString String
- Enrollment string for the network
- id String
- Network ID
- isBound BooleanTo Config Template 
- If the network is bound to a config template
- name String
- Network name
- notes String
- Notes for the network
- organizationId String
- Organization ID
- productTypes List<String>
- List of the product types that the network supports
- List<String>
- Network tags
- timeZone String
- Timezone of the network
- url String
- URL to the network Dashboard UI
- enrollmentString string
- Enrollment string for the network
- id string
- Network ID
- isBound booleanTo Config Template 
- If the network is bound to a config template
- name string
- Network name
- notes string
- Notes for the network
- organizationId string
- Organization ID
- productTypes string[]
- List of the product types that the network supports
- string[]
- Network tags
- timeZone string
- Timezone of the network
- url string
- URL to the network Dashboard UI
- enrollment_string str
- Enrollment string for the network
- id str
- Network ID
- is_bound_ boolto_ config_ template 
- If the network is bound to a config template
- name str
- Network name
- notes str
- Notes for the network
- organization_id str
- Organization ID
- product_types Sequence[str]
- List of the product types that the network supports
- Sequence[str]
- Network tags
- time_zone str
- Timezone of the network
- url str
- URL to the network Dashboard UI
- enrollmentString String
- Enrollment string for the network
- id String
- Network ID
- isBound BooleanTo Config Template 
- If the network is bound to a config template
- name String
- Network name
- notes String
- Notes for the network
- organizationId String
- Organization ID
- productTypes List<String>
- List of the product types that the network supports
- List<String>
- Network tags
- timeZone String
- Timezone of the network
- url String
- URL to the network Dashboard UI
UnbindParameters, UnbindParametersArgs    
- RetainConfigs bool
- Optional boolean to retain all the current configs given by the template.
- RetainConfigs bool
- Optional boolean to retain all the current configs given by the template.
- retainConfigs Boolean
- Optional boolean to retain all the current configs given by the template.
- retainConfigs boolean
- Optional boolean to retain all the current configs given by the template.
- retain_configs bool
- Optional boolean to retain all the current configs given by the template.
- retainConfigs Boolean
- Optional boolean to retain all the current configs given by the template.
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the merakiTerraform Provider.
