1. Packages
  2. Netapp-Cloudmanager Provider
  3. API Docs
  4. ConnectorGcp
netapp-cloudmanager 25.3.0 published on Monday, Apr 14, 2025 by netapp

netapp-cloudmanager.ConnectorGcp

Explore with Pulumi AI

Example Usage

S

Create netapp-cloudmanager_connector_gcp:

import * as pulumi from "@pulumi/pulumi";
import * as netapp_cloudmanager from "@pulumi/netapp-cloudmanager";

const cl_occm_gcp = new netapp_cloudmanager.ConnectorGcp("cl-occm-gcp", {
    projectId: "xxxxxxx",
    zone: "us-east4-b",
    company: "NetApp",
    serviceAccountEmail: "xxxxxxxxxxxxxxxx",
    serviceAccountPath: "gcp_creds.json",
    accountId: "account-moKEW1b5",
    gcpBlockProjectSshKeys: true,
    gcpSerialPortEnable: true,
    gcpEnableOsLogin: false,
    gcpEnableOsLoginSk: false,
}, {
    provider: netapp_cloudmanager,
});
Copy
import pulumi
import pulumi_netapp_cloudmanager as netapp_cloudmanager

cl_occm_gcp = netapp_cloudmanager.ConnectorGcp("cl-occm-gcp",
    project_id="xxxxxxx",
    zone="us-east4-b",
    company="NetApp",
    service_account_email="xxxxxxxxxxxxxxxx",
    service_account_path="gcp_creds.json",
    account_id="account-moKEW1b5",
    gcp_block_project_ssh_keys=True,
    gcp_serial_port_enable=True,
    gcp_enable_os_login=False,
    gcp_enable_os_login_sk=False,
    opts = pulumi.ResourceOptions(provider=netapp_cloudmanager))
Copy
package main

import (
	netappcloudmanager "github.com/pulumi/pulumi-terraform-provider/sdks/go/netapp-cloudmanager/v25/netapp-cloudmanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := netappcloudmanager.NewConnectorGcp(ctx, "cl-occm-gcp", &netappcloudmanager.ConnectorGcpArgs{
			ProjectId:              pulumi.String("xxxxxxx"),
			Zone:                   pulumi.String("us-east4-b"),
			Company:                pulumi.String("NetApp"),
			ServiceAccountEmail:    pulumi.String("xxxxxxxxxxxxxxxx"),
			ServiceAccountPath:     pulumi.String("gcp_creds.json"),
			AccountId:              pulumi.String("account-moKEW1b5"),
			GcpBlockProjectSshKeys: pulumi.Bool(true),
			GcpSerialPortEnable:    pulumi.Bool(true),
			GcpEnableOsLogin:       pulumi.Bool(false),
			GcpEnableOsLoginSk:     pulumi.Bool(false),
		}, pulumi.Provider(netapp_cloudmanager))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using NetappCloudmanager = Pulumi.NetappCloudmanager;

