1. Packages
  2. Powerscale Provider
  3. API Docs
  4. SynciqGlobalSettings
powerscale 1.7.0 published on Monday, Apr 14, 2025 by dell

powerscale.SynciqGlobalSettings

Explore with Pulumi AI

This resource is used to manage the SyncIQ Global Settings entity of PowerScale Array. We can Update the SyncIQ Global Settings using this resource. We can also import existing SyncIQ Global Settings from PowerScale array.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as powerscale from "@pulumi/powerscale";

// PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array
const example = new powerscale.SynciqGlobalSettings("example", {
    preferredRpoAlert: 3,
    renegotiationPeriod: 28800,
    reportEmails: [
        "example1@mail.com",
        "example2@mail.com",
    ],
    reportMaxCount: 2000,
    restrictTargetNetwork: true,
    rpoAlerts: true,
    service: "paused",
    sourceNetwork: {
        pool: "pool0",
        subnet: "subnet0",
    },
});
Copy
import pulumi
import pulumi_powerscale as powerscale

# PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array
example = powerscale.SynciqGlobalSettings("example",
    preferred_rpo_alert=3,
    renegotiation_period=28800,
    report_emails=[
        "example1@mail.com",
        "example2@mail.com",
    ],
    report_max_count=2000,
    restrict_target_network=True,
    rpo_alerts=True,
    service="paused",
    source_network={
        "pool": "pool0",
        "subnet": "subnet0",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		// PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array
		_, err := powerscale.NewSynciqGlobalSettings(ctx, "example", &powerscale.SynciqGlobalSettingsArgs{
			PreferredRpoAlert:   pulumi.Float64(3),
			RenegotiationPeriod: pulumi.Float64(28800),
			ReportEmails: pulumi.StringArray{
				pulumi.String("example1@mail.com"),
				pulumi.String("example2@mail.com"),
			},
			ReportMaxCount:        pulumi.Float64(2000),
			RestrictTargetNetwork: pulumi.Bool(true),
			RpoAlerts:             pulumi.Bool(true),
			Service:               pulumi.String("paused"),
			SourceNetwork: &powerscale.SynciqGlobalSettingsSourceNetworkArgs{
				Pool:   pulumi.String("pool0"),
				Subnet: pulumi.String("subnet0"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Powerscale = Pulumi.Powerscale;

return await Deployment.RunAsync(() => 
{
    // PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array
    var example = new Powerscale.SynciqGlobalSettings("example", new()
    {
        PreferredRpoAlert = 3,
        RenegotiationPeriod = 28800,
        ReportEmails = new[]
        {
            "example1@mail.com",
            "example2@mail.com",
        },
        ReportMaxCount = 2000,
        RestrictTargetNetwork = true,
        RpoAlerts = true,
        Service = "paused",
        SourceNetwork = new Powerscale.Inputs.SynciqGlobalSettingsSourceNetworkArgs
        {
            Pool = "pool0",
            Subnet = "subnet0",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.powerscale.SynciqGlobalSettings;
import com.pulumi.powerscale.SynciqGlobalSettingsArgs;
import com.pulumi.powerscale.inputs.SynciqGlobalSettingsSourceNetworkArgs;
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) {
        // PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array
        var example = new SynciqGlobalSettings("example", SynciqGlobalSettingsArgs.builder()
            .preferredRpoAlert(3)
            .renegotiationPeriod(28800)
            .reportEmails(            
                "example1@mail.com",
                "example2@mail.com")
            .reportMaxCount(2000)
            .restrictTargetNetwork(true)
            .rpoAlerts(true)
            .service("paused")
            .sourceNetwork(SynciqGlobalSettingsSourceNetworkArgs.builder()
                .pool("pool0")
                .subnet("subnet0")
                .build())
            .build());

    }
}
Copy
resources:
  # PowerScale SynIQ global settings allows you to manage the global settings on the Powerscale array
  example:
    type: powerscale:SynciqGlobalSettings
    properties:
      preferredRpoAlert: 3
      renegotiationPeriod: 28800
      reportEmails:
        - example1@mail.com
        - example2@mail.com
      reportMaxCount: 2000
      restrictTargetNetwork: true
      rpoAlerts: true
      service: paused
      sourceNetwork:
        pool: pool0
        subnet: subnet0
Copy

Create SynciqGlobalSettings Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new SynciqGlobalSettings(name: string, args?: SynciqGlobalSettingsArgs, opts?: CustomResourceOptions);
@overload
def SynciqGlobalSettings(resource_name: str,
                         args: Optional[SynciqGlobalSettingsArgs] = None,
                         opts: Optional[ResourceOptions] = None)

@overload
def SynciqGlobalSettings(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         bandwidth_reservation_reserve_absolute: Optional[float] = None,
                         bandwidth_reservation_reserve_percentage: Optional[float] = None,
                         cluster_certificate_id: Optional[str] = None,
                         encryption_cipher_list: Optional[str] = None,
                         encryption_required: Optional[bool] = None,
                         force_interface: Optional[bool] = None,
                         ocsp_address: Optional[str] = None,
                         ocsp_issuer_certificate_id: Optional[str] = None,
                         preferred_rpo_alert: Optional[float] = None,
                         renegotiation_period: Optional[float] = None,
                         report_emails: Optional[Sequence[str]] = None,
                         report_max_age: Optional[float] = None,
                         report_max_count: Optional[float] = None,
                         restrict_target_network: Optional[bool] = None,
                         rpo_alerts: Optional[bool] = None,
                         service: Optional[str] = None,
                         service_history_max_age: Optional[float] = None,
                         service_history_max_count: Optional[float] = None,
                         source_network: Optional[SynciqGlobalSettingsSourceNetworkArgs] = None,
                         use_workers_per_node: Optional[bool] = None)
func NewSynciqGlobalSettings(ctx *Context, name string, args *SynciqGlobalSettingsArgs, opts ...ResourceOption) (*SynciqGlobalSettings, error)
public SynciqGlobalSettings(string name, SynciqGlobalSettingsArgs? args = null, CustomResourceOptions? opts = null)
public SynciqGlobalSettings(String name, SynciqGlobalSettingsArgs args)
public SynciqGlobalSettings(String name, SynciqGlobalSettingsArgs args, CustomResourceOptions options)
type: powerscale:SynciqGlobalSettings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args SynciqGlobalSettingsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args SynciqGlobalSettingsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args SynciqGlobalSettingsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args SynciqGlobalSettingsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SynciqGlobalSettingsArgs
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 synciqGlobalSettingsResource = new Powerscale.SynciqGlobalSettings("synciqGlobalSettingsResource", new()
{
    BandwidthReservationReserveAbsolute = 0,
    BandwidthReservationReservePercentage = 0,
    ClusterCertificateId = "string",
    EncryptionCipherList = "string",
    EncryptionRequired = false,
    ForceInterface = false,
    OcspAddress = "string",
    OcspIssuerCertificateId = "string",
    PreferredRpoAlert = 0,
    RenegotiationPeriod = 0,
    ReportEmails = new[]
    {
        "string",
    },
    ReportMaxAge = 0,
    ReportMaxCount = 0,
    RestrictTargetNetwork = false,
    RpoAlerts = false,
    Service = "string",
    ServiceHistoryMaxAge = 0,
    ServiceHistoryMaxCount = 0,
    SourceNetwork = new Powerscale.Inputs.SynciqGlobalSettingsSourceNetworkArgs
    {
        Pool = "string",
        Subnet = "string",
    },
    UseWorkersPerNode = false,
});
Copy
example, err := powerscale.NewSynciqGlobalSettings(ctx, "synciqGlobalSettingsResource", &powerscale.SynciqGlobalSettingsArgs{
	BandwidthReservationReserveAbsolute:   pulumi.Float64(0),
	BandwidthReservationReservePercentage: pulumi.Float64(0),
	ClusterCertificateId:                  pulumi.String("string"),
	EncryptionCipherList:                  pulumi.String("string"),
	EncryptionRequired:                    pulumi.Bool(false),
	ForceInterface:                        pulumi.Bool(false),
	OcspAddress:                           pulumi.String("string"),
	OcspIssuerCertificateId:               pulumi.String("string"),
	PreferredRpoAlert:                     pulumi.Float64(0),
	RenegotiationPeriod:                   pulumi.Float64(0),
	ReportEmails: pulumi.StringArray{
		pulumi.String("string"),
	},
	ReportMaxAge:           pulumi.Float64(0),
	ReportMaxCount:         pulumi.Float64(0),
	RestrictTargetNetwork:  pulumi.Bool(false),
	RpoAlerts:              pulumi.Bool(false),
	Service:                pulumi.String("string"),
	ServiceHistoryMaxAge:   pulumi.Float64(0),
	ServiceHistoryMaxCount: pulumi.Float64(0),
	SourceNetwork: &powerscale.SynciqGlobalSettingsSourceNetworkArgs{
		Pool:   pulumi.String("string"),
		Subnet: pulumi.String("string"),
	},
	UseWorkersPerNode: pulumi.Bool(false),
})
Copy
var synciqGlobalSettingsResource = new SynciqGlobalSettings("synciqGlobalSettingsResource", SynciqGlobalSettingsArgs.builder()
    .bandwidthReservationReserveAbsolute(0)
    .bandwidthReservationReservePercentage(0)
    .clusterCertificateId("string")
    .encryptionCipherList("string")
    .encryptionRequired(false)
    .forceInterface(false)
    .ocspAddress("string")
    .ocspIssuerCertificateId("string")
    .preferredRpoAlert(0)
    .renegotiationPeriod(0)
    .reportEmails("string")
    .reportMaxAge(0)
    .reportMaxCount(0)
    .restrictTargetNetwork(false)
    .rpoAlerts(false)
    .service("string")
    .serviceHistoryMaxAge(0)
    .serviceHistoryMaxCount(0)
    .sourceNetwork(SynciqGlobalSettingsSourceNetworkArgs.builder()
        .pool("string")
        .subnet("string")
        .build())
    .useWorkersPerNode(false)
    .build());
Copy
synciq_global_settings_resource = powerscale.SynciqGlobalSettings("synciqGlobalSettingsResource",
    bandwidth_reservation_reserve_absolute=0,
    bandwidth_reservation_reserve_percentage=0,
    cluster_certificate_id="string",
    encryption_cipher_list="string",
    encryption_required=False,
    force_interface=False,
    ocsp_address="string",
    ocsp_issuer_certificate_id="string",
    preferred_rpo_alert=0,
    renegotiation_period=0,
    report_emails=["string"],
    report_max_age=0,
    report_max_count=0,
    restrict_target_network=False,
    rpo_alerts=False,
    service="string",
    service_history_max_age=0,
    service_history_max_count=0,
    source_network={
        "pool": "string",
        "subnet": "string",
    },
    use_workers_per_node=False)
Copy
const synciqGlobalSettingsResource = new powerscale.SynciqGlobalSettings("synciqGlobalSettingsResource", {
    bandwidthReservationReserveAbsolute: 0,
    bandwidthReservationReservePercentage: 0,
    clusterCertificateId: "string",
    encryptionCipherList: "string",
    encryptionRequired: false,
    forceInterface: false,
    ocspAddress: "string",
    ocspIssuerCertificateId: "string",
    preferredRpoAlert: 0,
    renegotiationPeriod: 0,
    reportEmails: ["string"],
    reportMaxAge: 0,
    reportMaxCount: 0,
    restrictTargetNetwork: false,
    rpoAlerts: false,
    service: "string",
    serviceHistoryMaxAge: 0,
    serviceHistoryMaxCount: 0,
    sourceNetwork: {
        pool: "string",
        subnet: "string",
    },
    useWorkersPerNode: false,
});
Copy
type: powerscale:SynciqGlobalSettings
properties:
    bandwidthReservationReserveAbsolute: 0
    bandwidthReservationReservePercentage: 0
    clusterCertificateId: string
    encryptionCipherList: string
    encryptionRequired: false
    forceInterface: false
    ocspAddress: string
    ocspIssuerCertificateId: string
    preferredRpoAlert: 0
    renegotiationPeriod: 0
    reportEmails:
        - string
    reportMaxAge: 0
    reportMaxCount: 0
    restrictTargetNetwork: false
    rpoAlerts: false
    service: string
    serviceHistoryMaxAge: 0
    serviceHistoryMaxCount: 0
    sourceNetwork:
        pool: string
        subnet: string
    useWorkersPerNode: false
Copy

SynciqGlobalSettings 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 SynciqGlobalSettings resource accepts the following input properties:

BandwidthReservationReserveAbsolute double
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
BandwidthReservationReservePercentage double
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
ClusterCertificateId string
The ID of this cluster's certificate being used for encryption.
EncryptionCipherList string
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
EncryptionRequired bool
If true, requires all SyncIQ policies to utilize encrypted communications.
ForceInterface bool
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
OcspAddress string
The address of the OCSP responder to which to connect.
OcspIssuerCertificateId string
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
PreferredRpoAlert double
If specified, display as default RPO Alert value for new policy creation via WebUI.
RenegotiationPeriod double
If specified, the duration to persist encrypted connection before forcing a renegotiation.
ReportEmails List<string>
Email sync reports to these addresses.
ReportMaxAge double
ID of the Cluster Email Settings.
ReportMaxCount double
The default length of time (in seconds) a policy report will be stored.
RestrictTargetNetwork bool
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
RpoAlerts bool
If disabled, no RPO alerts will be generated.
Service string
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
ServiceHistoryMaxAge double
Maximum age of service information to maintain, in seconds.
ServiceHistoryMaxCount double
Maximum number of historical service information records to maintain.
SourceNetwork SynciqGlobalSettingsSourceNetwork
Restricts replication policies on the local cluster to running on the specified subnet and pool.
UseWorkersPerNode bool
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.
BandwidthReservationReserveAbsolute float64
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
BandwidthReservationReservePercentage float64
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
ClusterCertificateId string
The ID of this cluster's certificate being used for encryption.
EncryptionCipherList string
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
EncryptionRequired bool
If true, requires all SyncIQ policies to utilize encrypted communications.
ForceInterface bool
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
OcspAddress string
The address of the OCSP responder to which to connect.
OcspIssuerCertificateId string
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
PreferredRpoAlert float64
If specified, display as default RPO Alert value for new policy creation via WebUI.
RenegotiationPeriod float64
If specified, the duration to persist encrypted connection before forcing a renegotiation.
ReportEmails []string
Email sync reports to these addresses.
ReportMaxAge float64
ID of the Cluster Email Settings.
ReportMaxCount float64
The default length of time (in seconds) a policy report will be stored.
RestrictTargetNetwork bool
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
RpoAlerts bool
If disabled, no RPO alerts will be generated.
Service string
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
ServiceHistoryMaxAge float64
Maximum age of service information to maintain, in seconds.
ServiceHistoryMaxCount float64
Maximum number of historical service information records to maintain.
SourceNetwork SynciqGlobalSettingsSourceNetworkArgs
Restricts replication policies on the local cluster to running on the specified subnet and pool.
UseWorkersPerNode bool
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.
bandwidthReservationReserveAbsolute Double
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
bandwidthReservationReservePercentage Double
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
clusterCertificateId String
The ID of this cluster's certificate being used for encryption.
encryptionCipherList String
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
encryptionRequired Boolean
If true, requires all SyncIQ policies to utilize encrypted communications.
forceInterface Boolean
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
ocspAddress String
The address of the OCSP responder to which to connect.
ocspIssuerCertificateId String
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
preferredRpoAlert Double
If specified, display as default RPO Alert value for new policy creation via WebUI.
renegotiationPeriod Double
If specified, the duration to persist encrypted connection before forcing a renegotiation.
reportEmails List<String>
Email sync reports to these addresses.
reportMaxAge Double
ID of the Cluster Email Settings.
reportMaxCount Double
The default length of time (in seconds) a policy report will be stored.
restrictTargetNetwork Boolean
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
rpoAlerts Boolean
If disabled, no RPO alerts will be generated.
service String
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
serviceHistoryMaxAge Double
Maximum age of service information to maintain, in seconds.
serviceHistoryMaxCount Double
Maximum number of historical service information records to maintain.
sourceNetwork SynciqGlobalSettingsSourceNetwork
Restricts replication policies on the local cluster to running on the specified subnet and pool.
useWorkersPerNode Boolean
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.
bandwidthReservationReserveAbsolute number
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
bandwidthReservationReservePercentage number
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
clusterCertificateId string
The ID of this cluster's certificate being used for encryption.
encryptionCipherList string
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
encryptionRequired boolean
If true, requires all SyncIQ policies to utilize encrypted communications.
forceInterface boolean
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
ocspAddress string
The address of the OCSP responder to which to connect.
ocspIssuerCertificateId string
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
preferredRpoAlert number
If specified, display as default RPO Alert value for new policy creation via WebUI.
renegotiationPeriod number
If specified, the duration to persist encrypted connection before forcing a renegotiation.
reportEmails string[]
Email sync reports to these addresses.
reportMaxAge number
ID of the Cluster Email Settings.
reportMaxCount number
The default length of time (in seconds) a policy report will be stored.
restrictTargetNetwork boolean
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
rpoAlerts boolean
If disabled, no RPO alerts will be generated.
service string
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
serviceHistoryMaxAge number
Maximum age of service information to maintain, in seconds.
serviceHistoryMaxCount number
Maximum number of historical service information records to maintain.
sourceNetwork SynciqGlobalSettingsSourceNetwork
Restricts replication policies on the local cluster to running on the specified subnet and pool.
useWorkersPerNode boolean
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.
bandwidth_reservation_reserve_absolute float
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
bandwidth_reservation_reserve_percentage float
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
cluster_certificate_id str
The ID of this cluster's certificate being used for encryption.
encryption_cipher_list str
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
encryption_required bool
If true, requires all SyncIQ policies to utilize encrypted communications.
force_interface bool
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
ocsp_address str
The address of the OCSP responder to which to connect.
ocsp_issuer_certificate_id str
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
preferred_rpo_alert float
If specified, display as default RPO Alert value for new policy creation via WebUI.
renegotiation_period float
If specified, the duration to persist encrypted connection before forcing a renegotiation.
report_emails Sequence[str]
Email sync reports to these addresses.
report_max_age float
ID of the Cluster Email Settings.
report_max_count float
The default length of time (in seconds) a policy report will be stored.
restrict_target_network bool
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
rpo_alerts bool
If disabled, no RPO alerts will be generated.
service str
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
service_history_max_age float
Maximum age of service information to maintain, in seconds.
service_history_max_count float
Maximum number of historical service information records to maintain.
source_network SynciqGlobalSettingsSourceNetworkArgs
Restricts replication policies on the local cluster to running on the specified subnet and pool.
use_workers_per_node bool
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.
bandwidthReservationReserveAbsolute Number
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
bandwidthReservationReservePercentage Number
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
clusterCertificateId String
The ID of this cluster's certificate being used for encryption.
encryptionCipherList String
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
encryptionRequired Boolean
If true, requires all SyncIQ policies to utilize encrypted communications.
forceInterface Boolean
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
ocspAddress String
The address of the OCSP responder to which to connect.
ocspIssuerCertificateId String
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
preferredRpoAlert Number
If specified, display as default RPO Alert value for new policy creation via WebUI.
renegotiationPeriod Number
If specified, the duration to persist encrypted connection before forcing a renegotiation.
reportEmails List<String>
Email sync reports to these addresses.
reportMaxAge Number
ID of the Cluster Email Settings.
reportMaxCount Number
The default length of time (in seconds) a policy report will be stored.
restrictTargetNetwork Boolean
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
rpoAlerts Boolean
If disabled, no RPO alerts will be generated.
service String
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
serviceHistoryMaxAge Number
Maximum age of service information to maintain, in seconds.
serviceHistoryMaxCount Number
Maximum number of historical service information records to maintain.
sourceNetwork Property Map
Restricts replication policies on the local cluster to running on the specified subnet and pool.
useWorkersPerNode Boolean
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.

Outputs

All input properties are implicitly available as output properties. Additionally, the SynciqGlobalSettings 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 SynciqGlobalSettings Resource

Get an existing SynciqGlobalSettings 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?: SynciqGlobalSettingsState, opts?: CustomResourceOptions): SynciqGlobalSettings
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bandwidth_reservation_reserve_absolute: Optional[float] = None,
        bandwidth_reservation_reserve_percentage: Optional[float] = None,
        cluster_certificate_id: Optional[str] = None,
        encryption_cipher_list: Optional[str] = None,
        encryption_required: Optional[bool] = None,
        force_interface: Optional[bool] = None,
        ocsp_address: Optional[str] = None,
        ocsp_issuer_certificate_id: Optional[str] = None,
        preferred_rpo_alert: Optional[float] = None,
        renegotiation_period: Optional[float] = None,
        report_emails: Optional[Sequence[str]] = None,
        report_max_age: Optional[float] = None,
        report_max_count: Optional[float] = None,
        restrict_target_network: Optional[bool] = None,
        rpo_alerts: Optional[bool] = None,
        service: Optional[str] = None,
        service_history_max_age: Optional[float] = None,
        service_history_max_count: Optional[float] = None,
        source_network: Optional[SynciqGlobalSettingsSourceNetworkArgs] = None,
        use_workers_per_node: Optional[bool] = None) -> SynciqGlobalSettings
func GetSynciqGlobalSettings(ctx *Context, name string, id IDInput, state *SynciqGlobalSettingsState, opts ...ResourceOption) (*SynciqGlobalSettings, error)
public static SynciqGlobalSettings Get(string name, Input<string> id, SynciqGlobalSettingsState? state, CustomResourceOptions? opts = null)
public static SynciqGlobalSettings get(String name, Output<String> id, SynciqGlobalSettingsState state, CustomResourceOptions options)
resources:  _:    type: powerscale:SynciqGlobalSettings    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
BandwidthReservationReserveAbsolute double
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
BandwidthReservationReservePercentage double
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
ClusterCertificateId string
The ID of this cluster's certificate being used for encryption.
EncryptionCipherList string
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
EncryptionRequired bool
If true, requires all SyncIQ policies to utilize encrypted communications.
ForceInterface bool
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
OcspAddress string
The address of the OCSP responder to which to connect.
OcspIssuerCertificateId string
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
PreferredRpoAlert double
If specified, display as default RPO Alert value for new policy creation via WebUI.
RenegotiationPeriod double
If specified, the duration to persist encrypted connection before forcing a renegotiation.
ReportEmails List<string>
Email sync reports to these addresses.
ReportMaxAge double
ID of the Cluster Email Settings.
ReportMaxCount double
The default length of time (in seconds) a policy report will be stored.
RestrictTargetNetwork bool
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
RpoAlerts bool
If disabled, no RPO alerts will be generated.
Service string
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
ServiceHistoryMaxAge double
Maximum age of service information to maintain, in seconds.
ServiceHistoryMaxCount double
Maximum number of historical service information records to maintain.
SourceNetwork SynciqGlobalSettingsSourceNetwork
Restricts replication policies on the local cluster to running on the specified subnet and pool.
UseWorkersPerNode bool
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.
BandwidthReservationReserveAbsolute float64
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
BandwidthReservationReservePercentage float64
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
ClusterCertificateId string
The ID of this cluster's certificate being used for encryption.
EncryptionCipherList string
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
EncryptionRequired bool
If true, requires all SyncIQ policies to utilize encrypted communications.
ForceInterface bool
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
OcspAddress string
The address of the OCSP responder to which to connect.
OcspIssuerCertificateId string
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
PreferredRpoAlert float64
If specified, display as default RPO Alert value for new policy creation via WebUI.
RenegotiationPeriod float64
If specified, the duration to persist encrypted connection before forcing a renegotiation.
ReportEmails []string
Email sync reports to these addresses.
ReportMaxAge float64
ID of the Cluster Email Settings.
ReportMaxCount float64
The default length of time (in seconds) a policy report will be stored.
RestrictTargetNetwork bool
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
RpoAlerts bool
If disabled, no RPO alerts will be generated.
Service string
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
ServiceHistoryMaxAge float64
Maximum age of service information to maintain, in seconds.
ServiceHistoryMaxCount float64
Maximum number of historical service information records to maintain.
SourceNetwork SynciqGlobalSettingsSourceNetworkArgs
Restricts replication policies on the local cluster to running on the specified subnet and pool.
UseWorkersPerNode bool
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.
bandwidthReservationReserveAbsolute Double
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
bandwidthReservationReservePercentage Double
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
clusterCertificateId String
The ID of this cluster's certificate being used for encryption.
encryptionCipherList String
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
encryptionRequired Boolean
If true, requires all SyncIQ policies to utilize encrypted communications.
forceInterface Boolean
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
ocspAddress String
The address of the OCSP responder to which to connect.
ocspIssuerCertificateId String
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
preferredRpoAlert Double
If specified, display as default RPO Alert value for new policy creation via WebUI.
renegotiationPeriod Double
If specified, the duration to persist encrypted connection before forcing a renegotiation.
reportEmails List<String>
Email sync reports to these addresses.
reportMaxAge Double
ID of the Cluster Email Settings.
reportMaxCount Double
The default length of time (in seconds) a policy report will be stored.
restrictTargetNetwork Boolean
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
rpoAlerts Boolean
If disabled, no RPO alerts will be generated.
service String
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
serviceHistoryMaxAge Double
Maximum age of service information to maintain, in seconds.
serviceHistoryMaxCount Double
Maximum number of historical service information records to maintain.
sourceNetwork SynciqGlobalSettingsSourceNetwork
Restricts replication policies on the local cluster to running on the specified subnet and pool.
useWorkersPerNode Boolean
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.
bandwidthReservationReserveAbsolute number
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
bandwidthReservationReservePercentage number
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
clusterCertificateId string
The ID of this cluster's certificate being used for encryption.
encryptionCipherList string
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
encryptionRequired boolean
If true, requires all SyncIQ policies to utilize encrypted communications.
forceInterface boolean
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
ocspAddress string
The address of the OCSP responder to which to connect.
ocspIssuerCertificateId string
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
preferredRpoAlert number
If specified, display as default RPO Alert value for new policy creation via WebUI.
renegotiationPeriod number
If specified, the duration to persist encrypted connection before forcing a renegotiation.
reportEmails string[]
Email sync reports to these addresses.
reportMaxAge number
ID of the Cluster Email Settings.
reportMaxCount number
The default length of time (in seconds) a policy report will be stored.
restrictTargetNetwork boolean
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
rpoAlerts boolean
If disabled, no RPO alerts will be generated.
service string
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
serviceHistoryMaxAge number
Maximum age of service information to maintain, in seconds.
serviceHistoryMaxCount number
Maximum number of historical service information records to maintain.
sourceNetwork SynciqGlobalSettingsSourceNetwork
Restricts replication policies on the local cluster to running on the specified subnet and pool.
useWorkersPerNode boolean
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.
bandwidth_reservation_reserve_absolute float
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
bandwidth_reservation_reserve_percentage float
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
cluster_certificate_id str
The ID of this cluster's certificate being used for encryption.
encryption_cipher_list str
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
encryption_required bool
If true, requires all SyncIQ policies to utilize encrypted communications.
force_interface bool
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
ocsp_address str
The address of the OCSP responder to which to connect.
ocsp_issuer_certificate_id str
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
preferred_rpo_alert float
If specified, display as default RPO Alert value for new policy creation via WebUI.
renegotiation_period float
If specified, the duration to persist encrypted connection before forcing a renegotiation.
report_emails Sequence[str]
Email sync reports to these addresses.
report_max_age float
ID of the Cluster Email Settings.
report_max_count float
The default length of time (in seconds) a policy report will be stored.
restrict_target_network bool
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
rpo_alerts bool
If disabled, no RPO alerts will be generated.
service str
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
service_history_max_age float
Maximum age of service information to maintain, in seconds.
service_history_max_count float
Maximum number of historical service information records to maintain.
source_network SynciqGlobalSettingsSourceNetworkArgs
Restricts replication policies on the local cluster to running on the specified subnet and pool.
use_workers_per_node bool
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.
bandwidthReservationReserveAbsolute Number
The amount of SyncIQ bandwidth to reserve in kb/s for policies that did not specify a bandwidth reservation. This field takes precedence over bandwidthreservationreserve_percentage.
bandwidthReservationReservePercentage Number
The percentage of SyncIQ bandwidth to reserve for policies that did not specify a bandwidth reservation.
clusterCertificateId String
The ID of this cluster's certificate being used for encryption.
encryptionCipherList String
The cipher list being used with encryption. For SyncIQ targets, this list serves as a list of supported ciphers. For SyncIQ sources, the list of ciphers will be attempted to be used in order.
encryptionRequired Boolean
If true, requires all SyncIQ policies to utilize encrypted communications.
forceInterface Boolean
NOTE: This field should not be changed without the help of PowerScale support. Default for the "forceinterface" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. Determines whether data is sent only through the subnet and pool specified in the "sourcenetwork" field. This option can be useful if there are multiple interfaces for the given source subnet.
ocspAddress String
The address of the OCSP responder to which to connect.
ocspIssuerCertificateId String
The ID of the certificate authority that issued the certificate whose revocation status is being checked.
preferredRpoAlert Number
If specified, display as default RPO Alert value for new policy creation via WebUI.
renegotiationPeriod Number
If specified, the duration to persist encrypted connection before forcing a renegotiation.
reportEmails List<String>
Email sync reports to these addresses.
reportMaxAge Number
ID of the Cluster Email Settings.
reportMaxCount Number
The default length of time (in seconds) a policy report will be stored.
restrictTargetNetwork Boolean
Default for the "restricttargetnetwork" property that will be applied to each new sync policy unless otherwise specified at the time of policy creation. If you specify true, and you specify a SmartConnect zone in the "target_host" field, replication policies will connect only to nodes in the specified SmartConnect zone. If you specify false, replication policies are not restricted to specific nodes on the target cluster.
rpoAlerts Boolean
If disabled, no RPO alerts will be generated.
service String
Specifies if the SyncIQ service currently on, paused, or off. If paused, all sync jobs will be paused. If turned off, all jobs will be canceled.
serviceHistoryMaxAge Number
Maximum age of service information to maintain, in seconds.
serviceHistoryMaxCount Number
Maximum number of historical service information records to maintain.
sourceNetwork Property Map
Restricts replication policies on the local cluster to running on the specified subnet and pool.
useWorkersPerNode Boolean
If enabled, SyncIQ will use the deprecated workerspernode field with worker pools functionality and limit workers accordingly.

Supporting Types

SynciqGlobalSettingsSourceNetwork
, SynciqGlobalSettingsSourceNetworkArgs

Pool string
The pool to restrict replication policies to.
Subnet string
The subnet to restrict replication policies to.
Pool string
The pool to restrict replication policies to.
Subnet string
The subnet to restrict replication policies to.
pool String
The pool to restrict replication policies to.
subnet String
The subnet to restrict replication policies to.
pool string
The pool to restrict replication policies to.
subnet string
The subnet to restrict replication policies to.
pool str
The pool to restrict replication policies to.
subnet str
The subnet to restrict replication policies to.
pool String
The pool to restrict replication policies to.
subnet String
The subnet to restrict replication policies to.

Import

Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.

Licensed under the Mozilla Public License Version 2.0 (the “License”);

you may not use this file except in compliance with the License.

You may obtain a copy of the License at

http://mozilla.org/MPL/2.0/

Unless required by applicable law or agreed to in writing, software

distributed under the License is distributed on an “AS IS” BASIS,

WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.

See the License for the specific language governing permissions and

limitations under the License.

The command is

$ pulumi import powerscale:index/synciqGlobalSettings:SynciqGlobalSettings settings <anystring>
Copy

Example:

$ pulumi import powerscale:index/synciqGlobalSettings:SynciqGlobalSettings settings global_setting
Copy

after running this command, populate one or more parameters in the config file to start managing this resource.

Note: running “terraform show” after importing shows the current config/state of the resource. You can copy/paste that config to make it easier to manage the resource.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
powerscale dell/terraform-provider-powerscale
License
Notes
This Pulumi package is based on the powerscale Terraform Provider.