Skip to content

Commit b34422f

Browse files
committed
2 parents e9f82ac + f0681df commit b34422f

7 files changed

Lines changed: 51 additions & 82 deletions

File tree

mmv1/products/networksecurity/MirroringEndpoint.yaml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ description: |-
1818
enrichment capabilities and support for multiple replica destinations.
1919
Endpoints are always part of a global endpoint group which represents a
2020
global "mirroring broker" service.
21-
min_version: 'beta'
2221
id_format: 'projects/{{project}}/locations/{{location}}/mirroringEndpoints/{{mirroring_endpoint_id}}'
2322
base_url: 'projects/{{project}}/locations/{{location}}/mirroringEndpoints'
2423
self_link: 'projects/{{project}}/locations/{{location}}/mirroringEndpoints/{{mirroring_endpoint_id}}'
@@ -58,7 +57,6 @@ parameters:
5857
description: |-
5958
The ID to use for the new endpoint, which will become the final
6059
component of the endpoint's resource name.
61-
min_version: 'beta'
6260
url_param_only: true
6361
required: true
6462
immutable: true
@@ -69,35 +67,30 @@ properties:
6967
The resource name of this endpoint, for example:
7068
`projects/123456789/locations/us-central1-a/mirroringEndpoints/my-endpoint`.
7169
See https://google.aip.dev/122 for more details.
72-
min_version: 'beta'
7370
immutable: true
7471
output: true
7572
- name: 'createTime'
7673
type: String
7774
description: |-
7875
The timestamp when the resource was created.
7976
See https://google.aip.dev/148#timestamps.
80-
min_version: 'beta'
8177
output: true
8278
- name: 'updateTime'
8379
type: String
8480
description: |-
8581
The timestamp when the resource was most recently updated.
8682
See https://google.aip.dev/148#timestamps.
87-
min_version: 'beta'
8883
output: true
8984
- name: 'labels'
9085
type: KeyValueLabels
9186
description: |-
9287
Labels are key/value pairs that help to organize and filter resources.
93-
min_version: 'beta'
9488
- name: 'mirroringEndpointGroup'
9589
type: String
9690
description: |-
9791
The endpoint group that this endpoint belongs to.
9892
Format is:
9993
`projects/{project}/locations/{location}/mirroringEndpointGroups/{mirroringEndpointGroup}`
100-
min_version: 'beta'
10194
required: true
10295
immutable: true
10396
- name: 'state'
@@ -112,7 +105,6 @@ properties:
112105
DELETING
113106
DELETE_FAILED
114107
OUT_OF_SYNC
115-
min_version: 'beta'
116108
output: true
117109
- name: 'reconciling'
118110
type: Boolean
@@ -121,11 +113,9 @@ properties:
121113
and the system is working to reconcile them. This part of the normal
122114
operation (e.g. linking a new association to the parent group).
123115
See https://google.aip.dev/128.
124-
min_version: 'beta'
125116
output: true
126117
- name: 'description'
127118
type: String
128119
description: |-
129120
User-provided description of the endpoint.
130121
Used as additional context for the endpoint.
131-
min_version: 'beta'

mmv1/products/networksecurity/MirroringEndpointGroup.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ examples:
5555
- name: 'network_security_mirroring_endpoint_group_broker_basic'
5656
config_path: 'templates/terraform/examples/network_security_mirroring_endpoint_group_broker_basic.tf.tmpl'
5757
primary_resource_id: 'default'
58-
min_version: 'beta'
5958
vars:
6059
network_name: 'example-network'
6160
deployment_group_id: 'example-dg'
@@ -118,7 +117,6 @@ properties:
118117
connected to, for example:
119118
`projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`.
120119
See https://google.aip.dev/124.
121-
min_version: 'beta'
122120
immutable: true
123121
item_type:
124122
type: String
@@ -155,7 +153,6 @@ properties:
155153
Possible values:
156154
DIRECT
157155
BROKER
158-
min_version: 'beta'
159156
default_value: 'DIRECT'
160157
immutable: true
161158
- name: description

mmv1/templates/terraform/examples/network_security_mirroring_endpoint_basic.tf.tmpl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,22 @@
11
resource "google_compute_network" "network" {
2-
provider = google-beta
32
name = "{{index $.Vars "network_name"}}"
43
auto_create_subnetworks = false
54
}
65

76
resource "google_network_security_mirroring_deployment_group" "deployment_group" {
8-
provider = google-beta
97
mirroring_deployment_group_id = "{{index $.Vars "deployment_group_id"}}"
108
location = "global"
119
network = google_compute_network.network.id
1210
}
1311

1412
resource "google_network_security_mirroring_endpoint_group" "endpoint_group" {
15-
provider = google-beta
1613
mirroring_endpoint_group_id = "{{index $.Vars "endpoint_group_id"}}"
1714
location = "global"
1815
type = "BROKER"
1916
mirroring_deployment_groups = [google_network_security_mirroring_deployment_group.deployment_group.id]
2017
}
2118

