Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions provider/cmd/pulumi-resource-gcp/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -294612,7 +294612,7 @@
},
"managedMachineLearningDiagnosticsConfig": {
"$ref": "#/types/gcp:container/ClusterManagedMachineLearningDiagnosticsConfig:ClusterManagedMachineLearningDiagnosticsConfig",
"description": ") Configuration for the [GKE Managed ML Diagnostics](https://docs.cloud.google.com/kubernetes-engine/docs/concepts/TODO) feature. Structure is documented below.\n"
"description": "Configuration for the GKE Managed ML Diagnostics feature. Structure is documented below.\n"
},
"managedOpentelemetryConfig": {
"$ref": "#/types/gcp:container/ClusterManagedOpentelemetryConfig:ClusterManagedOpentelemetryConfig",
Expand Down Expand Up @@ -295077,7 +295077,7 @@
},
"managedMachineLearningDiagnosticsConfig": {
"$ref": "#/types/gcp:container/ClusterManagedMachineLearningDiagnosticsConfig:ClusterManagedMachineLearningDiagnosticsConfig",
"description": ") Configuration for the [GKE Managed ML Diagnostics](https://docs.cloud.google.com/kubernetes-engine/docs/concepts/TODO) feature. Structure is documented below.\n"
"description": "Configuration for the GKE Managed ML Diagnostics feature. Structure is documented below.\n"
},
"managedOpentelemetryConfig": {
"$ref": "#/types/gcp:container/ClusterManagedOpentelemetryConfig:ClusterManagedOpentelemetryConfig",
Expand Down Expand Up @@ -295472,7 +295472,7 @@
},
"managedMachineLearningDiagnosticsConfig": {
"$ref": "#/types/gcp:container/ClusterManagedMachineLearningDiagnosticsConfig:ClusterManagedMachineLearningDiagnosticsConfig",
"description": ") Configuration for the [GKE Managed ML Diagnostics](https://docs.cloud.google.com/kubernetes-engine/docs/concepts/TODO) feature. Structure is documented below.\n"
"description": "Configuration for the GKE Managed ML Diagnostics feature. Structure is documented below.\n"
},
"managedOpentelemetryConfig": {
"$ref": "#/types/gcp:container/ClusterManagedOpentelemetryConfig:ClusterManagedOpentelemetryConfig",
Expand Down Expand Up @@ -470612,4 +470612,4 @@
}
}
}
}
}
10 changes: 10 additions & 0 deletions provider/doc_edits_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ func TestReplacementsDotJSON(t *testing.T) {
actual, err = edit.Edit("unrelated.html.markdown", []byte("Terraform should be untouched here."))
require.NoError(t, err)
assert.Equal(t, "Terraform should be untouched here.", string(actual))

// Upstream currently ships a placeholder TODO URL here. We should not surface
// that broken internal marker in generated user-facing docs.
actual, err = edit.Edit("container_cluster.html.markdown", []byte(
"* `managed_machine_learning_diagnostics_config` - (Optional, [Beta](../guides/provider_versions.html.markdown)) Configuration for the [GKE Managed ML Diagnostics](https://docs.cloud.google.com/kubernetes-engine/docs/concepts/TODO) feature. Structure is [documented below](#nested_managed_ml_diagnostics_config).\n",
))
require.NoError(t, err)
assert.Equal(t,
"* `managed_machine_learning_diagnostics_config` - (Optional, [Beta](../guides/provider_versions.html.markdown)) Configuration for the GKE Managed ML Diagnostics feature. Structure is [documented below](#nested_managed_ml_diagnostics_config).\n",
string(actual))
}

func TestAggregateIAMExemptedMembersReplacement(t *testing.T) {
Expand Down
4 changes: 4 additions & 0 deletions provider/replacements.json
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,10 @@
{
"old": " * MODE_UNSPECIFIED: Not Set\n * GCE_METADATA: Expose all Compute Engine metadata to pods.\n * GKE_METADATA: Run the GKE Metadata Server on this node. The GKE Metadata Server exposes a metadata API to workloads that is compatible with the V1 Compute Metadata APIs exposed by the Compute Engine and App Engine Metadata Servers. This feature can only be enabled if [workload identity](https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity) is enabled at the cluster level.\n",
"new": " * UNSPECIFIED: Not Set\n * GCE_METADATA: Expose all Compute Engine metadata to pods.\n * GKE_METADATA: Run the GKE Metadata Server on this node. The GKE Metadata Server exposes a metadata API to workloads that is compatible with the V1 Compute Metadata APIs exposed by the Compute Engine and App Engine Metadata Servers. This feature can only be enabled if [workload identity](https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity) is enabled at the cluster level.\n"
},
{
"old": "* `managed_machine_learning_diagnostics_config` - (Optional, [Beta](../guides/provider_versions.html.markdown)) Configuration for the [GKE Managed ML Diagnostics](https://docs.cloud.google.com/kubernetes-engine/docs/concepts/TODO) feature. Structure is [documented below](#nested_managed_ml_diagnostics_config).\n",
"new": "* `managed_machine_learning_diagnostics_config` - (Optional, [Beta](../guides/provider_versions.html.markdown)) Configuration for the GKE Managed ML Diagnostics feature. Structure is [documented below](#nested_managed_ml_diagnostics_config).\n"
}
],
"container_engine_versions.html.markdown": [
Expand Down
6 changes: 3 additions & 3 deletions sdk/dotnet/Container/Cluster.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions sdk/go/gcp/container/cluster.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions sdk/java/src/main/java/com/pulumi/gcp/container/Cluster.java

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions sdk/nodejs/container/cluster.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading