meraki.organizations.EarlyAccessFeaturesOptIns
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";
const example = new meraki.organizations.EarlyAccessFeaturesOptIns("example", {
limitScopeToNetworks: ["N_12345"],
organizationId: "string",
shortName: "has_magnetic_beta",
});
export const merakiOrganizationsEarlyAccessFeaturesOptInsExample = example;
import pulumi
import pulumi_meraki as meraki
example = meraki.organizations.EarlyAccessFeaturesOptIns("example",
limit_scope_to_networks=["N_12345"],
organization_id="string",
short_name="has_magnetic_beta")
pulumi.export("merakiOrganizationsEarlyAccessFeaturesOptInsExample", example)
package main
import (
"github.com/pulumi/pulumi-meraki/sdk/go/meraki/organizations"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := organizations.NewEarlyAccessFeaturesOptIns(ctx, "example", &organizations.EarlyAccessFeaturesOptInsArgs{
LimitScopeToNetworks: pulumi.StringArray{
pulumi.String("N_12345"),
},
OrganizationId: pulumi.String("string"),
ShortName: pulumi.String("has_magnetic_beta"),
})
if err != nil {
return err
}
ctx.Export("merakiOrganizationsEarlyAccessFeaturesOptInsExample", example)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;
return await Deployment.RunAsync(() =>
{
var example = new Meraki.Organizations.EarlyAccessFeaturesOptIns("example", new()
{
LimitScopeToNetworks = new[]
{
"N_12345",
},
OrganizationId = "string",
ShortName = "has_magnetic_beta",
});
return new Dictionary<string, object?>
{
["merakiOrganizationsEarlyAccessFeaturesOptInsExample"] = example,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.organizations.EarlyAccessFeaturesOptIns;
import com.pulumi.meraki.organizations.EarlyAccessFeaturesOptInsArgs;
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 EarlyAccessFeaturesOptIns("example", EarlyAccessFeaturesOptInsArgs.builder()
.limitScopeToNetworks("N_12345")
.organizationId("string")
.shortName("has_magnetic_beta")
.build());
ctx.export("merakiOrganizationsEarlyAccessFeaturesOptInsExample", example);
}
}
resources:
example:
type: meraki:organizations:EarlyAccessFeaturesOptIns
properties:
limitScopeToNetworks:
- N_12345
organizationId: string
shortName: has_magnetic_beta
outputs:
merakiOrganizationsEarlyAccessFeaturesOptInsExample: ${example}
Create EarlyAccessFeaturesOptIns Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EarlyAccessFeaturesOptIns(name: string, args: EarlyAccessFeaturesOptInsArgs, opts?: CustomResourceOptions);
@overload
def EarlyAccessFeaturesOptIns(resource_name: str,
args: EarlyAccessFeaturesOptInsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EarlyAccessFeaturesOptIns(resource_name: str,
opts: Optional[ResourceOptions] = None,
organization_id: Optional[str] = None,
limit_scope_to_networks: Optional[Sequence[str]] = None,
opt_in_id: Optional[str] = None,
short_name: Optional[str] = None)
func NewEarlyAccessFeaturesOptIns(ctx *Context, name string, args EarlyAccessFeaturesOptInsArgs, opts ...ResourceOption) (*EarlyAccessFeaturesOptIns, error)
public EarlyAccessFeaturesOptIns(string name, EarlyAccessFeaturesOptInsArgs args, CustomResourceOptions? opts = null)
public EarlyAccessFeaturesOptIns(String name, EarlyAccessFeaturesOptInsArgs args)
public EarlyAccessFeaturesOptIns(String name, EarlyAccessFeaturesOptInsArgs args, CustomResourceOptions options)
type: meraki:organizations:EarlyAccessFeaturesOptIns
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 EarlyAccessFeaturesOptInsArgs
- 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 EarlyAccessFeaturesOptInsArgs
- 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 EarlyAccessFeaturesOptInsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EarlyAccessFeaturesOptInsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EarlyAccessFeaturesOptInsArgs
- 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 earlyAccessFeaturesOptInsResource = new Meraki.Organizations.EarlyAccessFeaturesOptIns("earlyAccessFeaturesOptInsResource", new()
{
OrganizationId = "string",
LimitScopeToNetworks = new[]
{
"string",
},
OptInId = "string",
ShortName = "string",
});
example, err := organizations.NewEarlyAccessFeaturesOptIns(ctx, "earlyAccessFeaturesOptInsResource", &organizations.EarlyAccessFeaturesOptInsArgs{
OrganizationId: pulumi.String("string"),
LimitScopeToNetworks: pulumi.StringArray{
pulumi.String("string"),
},
OptInId: pulumi.String("string"),
ShortName: pulumi.String("string"),
})
var earlyAccessFeaturesOptInsResource = new EarlyAccessFeaturesOptIns("earlyAccessFeaturesOptInsResource", EarlyAccessFeaturesOptInsArgs.builder()
.organizationId("string")
.limitScopeToNetworks("string")
.optInId("string")
.shortName("string")
.build());
early_access_features_opt_ins_resource = meraki.organizations.EarlyAccessFeaturesOptIns("earlyAccessFeaturesOptInsResource",
organization_id="string",
limit_scope_to_networks=["string"],
opt_in_id="string",
short_name="string")
const earlyAccessFeaturesOptInsResource = new meraki.organizations.EarlyAccessFeaturesOptIns("earlyAccessFeaturesOptInsResource", {
organizationId: "string",
limitScopeToNetworks: ["string"],
optInId: "string",
shortName: "string",
});
type: meraki:organizations:EarlyAccessFeaturesOptIns
properties:
limitScopeToNetworks:
- string
optInId: string
organizationId: string
shortName: string
EarlyAccessFeaturesOptIns 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 EarlyAccessFeaturesOptIns resource accepts the following input properties:
- Organization
Id string - organizationId path parameter. Organization ID
- Limit
Scope List<string>To Networks - Networks assigned to the Early Access Feature
- Opt
In stringId - optInId path parameter. Opt in ID
- Short
Name string - Name of Early Access Feature
- Organization
Id string - organizationId path parameter. Organization ID
- Limit
Scope []stringTo Networks - Networks assigned to the Early Access Feature
- Opt
In stringId - optInId path parameter. Opt in ID
- Short
Name string - Name of Early Access Feature
- organization
Id String - organizationId path parameter. Organization ID
- limit
Scope List<String>To Networks - Networks assigned to the Early Access Feature
- opt
In StringId - optInId path parameter. Opt in ID
- short
Name String - Name of Early Access Feature
- organization
Id string - organizationId path parameter. Organization ID
- limit
Scope string[]To Networks - Networks assigned to the Early Access Feature
- opt
In stringId - optInId path parameter. Opt in ID
- short
Name string - Name of Early Access Feature
- organization_
id str - organizationId path parameter. Organization ID
- limit_
scope_ Sequence[str]to_ networks - Networks assigned to the Early Access Feature
- opt_
in_ strid - optInId path parameter. Opt in ID
- short_
name str - Name of Early Access Feature
- organization
Id String - organizationId path parameter. Organization ID
- limit
Scope List<String>To Networks - Networks assigned to the Early Access Feature
- opt
In StringId - optInId path parameter. Opt in ID
- short
Name String - Name of Early Access Feature
Outputs
All input properties are implicitly available as output properties. Additionally, the EarlyAccessFeaturesOptIns resource produces the following output properties:
- created_
at str - Time when Early Access Feature was created
- id str
- The provider-assigned unique ID for this managed resource.
Look up Existing EarlyAccessFeaturesOptIns Resource
Get an existing EarlyAccessFeaturesOptIns 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?: EarlyAccessFeaturesOptInsState, opts?: CustomResourceOptions): EarlyAccessFeaturesOptIns
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
limit_scope_to_networks: Optional[Sequence[str]] = None,
opt_in_id: Optional[str] = None,
organization_id: Optional[str] = None,
short_name: Optional[str] = None) -> EarlyAccessFeaturesOptIns
func GetEarlyAccessFeaturesOptIns(ctx *Context, name string, id IDInput, state *EarlyAccessFeaturesOptInsState, opts ...ResourceOption) (*EarlyAccessFeaturesOptIns, error)
public static EarlyAccessFeaturesOptIns Get(string name, Input<string> id, EarlyAccessFeaturesOptInsState? state, CustomResourceOptions? opts = null)
public static EarlyAccessFeaturesOptIns get(String name, Output<String> id, EarlyAccessFeaturesOptInsState 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.
- Created
At string - Time when Early Access Feature was created
- Limit
Scope List<string>To Networks - Networks assigned to the Early Access Feature
- Opt
In stringId - optInId path parameter. Opt in ID
- Organization
Id string - organizationId path parameter. Organization ID
- Short
Name string - Name of Early Access Feature
- Created
At string - Time when Early Access Feature was created
- Limit
Scope []stringTo Networks - Networks assigned to the Early Access Feature
- Opt
In stringId - optInId path parameter. Opt in ID
- Organization
Id string - organizationId path parameter. Organization ID
- Short
Name string - Name of Early Access Feature
- created
At String - Time when Early Access Feature was created
- limit
Scope List<String>To Networks - Networks assigned to the Early Access Feature
- opt
In StringId - optInId path parameter. Opt in ID
- organization
Id String - organizationId path parameter. Organization ID
- short
Name String - Name of Early Access Feature
- created
At string - Time when Early Access Feature was created
- limit
Scope string[]To Networks - Networks assigned to the Early Access Feature
- opt
In stringId - optInId path parameter. Opt in ID
- organization
Id string - organizationId path parameter. Organization ID
- short
Name string - Name of Early Access Feature
- created_
at str - Time when Early Access Feature was created
- limit_
scope_ Sequence[str]to_ networks - Networks assigned to the Early Access Feature
- opt_
in_ strid - optInId path parameter. Opt in ID
- organization_
id str - organizationId path parameter. Organization ID
- short_
name str - Name of Early Access Feature
- created
At String - Time when Early Access Feature was created
- limit
Scope List<String>To Networks - Networks assigned to the Early Access Feature
- opt
In StringId - optInId path parameter. Opt in ID
- organization
Id String - organizationId path parameter. Organization ID
- short
Name String - Name of Early Access Feature
Import
$ pulumi import meraki:organizations/earlyAccessFeaturesOptIns:EarlyAccessFeaturesOptIns example "opt_in_id,organization_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.