diff --git a/sdk/dotnet/Metal/GetOrganization.cs b/sdk/dotnet/Metal/GetOrganization.cs
index a8b74cd4..0301c3c1 100644
--- a/sdk/dotnet/Metal/GetOrganization.cs
+++ b/sdk/dotnet/Metal/GetOrganization.cs
@@ -139,7 +139,7 @@ public sealed class GetOrganizationResult
public readonly string? Description;
public readonly string Id;
///
- /// Logo URL.
+ /// (Deprecated) Logo URL.
///
public readonly string Logo;
public readonly string Name;
diff --git a/sdk/go/equinix/metal/getOrganization.go b/sdk/go/equinix/metal/getOrganization.go
index 34abf032..3ed9796d 100644
--- a/sdk/go/equinix/metal/getOrganization.go
+++ b/sdk/go/equinix/metal/getOrganization.go
@@ -68,7 +68,9 @@ type LookupOrganizationResult struct {
// Description string.
Description *string `pulumi:"description"`
Id string `pulumi:"id"`
- // Logo URL.
+ // (Deprecated) Logo URL.
+ //
+ // Deprecated: Empty string is the only valid value. Support for this field has been removed from the API
Logo string `pulumi:"logo"`
Name string `pulumi:"name"`
OrganizationId string `pulumi:"organizationId"`
@@ -138,7 +140,9 @@ func (o LookupOrganizationResultOutput) Id() pulumi.StringOutput {
return o.ApplyT(func(v LookupOrganizationResult) string { return v.Id }).(pulumi.StringOutput)
}
-// Logo URL.
+// (Deprecated) Logo URL.
+//
+// Deprecated: Empty string is the only valid value. Support for this field has been removed from the API
func (o LookupOrganizationResultOutput) Logo() pulumi.StringOutput {
return o.ApplyT(func(v LookupOrganizationResult) string { return v.Logo }).(pulumi.StringOutput)
}
diff --git a/sdk/go/equinix/metal/organization.go b/sdk/go/equinix/metal/organization.go
index 2a02b634..33ea39e3 100644
--- a/sdk/go/equinix/metal/organization.go
+++ b/sdk/go/equinix/metal/organization.go
@@ -56,6 +56,8 @@ type Organization struct {
// Description string.
Description pulumi.StringOutput `pulumi:"description"`
// Logo URL.
+ //
+ // Deprecated: The default (empty string) is the only valid value. Support for this field has been removed from the API
Logo pulumi.StringOutput `pulumi:"logo"`
// The name of the Organization.
Name pulumi.StringOutput `pulumi:"name"`
@@ -104,6 +106,8 @@ type organizationState struct {
// Description string.
Description *string `pulumi:"description"`
// Logo URL.
+ //
+ // Deprecated: The default (empty string) is the only valid value. Support for this field has been removed from the API
Logo *string `pulumi:"logo"`
// The name of the Organization.
Name *string `pulumi:"name"`
@@ -123,6 +127,8 @@ type OrganizationState struct {
// Description string.
Description pulumi.StringPtrInput
// Logo URL.
+ //
+ // Deprecated: The default (empty string) is the only valid value. Support for this field has been removed from the API
Logo pulumi.StringPtrInput
// The name of the Organization.
Name pulumi.StringPtrInput
@@ -144,6 +150,8 @@ type organizationArgs struct {
// Description string.
Description *string `pulumi:"description"`
// Logo URL.
+ //
+ // Deprecated: The default (empty string) is the only valid value. Support for this field has been removed from the API
Logo *string `pulumi:"logo"`
// The name of the Organization.
Name *string `pulumi:"name"`
@@ -160,6 +168,8 @@ type OrganizationArgs struct {
// Description string.
Description pulumi.StringPtrInput
// Logo URL.
+ //
+ // Deprecated: The default (empty string) is the only valid value. Support for this field has been removed from the API
Logo pulumi.StringPtrInput
// The name of the Organization.
Name pulumi.StringPtrInput
@@ -272,6 +282,8 @@ func (o OrganizationOutput) Description() pulumi.StringOutput {
}
// Logo URL.
+//
+// Deprecated: The default (empty string) is the only valid value. Support for this field has been removed from the API
func (o OrganizationOutput) Logo() pulumi.StringOutput {
return o.ApplyT(func(v *Organization) pulumi.StringOutput { return v.Logo }).(pulumi.StringOutput)
}
diff --git a/sdk/java/src/main/java/com/equinix/pulumi/metal/Organization.java b/sdk/java/src/main/java/com/equinix/pulumi/metal/Organization.java
index 7d3be318..cbce9a7b 100644
--- a/sdk/java/src/main/java/com/equinix/pulumi/metal/Organization.java
+++ b/sdk/java/src/main/java/com/equinix/pulumi/metal/Organization.java
@@ -107,7 +107,11 @@ public Output description() {
/**
* Logo URL.
*
+ * @deprecated
+ * The default (empty string) is the only valid value. Support for this field has been removed from the API
+ *
*/
+ @Deprecated /* The default (empty string) is the only valid value. Support for this field has been removed from the API */
@Export(name="logo", refs={String.class}, tree="[0]")
private Output logo;
diff --git a/sdk/java/src/main/java/com/equinix/pulumi/metal/OrganizationArgs.java b/sdk/java/src/main/java/com/equinix/pulumi/metal/OrganizationArgs.java
index 32ca9705..facfd6fa 100644
--- a/sdk/java/src/main/java/com/equinix/pulumi/metal/OrganizationArgs.java
+++ b/sdk/java/src/main/java/com/equinix/pulumi/metal/OrganizationArgs.java
@@ -49,14 +49,22 @@ public Optional