return await Deployment.RunAsync(() => 
{
    var cl_occm_gcp = new NetappCloudmanager.ConnectorGcp("cl-occm-gcp", new()
    {
        ProjectId = "xxxxxxx",
        Zone = "us-east4-b",
        Company = "NetApp",
        ServiceAccountEmail = "xxxxxxxxxxxxxxxx",
        ServiceAccountPath = "gcp_creds.json",
        AccountId = "account-moKEW1b5",
        GcpBlockProjectSshKeys = true,
        GcpSerialPortEnable = true,
        GcpEnableOsLogin = false,
        GcpEnableOsLoginSk = false,
    }, new CustomResourceOptions
    {
        Provider = netapp_cloudmanager,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.netappcloudmanager.ConnectorGcp;
import com.pulumi.netappcloudmanager.ConnectorGcpArgs;
import com.pulumi.resources.CustomResourceOptions;
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 cl_occm_gcp = new ConnectorGcp("cl-occm-gcp", ConnectorGcpArgs.builder()
            .projectId("xxxxxxx")
            .zone("us-east4-b")
            .company("NetApp")
            .serviceAccountEmail("xxxxxxxxxxxxxxxx")
            .serviceAccountPath("gcp_creds.json")
            .accountId("account-moKEW1b5")
            .gcpBlockProjectSshKeys(true)
            .gcpSerialPortEnable(true)
            .gcpEnableOsLogin(false)
            .gcpEnableOsLoginSk(false)
            .build(), CustomResourceOptions.builder()
                .provider(netapp_cloudmanager)
                .build());

    }
}
Copy
resources:
  cl-occm-gcp:
    type: netapp-cloudmanager:ConnectorGcp
    properties:
      projectId: xxxxxxx
      zone: us-east4-b
      company: NetApp
      serviceAccountEmail: xxxxxxxxxxxxxxxx
      serviceAccountPath: gcp_creds.json
      accountId: account-moKEW1b5
      gcpBlockProjectSshKeys: true
      gcpSerialPortEnable: true
      gcpEnableOsLogin: false
      gcpEnableOsLoginSk: false
    options:
      provider: ${["netapp-cloudmanager"]}
Copy

Create ConnectorGcp Resource

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

Constructor syntax

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

@overload
def ConnectorGcp(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 project_id: Optional[str] = None,
                 zone: Optional[str] = None,
                 company: Optional[str] = None,
                 service_account_email: Optional[str] = None,
                 gcp_enable_os_login: Optional[bool] = None,
                 firewall_tags: Optional[bool] = None,
                 account_id: Optional[str] = None,
                 gcp_enable_os_login_sk: Optional[bool] = None,
                 gcp_serial_port_enable: Optional[bool] = None,
                 labels: Optional[Mapping[str, str]] = None,
                 machine_type: Optional[str] = None,
                 name: Optional[str] = None,
                 network_project_id: Optional[str] = None,
                 gcp_block_project_ssh_keys: Optional[bool] = None,
                 proxy_certificates: Optional[Sequence[str]] = None,
                 proxy_password: Optional[str] = None,
                 proxy_url: Optional[str] = None,
                 proxy_user_name: Optional[str] = None,
                 connector_gcp_id: Optional[str] = None,
                 service_account_key: Optional[str] = None,
                 service_account_path: Optional[str] = None,
                 subnet_id: Optional[str] = None,
                 tags: Optional[Sequence[str]] = None,
                 associate_public_ip: Optional[bool] = None)
func NewConnectorGcp(ctx *Context, name string, args ConnectorGcpArgs, opts ...ResourceOption) (*ConnectorGcp, error)
public ConnectorGcp(string name, ConnectorGcpArgs args, CustomResourceOptions? opts = null)
public ConnectorGcp(String name, ConnectorGcpArgs args)
public ConnectorGcp(String name, ConnectorGcpArgs args, CustomResourceOptions options)
type: netapp-cloudmanager:ConnectorGcp
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 This property is required. ConnectorGcpArgs
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 This property is required. ConnectorGcpArgs
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 This property is required. ConnectorGcpArgs
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 This property is required. ConnectorGcpArgs
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. ConnectorGcpArgs
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 connectorGcpResource = new NetappCloudmanager.ConnectorGcp("connectorGcpResource", new()
{
    ProjectId = "string",
    Zone = "string",
    Company = "string",
    ServiceAccountEmail = "string",
    GcpEnableOsLogin = false,
    FirewallTags = false,
    AccountId = "string",
    GcpEnableOsLoginSk = false,
    GcpSerialPortEnable = false,
    Labels = 
    {
        { "string", "string" },
    },
    MachineType = "string",
    Name = "string",
    NetworkProjectId = "string",
    GcpBlockProjectSshKeys = false,
    ProxyCertificates = new[]
    {
        "string",
    },
    ProxyPassword = "string",
    ProxyUrl = "string",
    ProxyUserName = "string",
    ConnectorGcpId = "string",
    ServiceAccountKey = "string",
    ServiceAccountPath = "string",
    SubnetId = "string",
    Tags = new[]
    {
        "string",
    },
    AssociatePublicIp = false,
});
Copy
example, err := netappcloudmanager.NewConnectorGcp(ctx, "connectorGcpResource", &netappcloudmanager.ConnectorGcpArgs{
ProjectId: pulumi.String("string"),
Zone: pulumi.String("string"),
Company: pulumi.String("string"),
ServiceAccountEmail: pulumi.String("string"),
GcpEnableOsLogin: pulumi.Bool(false),
FirewallTags: pulumi.Bool(false),
AccountId: pulumi.String("string"),
GcpEnableOsLoginSk: pulumi.Bool(false),
GcpSerialPortEnable: pulumi.Bool(false),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
MachineType: pulumi.String("string"),
Name: pulumi.String("string"),
NetworkProjectId: pulumi.String("string"),
GcpBlockProjectSshKeys: pulumi.Bool(false),
ProxyCertificates: pulumi.StringArray{
pulumi.String("string"),
},
ProxyPassword: pulumi.String("string"),
ProxyUrl: pulumi.String("string"),
ProxyUserName: pulumi.String("string"),
ConnectorGcpId: pulumi.String("string"),
ServiceAccountKey: pulumi.String("string"),
ServiceAccountPath: pulumi.String("string"),
SubnetId: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
AssociatePublicIp: pulumi.Bool(false),
})
Copy
var connectorGcpResource = new ConnectorGcp("connectorGcpResource", ConnectorGcpArgs.builder()
    .projectId("string")
    .zone("string")
    .company("string")
    .serviceAccountEmail("string")
    .gcpEnableOsLogin(false)
    .firewallTags(false)
    .accountId("string")
    .gcpEnableOsLoginSk(false)
    .gcpSerialPortEnable(false)
    .labels(Map.of("string", "string"))
    .machineType("string")
    .name("string")
    .networkProjectId("string")
    .gcpBlockProjectSshKeys(false)
    .proxyCertificates("string")
    .proxyPassword("string")
    .proxyUrl("string")
    .proxyUserName("string")
    .connectorGcpId("string")
    .serviceAccountKey("string")
    .serviceAccountPath("string")
    .subnetId("string")
    .tags("string")
    .associatePublicIp(false)
    .build());
Copy
connector_gcp_resource = netapp_cloudmanager.ConnectorGcp("connectorGcpResource",
    project_id="string",
    zone="string",
    company="string",
    service_account_email="string",
    gcp_enable_os_login=False,
    firewall_tags=False,
    account_id="string",
    gcp_enable_os_login_sk=False,
    gcp_serial_port_enable=False,
    labels={
        "string": "string",
    },
    machine_type="string",
    name="string",
    network_project_id="string",
    gcp_block_project_ssh_keys=False,
    proxy_certificates=["string"],
    proxy_password="string",
    proxy_url="string",
    proxy_user_name="string",
    connector_gcp_id="string",
    service_account_key="string",
    service_account_path="string",
    subnet_id="string",
    tags=["string"],
    associate_public_ip=False)
Copy
const connectorGcpResource = new netapp_cloudmanager.ConnectorGcp("connectorGcpResource", {
    projectId: "string",
    zone: "string",
    company: "string",
    serviceAccountEmail: "string",
    gcpEnableOsLogin: false,
    firewallTags: false,
    accountId: "string",
    gcpEnableOsLoginSk: false,
    gcpSerialPortEnable: false,
    labels: {
        string: "string",
    },
    machineType: "string",
    name: "string",
    networkProjectId: "string",
    gcpBlockProjectSshKeys: false,
    proxyCertificates: ["string"],
    proxyPassword: "string",
    proxyUrl: "string",
    proxyUserName: "string",
    connectorGcpId: "string",
    serviceAccountKey: "string",
    serviceAccountPath: "string",
    subnetId: "string",
    tags: ["string"],
    associatePublicIp: false,
});
Copy
type: netapp-cloudmanager:ConnectorGcp
properties:
    accountId: string
    associatePublicIp: false
    company: string
    connectorGcpId: string
    firewallTags: false
    gcpBlockProjectSshKeys: false
    gcpEnableOsLogin: false
    gcpEnableOsLoginSk: false
    gcpSerialPortEnable: false
    labels:
        string: string
    machineType: string
    name: string
    networkProjectId: string
    projectId: string
    proxyCertificates:
        - string
    proxyPassword: string
    proxyUrl: string
    proxyUserName: string
    serviceAccountEmail: string
    serviceAccountKey: string
    serviceAccountPath: string
    subnetId: string
    tags:
        - string
    zone: string
Copy

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

Company This property is required. string
The name of the company of the user.
ProjectId This property is required. string
The GCP project_id where the connector will be created.
ServiceAccountEmail This property is required. string
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
Zone This property is required. string
The GCP zone where the Connector will be created.
AccountId string
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
AssociatePublicIp bool
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
ConnectorGcpId string
The name of the virtual machine.
FirewallTags bool
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
GcpBlockProjectSshKeys bool
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
GcpEnableOsLogin bool
Enable OS login. Default value is true. Reference: Enable OS Login
GcpEnableOsLoginSk bool
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
GcpSerialPortEnable bool
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
Labels Dictionary<string, string>
The map of labels.
MachineType string
The machine_type for the Connector VM. The default value is "n2-standard-8"
Name string
The name of the Cloud Manager Connector.
NetworkProjectId string
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
ProxyCertificates List<string>
The proxy certificates. A list of certificate file names.
ProxyPassword string
The proxy password, if using a proxy to connect to the internet.
ProxyUrl string
The proxy URL, if using a proxy to connect to the internet.
ProxyUserName string
The proxy user name, if using a proxy to connect to the internet.
ServiceAccountKey string
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
ServiceAccountPath string
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
SubnetId string
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
Tags List<string>
The list of network tags.
Company This property is required. string
The name of the company of the user.
ProjectId This property is required. string
The GCP project_id where the connector will be created.
ServiceAccountEmail This property is required. string
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
Zone This property is required. string
The GCP zone where the Connector will be created.
AccountId string
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
AssociatePublicIp bool
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
ConnectorGcpId string
The name of the virtual machine.
FirewallTags bool
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
GcpBlockProjectSshKeys bool
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
GcpEnableOsLogin bool
Enable OS login. Default value is true. Reference: Enable OS Login
GcpEnableOsLoginSk bool
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
GcpSerialPortEnable bool
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
Labels map[string]string
The map of labels.
MachineType string
The machine_type for the Connector VM. The default value is "n2-standard-8"
Name string
The name of the Cloud Manager Connector.
NetworkProjectId string
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
ProxyCertificates []string
The proxy certificates. A list of certificate file names.
ProxyPassword string
The proxy password, if using a proxy to connect to the internet.
ProxyUrl string
The proxy URL, if using a proxy to connect to the internet.
ProxyUserName string
The proxy user name, if using a proxy to connect to the internet.
ServiceAccountKey string
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
ServiceAccountPath string
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
SubnetId string
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
Tags []string
The list of network tags.
company This property is required. String
The name of the company of the user.
projectId This property is required. String
The GCP project_id where the connector will be created.
serviceAccountEmail This property is required. String
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
zone This property is required. String
The GCP zone where the Connector will be created.
accountId String
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
associatePublicIp Boolean
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
connectorGcpId String
The name of the virtual machine.
firewallTags Boolean
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
gcpBlockProjectSshKeys Boolean
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
gcpEnableOsLogin Boolean
Enable OS login. Default value is true. Reference: Enable OS Login
gcpEnableOsLoginSk Boolean
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
gcpSerialPortEnable Boolean
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
labels Map<String,String>
The map of labels.
machineType String
The machine_type for the Connector VM. The default value is "n2-standard-8"
name String
The name of the Cloud Manager Connector.
networkProjectId String
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
proxyCertificates List<String>
The proxy certificates. A list of certificate file names.
proxyPassword String
The proxy password, if using a proxy to connect to the internet.
proxyUrl String
The proxy URL, if using a proxy to connect to the internet.
proxyUserName String
The proxy user name, if using a proxy to connect to the internet.
serviceAccountKey String
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
serviceAccountPath String
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
subnetId String
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
tags List<String>
The list of network tags.
company This property is required. string
The name of the company of the user.
projectId This property is required. string
The GCP project_id where the connector will be created.
serviceAccountEmail This property is required. string
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
zone This property is required. string
The GCP zone where the Connector will be created.
accountId string
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
associatePublicIp boolean
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
connectorGcpId string
The name of the virtual machine.
firewallTags boolean
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
gcpBlockProjectSshKeys boolean
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
gcpEnableOsLogin boolean
Enable OS login. Default value is true. Reference: Enable OS Login
gcpEnableOsLoginSk boolean
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
gcpSerialPortEnable boolean
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
labels {[key: string]: string}
The map of labels.
machineType string
The machine_type for the Connector VM. The default value is "n2-standard-8"
name string
The name of the Cloud Manager Connector.
networkProjectId string
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
proxyCertificates string[]
The proxy certificates. A list of certificate file names.
proxyPassword string
The proxy password, if using a proxy to connect to the internet.
proxyUrl string
The proxy URL, if using a proxy to connect to the internet.
proxyUserName string
The proxy user name, if using a proxy to connect to the internet.
serviceAccountKey string
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
serviceAccountPath string
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
subnetId string
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
tags string[]
The list of network tags.
company This property is required. str
The name of the company of the user.
project_id This property is required. str
The GCP project_id where the connector will be created.
service_account_email This property is required. str
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
zone This property is required. str
The GCP zone where the Connector will be created.
account_id str
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
associate_public_ip bool
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
connector_gcp_id str
The name of the virtual machine.
firewall_tags bool
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
gcp_block_project_ssh_keys bool
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
gcp_enable_os_login bool
Enable OS login. Default value is true. Reference: Enable OS Login
gcp_enable_os_login_sk bool
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
gcp_serial_port_enable bool
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
labels Mapping[str, str]
The map of labels.
machine_type str
The machine_type for the Connector VM. The default value is "n2-standard-8"
name str
The name of the Cloud Manager Connector.
network_project_id str
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
proxy_certificates Sequence[str]
The proxy certificates. A list of certificate file names.
proxy_password str
The proxy password, if using a proxy to connect to the internet.
proxy_url str
The proxy URL, if using a proxy to connect to the internet.
proxy_user_name str
The proxy user name, if using a proxy to connect to the internet.
service_account_key str
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
service_account_path str
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
subnet_id str
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
tags Sequence[str]
The list of network tags.
company This property is required. String
The name of the company of the user.
projectId This property is required. String
The GCP project_id where the connector will be created.
serviceAccountEmail This property is required. String
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
zone This property is required. String
The GCP zone where the Connector will be created.
accountId String
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
associatePublicIp Boolean
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
connectorGcpId String
The name of the virtual machine.
firewallTags Boolean
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
gcpBlockProjectSshKeys Boolean
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
gcpEnableOsLogin Boolean
Enable OS login. Default value is true. Reference: Enable OS Login
gcpEnableOsLoginSk Boolean
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
gcpSerialPortEnable Boolean
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
labels Map<String>
The map of labels.
machineType String
The machine_type for the Connector VM. The default value is "n2-standard-8"
name String
The name of the Cloud Manager Connector.
networkProjectId String
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
proxyCertificates List<String>
The proxy certificates. A list of certificate file names.
proxyPassword String
The proxy password, if using a proxy to connect to the internet.
proxyUrl String
The proxy URL, if using a proxy to connect to the internet.
proxyUserName String
The proxy user name, if using a proxy to connect to the internet.
serviceAccountKey String
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
serviceAccountPath String
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
subnetId String
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
tags List<String>
The list of network tags.

Outputs

All input properties are implicitly available as output properties. Additionally, the ConnectorGcp resource produces the following output properties:

ClientId string
The unique client ID of the Connector. Can be used in other resources.
Id string
The provider-assigned unique ID for this managed resource.
ClientId string
The unique client ID of the Connector. Can be used in other resources.
Id string
The provider-assigned unique ID for this managed resource.
clientId String
The unique client ID of the Connector. Can be used in other resources.
id String
The provider-assigned unique ID for this managed resource.
clientId string
The unique client ID of the Connector. Can be used in other resources.
id string
The provider-assigned unique ID for this managed resource.
client_id str
The unique client ID of the Connector. Can be used in other resources.
id str
The provider-assigned unique ID for this managed resource.
clientId String
The unique client ID of the Connector. Can be used in other resources.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ConnectorGcp Resource

Get an existing ConnectorGcp 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?: ConnectorGcpState, opts?: CustomResourceOptions): ConnectorGcp
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_id: Optional[str] = None,
        associate_public_ip: Optional[bool] = None,
        client_id: Optional[str] = None,
        company: Optional[str] = None,
        connector_gcp_id: Optional[str] = None,
        firewall_tags: Optional[bool] = None,
        gcp_block_project_ssh_keys: Optional[bool] = None,
        gcp_enable_os_login: Optional[bool] = None,
        gcp_enable_os_login_sk: Optional[bool] = None,
        gcp_serial_port_enable: Optional[bool] = None,
        labels: Optional[Mapping[str, str]] = None,
        machine_type: Optional[str] = None,
        name: Optional[str] = None,
        network_project_id: Optional[str] = None,
        project_id: Optional[str] = None,
        proxy_certificates: Optional[Sequence[str]] = None,
        proxy_password: Optional[str] = None,
        proxy_url: Optional[str] = None,
        proxy_user_name: Optional[str] = None,
        service_account_email: Optional[str] = None,
        service_account_key: Optional[str] = None,
        service_account_path: Optional[str] = None,
        subnet_id: Optional[str] = None,
        tags: Optional[Sequence[str]] = None,
        zone: Optional[str] = None) -> ConnectorGcp
