published on Wednesday, Apr 1, 2026 by Pulumi
published on Wednesday, Apr 1, 2026 by Pulumi
A Mirroring Engine is a logical representation of the underlying infrastructure that is used to manage and monitor the ULL Mirroring setup.
Warning: This resource is in beta, and should be used with the terraform-provider-google-beta provider. See Provider Versions for more details on beta resources.
Example Usage
Network Security Ull Mirroring Engine Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const _default = new gcp.networksecurity.UllMirroringEngine("default", {
ullMirroringEngineId: "example-ull-eng",
location: "us-south1-d",
labels: {
foo: "bar",
},
});
import pulumi
import pulumi_gcp as gcp
default = gcp.networksecurity.UllMirroringEngine("default",
ull_mirroring_engine_id="example-ull-eng",
location="us-south1-d",
labels={
"foo": "bar",
})
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/networksecurity"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := networksecurity.NewUllMirroringEngine(ctx, "default", &networksecurity.UllMirroringEngineArgs{
UllMirroringEngineId: pulumi.String("example-ull-eng"),
Location: pulumi.String("us-south1-d"),
Labels: pulumi.StringMap{
"foo": pulumi.String("bar"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var @default = new Gcp.NetworkSecurity.UllMirroringEngine("default", new()
{
UllMirroringEngineId = "example-ull-eng",
Location = "us-south1-d",
Labels =
{
{ "foo", "bar" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.networksecurity.UllMirroringEngine;
import com.pulumi.gcp.networksecurity.UllMirroringEngineArgs;
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 default_ = new UllMirroringEngine("default", UllMirroringEngineArgs.builder()
.ullMirroringEngineId("example-ull-eng")
.location("us-south1-d")
.labels(Map.of("foo", "bar"))
.build());
}
}
resources:
default:
type: gcp:networksecurity:UllMirroringEngine
properties:
ullMirroringEngineId: example-ull-eng
location: us-south1-d
labels:
foo: bar
Create UllMirroringEngine Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UllMirroringEngine(name: string, args: UllMirroringEngineArgs, opts?: CustomResourceOptions);@overload
def UllMirroringEngine(resource_name: str,
args: UllMirroringEngineArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UllMirroringEngine(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[str] = None,
ull_mirroring_engine_id: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
project: Optional[str] = None)func NewUllMirroringEngine(ctx *Context, name string, args UllMirroringEngineArgs, opts ...ResourceOption) (*UllMirroringEngine, error)public UllMirroringEngine(string name, UllMirroringEngineArgs args, CustomResourceOptions? opts = null)
public UllMirroringEngine(String name, UllMirroringEngineArgs args)
public UllMirroringEngine(String name, UllMirroringEngineArgs args, CustomResourceOptions options)
type: gcp:networksecurity:UllMirroringEngine
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args UllMirroringEngineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args UllMirroringEngineArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args UllMirroringEngineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UllMirroringEngineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UllMirroringEngineArgs
- 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 ullMirroringEngineResource = new Gcp.NetworkSecurity.UllMirroringEngine("ullMirroringEngineResource", new()
{
Location = "string",
UllMirroringEngineId = "string",
Labels =
{
{ "string", "string" },
},
Project = "string",
});
example, err := networksecurity.NewUllMirroringEngine(ctx, "ullMirroringEngineResource", &networksecurity.UllMirroringEngineArgs{
Location: pulumi.String("string"),
UllMirroringEngineId: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Project: pulumi.String("string"),
})
var ullMirroringEngineResource = new UllMirroringEngine("ullMirroringEngineResource", UllMirroringEngineArgs.builder()
.location("string")
.ullMirroringEngineId("string")
.labels(Map.of("string", "string"))
.project("string")
.build());
ull_mirroring_engine_resource = gcp.networksecurity.UllMirroringEngine("ullMirroringEngineResource",
location="string",
ull_mirroring_engine_id="string",
labels={
"string": "string",
},
project="string")
const ullMirroringEngineResource = new gcp.networksecurity.UllMirroringEngine("ullMirroringEngineResource", {
location: "string",
ullMirroringEngineId: "string",
labels: {
string: "string",
},
project: "string",
});
type: gcp:networksecurity:UllMirroringEngine
properties:
labels:
string: string
location: string
project: string
ullMirroringEngineId: string
UllMirroringEngine 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 UllMirroringEngine resource accepts the following input properties:
- Location string
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - Ull
Mirroring stringEngine Id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- Labels Dictionary<string, string>
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Location string
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - Ull
Mirroring stringEngine Id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- Labels map[string]string
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- location String
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - ull
Mirroring StringEngine Id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- labels Map<String,String>
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- location string
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - ull
Mirroring stringEngine Id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- labels {[key: string]: string}
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- location str
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - ull_
mirroring_ strengine_ id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- labels Mapping[str, str]
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- location String
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - ull
Mirroring StringEngine Id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- labels Map<String>
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Outputs
All input properties are implicitly available as output properties. Additionally, the UllMirroringEngine resource produces the following output properties:
- Create
Time string - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Reconciling bool
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- Update
Time string - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
- Create
Time string - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Reconciling bool
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- Update
Time string - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
- create
Time String - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling Boolean
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- update
Time String - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
- create
Time string - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling boolean
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- update
Time string - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
- create_
time str - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling bool
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- update_
time str - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
- create
Time String - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling Boolean
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- update
Time String - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
Look up Existing UllMirroringEngine Resource
Get an existing UllMirroringEngine 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?: UllMirroringEngineState, opts?: CustomResourceOptions): UllMirroringEngine@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
effective_labels: Optional[Mapping[str, str]] = None,
labels: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
pulumi_labels: Optional[Mapping[str, str]] = None,
reconciling: Optional[bool] = None,
ull_mirroring_engine_id: Optional[str] = None,
update_time: Optional[str] = None) -> UllMirroringEnginefunc GetUllMirroringEngine(ctx *Context, name string, id IDInput, state *UllMirroringEngineState, opts ...ResourceOption) (*UllMirroringEngine, error)public static UllMirroringEngine Get(string name, Input<string> id, UllMirroringEngineState? state, CustomResourceOptions? opts = null)public static UllMirroringEngine get(String name, Output<String> id, UllMirroringEngineState state, CustomResourceOptions options)resources: _: type: gcp:networksecurity:UllMirroringEngine get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Create
Time string - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Labels Dictionary<string, string>
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - Location string
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - Name string
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Reconciling bool
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- Ull
Mirroring stringEngine Id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- Update
Time string - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
- Create
Time string - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Labels map[string]string
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - Location string
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - Name string
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Reconciling bool
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- Ull
Mirroring stringEngine Id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- Update
Time string - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
- create
Time String - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Map<String,String>
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - location String
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - name String
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling Boolean
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- ull
Mirroring StringEngine Id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- update
Time String - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
- create
Time string - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels {[key: string]: string}
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - location string
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - name string
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling boolean
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- ull
Mirroring stringEngine Id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- update
Time string - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
- create_
time str - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Mapping[str, str]
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - location str
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - name str
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling bool
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- ull_
mirroring_ strengine_ id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- update_
time str - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
- create
Time String - The timestamp when the resource was created. See https://google.aip.dev/148#timestamps.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- labels Map<String>
- Labels are key/value pairs that help to organize and filter resources.
Note: This field is non-authoritative, and will only manage the labels present in your configuration.
Please refer to the field
effectiveLabelsfor all of the labels present on the resource. - location String
- The cloud location of the engine, e.g.
us-south1-dorus-south1-e. - name String
- The resource name of this engine, for example:
projects/123456789/locations/us-south1-d/ullMirroringEngines/my-engine. See https://google.aip.dev/122 for more details. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- reconciling Boolean
- The current state of the resource does not match the user's intended state, and the system is working to reconcile them. This is part of the normal operation. See https://google.aip.dev/128.
- ull
Mirroring StringEngine Id - The ID to use for the new engine, which will become the final component of the engine's resource name.
- update
Time String - The timestamp when the resource was most recently updated. See https://google.aip.dev/148#timestamps.
Import
UllMirroringEngine can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/ullMirroringEngines/{{ull_mirroring_engine_id}}{{project}}/{{location}}/{{ull_mirroring_engine_id}}{{location}}/{{ull_mirroring_engine_id}}
When using the pulumi import command, UllMirroringEngine can be imported using one of the formats above. For example:
$ pulumi import gcp:networksecurity/ullMirroringEngine:UllMirroringEngine default projects/{{project}}/locations/{{location}}/ullMirroringEngines/{{ull_mirroring_engine_id}}
$ pulumi import gcp:networksecurity/ullMirroringEngine:UllMirroringEngine default {{project}}/{{location}}/{{ull_mirroring_engine_id}}
$ pulumi import gcp:networksecurity/ullMirroringEngine:UllMirroringEngine default {{location}}/{{ull_mirroring_engine_id}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-betaTerraform Provider.
published on Wednesday, Apr 1, 2026 by Pulumi
