Unifi v0.0.3 published on Monday, Dec 5, 2022 by Pulumiverse
unifi.setting.Mgmt
Explore with Pulumi AI
unifi.setting.Mgmt
manages settings for a unifi site.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Unifi = Pulumiverse.Unifi;
return await Deployment.RunAsync(() =>
{
var exampleSite = new Unifi.Site("exampleSite", new()
{
Description = "example",
});
var exampleMgmt = new Unifi.Setting.Mgmt("exampleMgmt", new()
{
Site = exampleSite.Name,
AutoUpgrade = true,
});
});
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-unifi/sdk/go/unifi"
"github.com/pulumiverse/pulumi-unifi/sdk/go/unifi/setting"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleSite, err := unifi.NewSite(ctx, "exampleSite", &unifi.SiteArgs{
Description: pulumi.String("example"),
})
if err != nil {
return err
}
_, err = setting.NewMgmt(ctx, "exampleMgmt", &setting.MgmtArgs{
Site: exampleSite.Name,
AutoUpgrade: pulumi.Bool(true),
})
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.unifi.Site;
import com.pulumi.unifi.SiteArgs;
import com.pulumi.unifi.setting.Mgmt;
import com.pulumi.unifi.setting.MgmtArgs;
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 exampleSite = new Site("exampleSite", SiteArgs.builder()
.description("example")
.build());
var exampleMgmt = new Mgmt("exampleMgmt", MgmtArgs.builder()
.site(exampleSite.name())
.autoUpgrade(true)
.build());
}
}
import pulumi
import pulumiverse_unifi as unifi
example_site = unifi.Site("exampleSite", description="example")
example_mgmt = unifi.setting.Mgmt("exampleMgmt",
site=example_site.name,
auto_upgrade=True)
import * as pulumi from "@pulumi/pulumi";
import * as unifi from "@pulumiverse/unifi";
const exampleSite = new unifi.Site("exampleSite", {description: "example"});
const exampleMgmt = new unifi.setting.Mgmt("exampleMgmt", {
site: exampleSite.name,
autoUpgrade: true,
});
resources:
exampleSite:
type: unifi:Site
properties:
description: example
exampleMgmt:
type: unifi:setting:Mgmt
properties:
site: ${exampleSite.name}
autoUpgrade: true
Create Mgmt Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Mgmt(name: string, args?: MgmtArgs, opts?: CustomResourceOptions);
@overload
def Mgmt(resource_name: str,
args: Optional[MgmtArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Mgmt(resource_name: str,
opts: Optional[ResourceOptions] = None,
auto_upgrade: Optional[bool] = None,
site: Optional[str] = None,
ssh_enabled: Optional[bool] = None,
ssh_keys: Optional[Sequence[MgmtSshKeyArgs]] = None)
func NewMgmt(ctx *Context, name string, args *MgmtArgs, opts ...ResourceOption) (*Mgmt, error)
public Mgmt(string name, MgmtArgs? args = null, CustomResourceOptions? opts = null)
type: unifi:setting:Mgmt
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 MgmtArgs
- 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 MgmtArgs
- 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 MgmtArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MgmtArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MgmtArgs
- 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 mgmtResource = new Unifi.Setting.Mgmt("mgmtResource", new()
{
AutoUpgrade = false,
Site = "string",
SshEnabled = false,
SshKeys = new[]
{
new Unifi.Setting.Inputs.MgmtSshKeyArgs
{
Name = "string",
Type = "string",
Comment = "string",
Key = "string",
},
},
});
example, err := setting.NewMgmt(ctx, "mgmtResource", &setting.MgmtArgs{
AutoUpgrade: pulumi.Bool(false),
Site: pulumi.String("string"),
SshEnabled: pulumi.Bool(false),
SshKeys: setting.MgmtSshKeyArray{
&setting.MgmtSshKeyArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
Comment: pulumi.String("string"),
Key: pulumi.String("string"),
},
},
})
var mgmtResource = new Mgmt("mgmtResource", MgmtArgs.builder()
.autoUpgrade(false)
.site("string")
.sshEnabled(false)
.sshKeys(MgmtSshKeyArgs.builder()
.name("string")
.type("string")
.comment("string")
.key("string")
.build())
.build());
mgmt_resource = unifi.setting.Mgmt("mgmtResource",
auto_upgrade=False,
site="string",
ssh_enabled=False,
ssh_keys=[unifi.setting.MgmtSshKeyArgs(
name="string",
type="string",
comment="string",
key="string",
)])
const mgmtResource = new unifi.setting.Mgmt("mgmtResource", {
autoUpgrade: false,
site: "string",
sshEnabled: false,
sshKeys: [{
name: "string",
type: "string",
comment: "string",
key: "string",
}],
});
type: unifi:setting:Mgmt
properties:
autoUpgrade: false
site: string
sshEnabled: false
sshKeys:
- comment: string
key: string
name: string
type: string
Mgmt 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 Mgmt resource accepts the following input properties:
- Auto
Upgrade bool - Automatically upgrade device firmware.
- Site string
- The name of the site to associate the settings with.
- Ssh
Enabled bool - Enable SSH authentication.
- Ssh
Keys List<Pulumiverse.Unifi. Setting. Inputs. Mgmt Ssh Key> - SSH key.
- Auto
Upgrade bool - Automatically upgrade device firmware.
- Site string
- The name of the site to associate the settings with.
- Ssh
Enabled bool - Enable SSH authentication.
- Ssh
Keys []MgmtSsh Key Args - SSH key.
- auto
Upgrade Boolean - Automatically upgrade device firmware.
- site String
- The name of the site to associate the settings with.
- ssh
Enabled Boolean - Enable SSH authentication.
- ssh
Keys List<MgmtSsh Key> - SSH key.
- auto
Upgrade boolean - Automatically upgrade device firmware.
- site string
- The name of the site to associate the settings with.
- ssh
Enabled boolean - Enable SSH authentication.
- ssh
Keys MgmtSsh Key[] - SSH key.
- auto_
upgrade bool - Automatically upgrade device firmware.
- site str
- The name of the site to associate the settings with.
- ssh_
enabled bool - Enable SSH authentication.
- ssh_
keys Sequence[MgmtSsh Key Args] - SSH key.
- auto
Upgrade Boolean - Automatically upgrade device firmware.
- site String
- The name of the site to associate the settings with.
- ssh
Enabled Boolean - Enable SSH authentication.
- ssh
Keys List<Property Map> - SSH key.
Outputs
All input properties are implicitly available as output properties. Additionally, the Mgmt resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Mgmt Resource
Get an existing Mgmt 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?: MgmtState, opts?: CustomResourceOptions): Mgmt
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auto_upgrade: Optional[bool] = None,
site: Optional[str] = None,
ssh_enabled: Optional[bool] = None,
ssh_keys: Optional[Sequence[MgmtSshKeyArgs]] = None) -> Mgmt
func GetMgmt(ctx *Context, name string, id IDInput, state *MgmtState, opts ...ResourceOption) (*Mgmt, error)
public static Mgmt Get(string name, Input<string> id, MgmtState? state, CustomResourceOptions? opts = null)
public static Mgmt get(String name, Output<String> id, MgmtState 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.
- Auto
Upgrade bool - Automatically upgrade device firmware.
- Site string
- The name of the site to associate the settings with.
- Ssh
Enabled bool - Enable SSH authentication.
- Ssh
Keys List<Pulumiverse.Unifi. Setting. Inputs. Mgmt Ssh Key> - SSH key.
- Auto
Upgrade bool - Automatically upgrade device firmware.
- Site string
- The name of the site to associate the settings with.
- Ssh
Enabled bool - Enable SSH authentication.
- Ssh
Keys []MgmtSsh Key Args - SSH key.
- auto
Upgrade Boolean - Automatically upgrade device firmware.
- site String
- The name of the site to associate the settings with.
- ssh
Enabled Boolean - Enable SSH authentication.
- ssh
Keys List<MgmtSsh Key> - SSH key.
- auto
Upgrade boolean - Automatically upgrade device firmware.
- site string
- The name of the site to associate the settings with.
- ssh
Enabled boolean - Enable SSH authentication.
- ssh
Keys MgmtSsh Key[] - SSH key.
- auto_
upgrade bool - Automatically upgrade device firmware.
- site str
- The name of the site to associate the settings with.
- ssh_
enabled bool - Enable SSH authentication.
- ssh_
keys Sequence[MgmtSsh Key Args] - SSH key.
- auto
Upgrade Boolean - Automatically upgrade device firmware.
- site String
- The name of the site to associate the settings with.
- ssh
Enabled Boolean - Enable SSH authentication.
- ssh
Keys List<Property Map> - SSH key.
Supporting Types
MgmtSshKey, MgmtSshKeyArgs
Package Details
- Repository
- unifi pulumiverse/pulumi-unifi
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
unifi
Terraform Provider.