func GetConnectorGcp(ctx *Context, name string, id IDInput, state *ConnectorGcpState, opts ...ResourceOption) (*ConnectorGcp, error)
public static ConnectorGcp Get(string name, Input<string> id, ConnectorGcpState? state, CustomResourceOptions? opts = null)
public static ConnectorGcp get(String name, Output<String> id, ConnectorGcpState state, CustomResourceOptions options)
resources:  _:    type: netapp-cloudmanager:ConnectorGcp    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:
AccountId string
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
AssociatePublicIp bool
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
ClientId string
The unique client ID of the Connector. Can be used in other resources.
Company string
The name of the company of the user.
ConnectorGcpId string
The name of the virtual machine.
FirewallTags bool
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
GcpBlockProjectSshKeys bool
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
GcpEnableOsLogin bool
Enable OS login. Default value is true. Reference: Enable OS Login
GcpEnableOsLoginSk bool
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
GcpSerialPortEnable bool
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
Labels Dictionary<string, string>
The map of labels.
MachineType string
The machine_type for the Connector VM. The default value is "n2-standard-8"
Name string
The name of the Cloud Manager Connector.
NetworkProjectId string
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
ProjectId string
The GCP project_id where the connector will be created.
ProxyCertificates List<string>
The proxy certificates. A list of certificate file names.
ProxyPassword string
The proxy password, if using a proxy to connect to the internet.
ProxyUrl string
The proxy URL, if using a proxy to connect to the internet.
ProxyUserName string
The proxy user name, if using a proxy to connect to the internet.
ServiceAccountEmail string
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
ServiceAccountKey string
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
ServiceAccountPath string
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
SubnetId string
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
Tags List<string>
The list of network tags.
Zone string
The GCP zone where the Connector will be created.
AccountId string
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
AssociatePublicIp bool
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
ClientId string
The unique client ID of the Connector. Can be used in other resources.
Company string
The name of the company of the user.
ConnectorGcpId string
The name of the virtual machine.
FirewallTags bool
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
GcpBlockProjectSshKeys bool
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
GcpEnableOsLogin bool
Enable OS login. Default value is true. Reference: Enable OS Login
GcpEnableOsLoginSk bool
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
GcpSerialPortEnable bool
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
Labels map[string]string
The map of labels.
MachineType string
The machine_type for the Connector VM. The default value is "n2-standard-8"
Name string
The name of the Cloud Manager Connector.
NetworkProjectId string
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
ProjectId string
The GCP project_id where the connector will be created.
ProxyCertificates []string
The proxy certificates. A list of certificate file names.
ProxyPassword string
The proxy password, if using a proxy to connect to the internet.
ProxyUrl string
The proxy URL, if using a proxy to connect to the internet.
ProxyUserName string
The proxy user name, if using a proxy to connect to the internet.
ServiceAccountEmail string
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
ServiceAccountKey string
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
ServiceAccountPath string
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
SubnetId string
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
Tags []string
The list of network tags.
Zone string
The GCP zone where the Connector will be created.
accountId String
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
associatePublicIp Boolean
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
clientId String
The unique client ID of the Connector. Can be used in other resources.
company String
The name of the company of the user.
connectorGcpId String
The name of the virtual machine.
firewallTags Boolean
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
gcpBlockProjectSshKeys Boolean
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
gcpEnableOsLogin Boolean
Enable OS login. Default value is true. Reference: Enable OS Login
gcpEnableOsLoginSk Boolean
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
gcpSerialPortEnable Boolean
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
labels Map<String,String>
The map of labels.
machineType String
The machine_type for the Connector VM. The default value is "n2-standard-8"
name String
The name of the Cloud Manager Connector.
networkProjectId String
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
projectId String
The GCP project_id where the connector will be created.
proxyCertificates List<String>
The proxy certificates. A list of certificate file names.
proxyPassword String
The proxy password, if using a proxy to connect to the internet.
proxyUrl String
The proxy URL, if using a proxy to connect to the internet.
proxyUserName String
The proxy user name, if using a proxy to connect to the internet.
serviceAccountEmail String
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
serviceAccountKey String
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
serviceAccountPath String
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
subnetId String
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
tags List<String>
The list of network tags.
zone String
The GCP zone where the Connector will be created.
accountId string
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
associatePublicIp boolean
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
clientId string
The unique client ID of the Connector. Can be used in other resources.
company string
The name of the company of the user.
connectorGcpId string
The name of the virtual machine.
firewallTags boolean
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
gcpBlockProjectSshKeys boolean
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
gcpEnableOsLogin boolean
Enable OS login. Default value is true. Reference: Enable OS Login
gcpEnableOsLoginSk boolean
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
gcpSerialPortEnable boolean
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
labels {[key: string]: string}
The map of labels.
machineType string
The machine_type for the Connector VM. The default value is "n2-standard-8"
name string
The name of the Cloud Manager Connector.
networkProjectId string
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
projectId string
The GCP project_id where the connector will be created.
proxyCertificates string[]
The proxy certificates. A list of certificate file names.
proxyPassword string
The proxy password, if using a proxy to connect to the internet.
proxyUrl string
The proxy URL, if using a proxy to connect to the internet.
proxyUserName string
The proxy user name, if using a proxy to connect to the internet.
serviceAccountEmail string
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
serviceAccountKey string
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
serviceAccountPath string
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
subnetId string
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
tags string[]
The list of network tags.
zone string
The GCP zone where the Connector will be created.
account_id str
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
associate_public_ip bool
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
client_id str
The unique client ID of the Connector. Can be used in other resources.
company str
The name of the company of the user.
connector_gcp_id str
The name of the virtual machine.
firewall_tags bool
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
gcp_block_project_ssh_keys bool
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
gcp_enable_os_login bool
Enable OS login. Default value is true. Reference: Enable OS Login
gcp_enable_os_login_sk bool
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
gcp_serial_port_enable bool
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
labels Mapping[str, str]
The map of labels.
machine_type str
The machine_type for the Connector VM. The default value is "n2-standard-8"
name str
The name of the Cloud Manager Connector.
network_project_id str
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
project_id str
The GCP project_id where the connector will be created.
proxy_certificates Sequence[str]
The proxy certificates. A list of certificate file names.
proxy_password str
The proxy password, if using a proxy to connect to the internet.
proxy_url str
The proxy URL, if using a proxy to connect to the internet.
proxy_user_name str
The proxy user name, if using a proxy to connect to the internet.
service_account_email str
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
service_account_key str
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
service_account_path str
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
subnet_id str
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
tags Sequence[str]
The list of network tags.
zone str
The GCP zone where the Connector will be created.
accountId String
The NetApp account ID that the Connector will be associated with. If not provided, Cloud Manager uses the first account. If no account exists, Cloud Manager creates a new account. You can find the account ID in the account tab of Cloud Manager at https://console.bluexp.netapp.com/.
associatePublicIp Boolean
Indicates whether to associate a public IP address to the virtual machine. The default is "true"
clientId String
The unique client ID of the Connector. Can be used in other resources.
company String
The name of the company of the user.
connectorGcpId String
The name of the virtual machine.
firewallTags Boolean
Indicates whether to add firewall_tags to the connector VM (HTTP and HTTP). The default is "true". If true, "firewall-tag-bvsu", "http-server", "https-server" are set as tags, and they can't be managed using tag options.
gcpBlockProjectSshKeys Boolean
Block project-wide SSH keys. Default value is false. Reference: Block project SSH keys from a VM after VM creation
gcpEnableOsLogin Boolean
Enable OS login. Default value is true. Reference: Enable OS Login
gcpEnableOsLoginSk Boolean
Enable OS login with security keys. Default value is true. Reference: Enable security keys with OS Login
gcpSerialPortEnable Boolean
Enable the Serial Console Port. Default value is true. Reference: Disabling interactive serial console access
labels Map<String>
The map of labels.
machineType String
The machine_type for the Connector VM. The default value is "n2-standard-8"
name String
The name of the Cloud Manager Connector.
networkProjectId String
The project id in GCP associated with the Subnet. If not provided, it’s assumed that the Subnet is within the previously specified project id.
projectId String
The GCP project_id where the connector will be created.
proxyCertificates List<String>
The proxy certificates. A list of certificate file names.
proxyPassword String
The proxy password, if using a proxy to connect to the internet.
proxyUrl String
The proxy URL, if using a proxy to connect to the internet.
proxyUserName String
The proxy user name, if using a proxy to connect to the internet.
serviceAccountEmail String
The email of the service_account for the connector instance. This service account is used to allow the Connector to create Cloud Volume ONTAP.
serviceAccountKey String
A JSON string for the service account key for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_path. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login.
serviceAccountPath String
The local path of the service_account JSON file for GCP authorization purposes. This service account is used to create the Connector in GCP. Conflicts with service_account_key. It does not need to be set when using the user application default credential authentication by running the command gcloud auth application-default login..
subnetId String
The name of the subnet for the virtual machine. The default value is "Default". Two formats are supported: either or projects//regions//subnetworks/.
tags List<String>
The list of network tags.
zone String
The GCP zone where the Connector will be created.

Package Details

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