cm¶
This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-f5bigip repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-f5bigip repo.
- class
pulumi_f5bigip.cm.Device(resource_name, opts=None, configsync_ip=None, mirror_ip=None, mirror_secondary_ip=None, name=None, __props__=None, __name__=None, __opts__=None)¶ cm.Deviceprovides details about a specific bigipThis resource is helpful when configuring the BIG-IP device in cluster or in HA mode.
import pulumi import pulumi_f5bigip as f5bigip my_new_device = f5bigip.cm.Device("myNewDevice", configsync_ip="2.2.2.2", mirror_ip="10.10.10.10", mirror_secondary_ip="11.11.11.11", name="bigip300.f5.com")
- Parameters
resource_name (str) – The name of the resource.
opts (pulumi.ResourceOptions) – Options for the resource.
configsync_ip (pulumi.Input[str]) – IP address used for config sync
mirror_ip (pulumi.Input[str]) – IP address used for state mirroring
mirror_secondary_ip (pulumi.Input[str]) – Secondary IP address used for state mirroring
name (pulumi.Input[str]) – Address of the Device which needs to be Deviceensed
configsync_ip: pulumi.Output[str] = None¶IP address used for config sync
mirror_ip: pulumi.Output[str] = None¶IP address used for state mirroring
mirror_secondary_ip: pulumi.Output[str] = None¶Secondary IP address used for state mirroring
name: pulumi.Output[str] = None¶Address of the Device which needs to be Deviceensed
- static
get(resource_name, id, opts=None, configsync_ip=None, mirror_ip=None, mirror_secondary_ip=None, name=None)¶ Get an existing Device resource’s state with the given name, id, and optional extra properties used to qualify the lookup.
- Parameters
resource_name (str) – The unique name of the resulting resource.
id (str) – The unique provider ID of the resource to lookup.
opts (pulumi.ResourceOptions) – Options for the resource.
configsync_ip (pulumi.Input[str]) – IP address used for config sync
mirror_ip (pulumi.Input[str]) – IP address used for state mirroring
mirror_secondary_ip (pulumi.Input[str]) – Secondary IP address used for state mirroring
name (pulumi.Input[str]) – Address of the Device which needs to be Deviceensed
translate_output_property(prop)¶Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str
translate_input_property(prop)¶Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str
- class
pulumi_f5bigip.cm.DeviceGroup(resource_name, opts=None, auto_sync=None, description=None, devices=None, full_load_on_sync=None, incremental_config=None, name=None, network_failover=None, partition=None, save_on_auto_sync=None, type=None, __props__=None, __name__=None, __opts__=None)¶ cm.DeviceGroupA device group is a collection of BIG-IP devices that are configured to securely synchronize their BIG-IP configuration data, and fail over when needed.import pulumi import pulumi_f5bigip as f5bigip my_new_devicegroup = f5bigip.cm.DeviceGroup("myNewDevicegroup", auto_sync="enabled", devices=[ { "name": "bigip1.cisco.com", }, { "name": "bigip200.f5.com", }, ], full_load_on_sync="true", name="sanjose_devicegroup", type="sync-only")
- Parameters
resource_name (str) – The name of the resource.
opts (pulumi.ResourceOptions) – Options for the resource.
auto_sync (pulumi.Input[str]) – Specifies if the device-group will automatically sync configuration data to its members
description (pulumi.Input[str]) – Description of Device group
devices (pulumi.Input[list]) – Name of the device to be included in device group, this need to be configured before using devicegroup resource
full_load_on_sync (pulumi.Input[str]) – Specifies if the device-group will perform a full-load upon sync
incremental_config (pulumi.Input[float]) – Specifies the maximum size (in KB) to devote to incremental config sync cached transactions. The default is 1024 KB.
name (pulumi.Input[str]) – Is the name of the device Group
network_failover (pulumi.Input[str]) – Specifies if the device-group will use a network connection for failover
partition (pulumi.Input[str]) – Device administrative partition
save_on_auto_sync (pulumi.Input[str]) – Specifies whether the configuration should be saved upon auto-sync.
type (pulumi.Input[str]) – Specifies if the device-group will be used for failover or resource syncing
The devices object supports the following:
name(pulumi.Input[str]) - Is the name of the device GroupsetSyncLeader(pulumi.Input[bool])
auto_sync: pulumi.Output[str] = None¶Specifies if the device-group will automatically sync configuration data to its members
description: pulumi.Output[str] = None¶Description of Device group
devices: pulumi.Output[list] = None¶Name of the device to be included in device group, this need to be configured before using devicegroup resource
name(str) - Is the name of the device GroupsetSyncLeader(bool)
full_load_on_sync: pulumi.Output[str] = None¶Specifies if the device-group will perform a full-load upon sync
incremental_config: pulumi.Output[float] = None¶Specifies the maximum size (in KB) to devote to incremental config sync cached transactions. The default is 1024 KB.
name: pulumi.Output[str] = None¶Is the name of the device Group
network_failover: pulumi.Output[str] = None¶Specifies if the device-group will use a network connection for failover
partition: pulumi.Output[str] = None¶Device administrative partition
save_on_auto_sync: pulumi.Output[str] = None¶Specifies whether the configuration should be saved upon auto-sync.
type: pulumi.Output[str] = None¶Specifies if the device-group will be used for failover or resource syncing
- static
get(resource_name, id, opts=None, auto_sync=None, description=None, devices=None, full_load_on_sync=None, incremental_config=None, name=None, network_failover=None, partition=None, save_on_auto_sync=None, type=None)¶ Get an existing DeviceGroup resource’s state with the given name, id, and optional extra properties used to qualify the lookup.
- Parameters
resource_name (str) – The unique name of the resulting resource.
id (str) – The unique provider ID of the resource to lookup.
opts (pulumi.ResourceOptions) – Options for the resource.
auto_sync (pulumi.Input[str]) – Specifies if the device-group will automatically sync configuration data to its members
description (pulumi.Input[str]) – Description of Device group
devices (pulumi.Input[list]) – Name of the device to be included in device group, this need to be configured before using devicegroup resource
full_load_on_sync (pulumi.Input[str]) – Specifies if the device-group will perform a full-load upon sync
incremental_config (pulumi.Input[float]) – Specifies the maximum size (in KB) to devote to incremental config sync cached transactions. The default is 1024 KB.
name (pulumi.Input[str]) – Is the name of the device Group
network_failover (pulumi.Input[str]) – Specifies if the device-group will use a network connection for failover
partition (pulumi.Input[str]) – Device administrative partition
save_on_auto_sync (pulumi.Input[str]) – Specifies whether the configuration should be saved upon auto-sync.
type (pulumi.Input[str]) – Specifies if the device-group will be used for failover or resource syncing
The devices object supports the following:
name(pulumi.Input[str]) - Is the name of the device GroupsetSyncLeader(pulumi.Input[bool])
translate_output_property(prop)¶Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str
translate_input_property(prop)¶Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str