2219
resource "google_network_security_mirroring_endpoint" "{{$.PrimaryResourceId}}" {
23-
provider = google-beta
2420
mirroring_endpoint_id = "{{index $.Vars "endpoint_id"}}"
2521
location = "us-west2-a"
2622
mirroring_endpoint_group = google_network_security_mirroring_endpoint_group.endpoint_group.id

mmv1/templates/terraform/examples/network_security_mirroring_endpoint_group_broker_basic.tf.tmpl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
resource "google_compute_network" "network" {
2-
provider = google-beta
32
name = "{{index $.Vars "network_name"}}"
43
auto_create_subnetworks = false
54
}
65

76
resource "google_network_security_mirroring_deployment_group" "deployment_group" {
8-
provider = google-beta
97
mirroring_deployment_group_id = "{{index $.Vars "deployment_group_id"}}"
108
location = "global"
119
network = google_compute_network.network.id
1210
}
1311

1412
resource "google_network_security_mirroring_endpoint_group" "{{$.PrimaryResourceId}}" {
15-
provider = google-beta
1613
mirroring_endpoint_group_id = "{{index $.Vars "endpoint_group_id"}}"
1714
location = "global"
1815
type = "BROKER"

mmv1/third_party/terraform/go.mod

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/hashicorp/terraform-provider-google
33
go 1.24.0
44

55
require (
6-
cloud.google.com/go/auth v0.18.0
6+
cloud.google.com/go/auth v0.18.1
77
cloud.google.com/go/auth/oauth2adapt v0.2.8
88
cloud.google.com/go/bigquery v1.72.0
99
cloud.google.com/go/bigtable v1.40.1
@@ -34,10 +34,10 @@ require (
3434
github.com/stretchr/testify v1.11.1
3535
go4.org/netipx v0.0.0-20231129151722-fdeea329fbba
3636
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
37-
golang.org/x/net v0.48.0
37+
golang.org/x/net v0.49.0
3838
golang.org/x/oauth2 v0.34.0
39-
google.golang.org/api v0.260.0
40-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251222181119-0a764e51fe1b
39+
google.golang.org/api v0.264.0
40+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260122232226-8e98ce8d340d
4141
google.golang.org/grpc v1.78.0
4242
google.golang.org/protobuf v1.36.11
4343
gopkg.in/yaml.v2 v2.4.0
@@ -77,7 +77,7 @@ require (
7777
github.com/google/go-cpy v0.0.0-20211218193943-a9c933c06932 // indirect
7878
github.com/google/s2a-go v0.1.9 // indirect
7979
github.com/google/uuid v1.6.0 // indirect
80-
github.com/googleapis/enterprise-certificate-proxy v0.3.9 // indirect
80+
github.com/googleapis/enterprise-certificate-proxy v0.3.11 // indirect
8181
github.com/googleapis/gax-go/v2 v2.16.0 // indirect
8282
github.com/hashicorp/go-checkpoint v0.5.0 // indirect
8383
github.com/hashicorp/go-hclog v1.6.3 // indirect
@@ -115,19 +115,19 @@ require (
115115
go.opentelemetry.io/contrib/detectors/gcp v1.38.0 // indirect
116116
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 // indirect
117117
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
118-
go.opentelemetry.io/otel v1.38.0 // indirect
119-
go.opentelemetry.io/otel/metric v1.38.0 // indirect
120-
go.opentelemetry.io/otel/sdk v1.38.0 // indirect
121-
go.opentelemetry.io/otel/sdk/metric v1.38.0 // indirect
122-
go.opentelemetry.io/otel/trace v1.38.0 // indirect
123-
golang.org/x/crypto v0.46.0 // indirect
124-
golang.org/x/mod v0.30.0 // indirect
118+
go.opentelemetry.io/otel v1.39.0 // indirect
119+
go.opentelemetry.io/otel/metric v1.39.0 // indirect
120+
go.opentelemetry.io/otel/sdk v1.39.0 // indirect
121+
go.opentelemetry.io/otel/sdk/metric v1.39.0 // indirect
122+
go.opentelemetry.io/otel/trace v1.39.0 // indirect
123+
golang.org/x/crypto v0.47.0 // indirect
124+
golang.org/x/mod v0.31.0 // indirect
125125
golang.org/x/sync v0.19.0 // indirect
126-
golang.org/x/sys v0.39.0 // indirect
127-
golang.org/x/telemetry v0.0.0-20251111182119-bc8e575c7b54 // indirect
128-
golang.org/x/text v0.32.0 // indirect
126+
golang.org/x/sys v0.40.0 // indirect
127+
golang.org/x/telemetry v0.0.0-20251203150158-8fff8a5912fc // indirect
128+
golang.org/x/text v0.33.0 // indirect
129129
golang.org/x/time v0.14.0 // indirect
130-
golang.org/x/tools v0.39.0 // indirect
130+
golang.org/x/tools v0.40.0 // indirect
131131
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
132132
google.golang.org/appengine v1.6.8 // indirect
133133
google.golang.org/genproto v0.0.0-20251202230838-ff82c1b0f217 // indirect

0 commit comments

Comments
 (0)