Skip to content

Commit

Permalink
make build_sdks
Browse files Browse the repository at this point in the history
  • Loading branch information
ocobleseqx committed Mar 12, 2024
1 parent 11027a8 commit 72fa476
Show file tree
Hide file tree
Showing 222 changed files with 2,151 additions and 344 deletions.
12 changes: 4 additions & 8 deletions sdk/dotnet/Fabric/GetCloudRouter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ public static class GetCloudRouter
///
/// API documentation can be found here - https://developer.equinix.com/dev-docs/fabric/api-reference/fabric-v4-apis#fabric-cloud-routers
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// <!--Start PulumiCodeChooser -->
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -35,8 +34,7 @@ public static class GetCloudRouter
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// <!--End PulumiCodeChooser -->
/// </summary>
public static Task<GetCloudRouterResult> InvokeAsync(GetCloudRouterArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetCloudRouterResult>("equinix:fabric/getCloudRouter:getCloudRouter", args ?? new GetCloudRouterArgs(), options.WithDefaults());
Expand All @@ -46,10 +44,9 @@ public static Task<GetCloudRouterResult> InvokeAsync(GetCloudRouterArgs args, In
///
/// API documentation can be found here - https://developer.equinix.com/dev-docs/fabric/api-reference/fabric-v4-apis#fabric-cloud-routers
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -65,8 +62,7 @@ public static Task<GetCloudRouterResult> InvokeAsync(GetCloudRouterArgs args, In
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Output<GetCloudRouterResult> Invoke(GetCloudRouterInvokeArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetCloudRouterResult>("equinix:fabric/getCloudRouter:getCloudRouter", args ?? new GetCloudRouterInvokeArgs(), options.WithDefaults());
Expand Down
12 changes: 4 additions & 8 deletions sdk/dotnet/Fabric/GetConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ public static class GetConnection
/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch connection for a given UUID
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -33,19 +32,17 @@ public static class GetConnection
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Task<GetConnectionResult> InvokeAsync(GetConnectionArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetConnectionResult>("equinix:fabric/getConnection:getConnection", args ?? new GetConnectionArgs(), options.WithDefaults());

/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch connection for a given UUID
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -61,8 +58,7 @@ public static Task<GetConnectionResult> InvokeAsync(GetConnectionArgs args, Invo
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Output<GetConnectionResult> Invoke(GetConnectionInvokeArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetConnectionResult>("equinix:fabric/getConnection:getConnection", args ?? new GetConnectionInvokeArgs(), options.WithDefaults());
Expand Down
12 changes: 4 additions & 8 deletions sdk/dotnet/Fabric/GetNetwork.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ public static class GetNetwork
/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch Fabric Network for a given UUID
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -33,19 +32,17 @@ public static class GetNetwork
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Task<GetNetworkResult> InvokeAsync(GetNetworkArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetNetworkResult>("equinix:fabric/getNetwork:getNetwork", args ?? new GetNetworkArgs(), options.WithDefaults());

/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch Fabric Network for a given UUID
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -61,8 +58,7 @@ public static Task<GetNetworkResult> InvokeAsync(GetNetworkArgs args, InvokeOpti
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Output<GetNetworkResult> Invoke(GetNetworkInvokeArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetNetworkResult>("equinix:fabric/getNetwork:getNetwork", args ?? new GetNetworkInvokeArgs(), options.WithDefaults());
Expand Down
12 changes: 4 additions & 8 deletions sdk/dotnet/Fabric/GetPort.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ public static class GetPort
/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch port by uuid
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -33,19 +32,17 @@ public static class GetPort
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Task<GetPortResult> InvokeAsync(GetPortArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetPortResult>("equinix:fabric/getPort:getPort", args ?? new GetPortArgs(), options.WithDefaults());

/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch port by uuid
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -61,8 +58,7 @@ public static Task<GetPortResult> InvokeAsync(GetPortArgs args, InvokeOptions? o
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Output<GetPortResult> Invoke(GetPortInvokeArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetPortResult>("equinix:fabric/getPort:getPort", args ?? new GetPortInvokeArgs(), options.WithDefaults());
Expand Down
12 changes: 4 additions & 8 deletions sdk/dotnet/Fabric/GetPorts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ public static class GetPorts
/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch port by name
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -36,19 +35,17 @@ public static class GetPorts
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Task<GetPortsResult> InvokeAsync(GetPortsArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetPortsResult>("equinix:fabric/getPorts:getPorts", args ?? new GetPortsArgs(), options.WithDefaults());

/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch port by name
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -67,8 +64,7 @@ public static Task<GetPortsResult> InvokeAsync(GetPortsArgs args, InvokeOptions?
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Output<GetPortsResult> Invoke(GetPortsInvokeArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetPortsResult>("equinix:fabric/getPorts:getPorts", args ?? new GetPortsInvokeArgs(), options.WithDefaults());
Expand Down
12 changes: 4 additions & 8 deletions sdk/dotnet/Fabric/GetRoutingProtocol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ public static class GetRoutingProtocol
///
/// API documentation can be found here - https://developer.equinix.com/dev-docs/fabric/api-reference/fabric-v4-apis#routing-protocols
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -36,8 +35,7 @@ public static class GetRoutingProtocol
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Task<GetRoutingProtocolResult> InvokeAsync(GetRoutingProtocolArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetRoutingProtocolResult>("equinix:fabric/getRoutingProtocol:getRoutingProtocol", args ?? new GetRoutingProtocolArgs(), options.WithDefaults());
Expand All @@ -47,10 +45,9 @@ public static Task<GetRoutingProtocolResult> InvokeAsync(GetRoutingProtocolArgs
///
/// API documentation can be found here - https://developer.equinix.com/dev-docs/fabric/api-reference/fabric-v4-apis#routing-protocols
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -67,8 +64,7 @@ public static Task<GetRoutingProtocolResult> InvokeAsync(GetRoutingProtocolArgs
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Output<GetRoutingProtocolResult> Invoke(GetRoutingProtocolInvokeArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetRoutingProtocolResult>("equinix:fabric/getRoutingProtocol:getRoutingProtocol", args ?? new GetRoutingProtocolInvokeArgs(), options.WithDefaults());
Expand Down
12 changes: 4 additions & 8 deletions sdk/dotnet/Fabric/GetServiceProfile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ public static class GetServiceProfile
/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch Service Profile by UUID filter criteria
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -33,19 +32,17 @@ public static class GetServiceProfile
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Task<GetServiceProfileResult> InvokeAsync(GetServiceProfileArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetServiceProfileResult>("equinix:fabric/getServiceProfile:getServiceProfile", args ?? new GetServiceProfileArgs(), options.WithDefaults());

/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch Service Profile by UUID filter criteria
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -61,8 +58,7 @@ public static Task<GetServiceProfileResult> InvokeAsync(GetServiceProfileArgs ar
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Output<GetServiceProfileResult> Invoke(GetServiceProfileInvokeArgs args, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetServiceProfileResult>("equinix:fabric/getServiceProfile:getServiceProfile", args ?? new GetServiceProfileInvokeArgs(), options.WithDefaults());
Expand Down
12 changes: 4 additions & 8 deletions sdk/dotnet/Fabric/GetServiceProfiles.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ public static class GetServiceProfiles
/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch Service Profile by name filter criteria
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -41,19 +40,17 @@ public static class GetServiceProfiles
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Task<GetServiceProfilesResult> InvokeAsync(GetServiceProfilesArgs? args = null, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.InvokeAsync<GetServiceProfilesResult>("equinix:fabric/getServiceProfiles:getServiceProfiles", args ?? new GetServiceProfilesArgs(), options.WithDefaults());

/// <summary>
/// Fabric V4 API compatible data resource that allow user to fetch Service Profile by name filter criteria
///
/// {{% examples %}}
/// ## Example Usage
/// {{% example %}}
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand All @@ -77,8 +74,7 @@ public static Task<GetServiceProfilesResult> InvokeAsync(GetServiceProfilesArgs?
///
/// });
/// ```
/// {{% /example %}}
/// {{% /examples %}}
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
public static Output<GetServiceProfilesResult> Invoke(GetServiceProfilesInvokeArgs? args = null, InvokeOptions? options = null)
=> global::Pulumi.Deployment.Instance.Invoke<GetServiceProfilesResult>("equinix:fabric/getServiceProfiles:getServiceProfiles", args ?? new GetServiceProfilesInvokeArgs(), options.WithDefaults());
Expand Down
2 changes: 2 additions & 0 deletions sdk/dotnet/Fabric/Network.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ namespace Pulumi.Equinix.Fabric
///
/// ## Example Usage
///
/// &lt;!--Start PulumiCodeChooser --&gt;
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
Expand Down Expand Up @@ -46,6 +47,7 @@ namespace Pulumi.Equinix.Fabric
///
/// });
/// ```
/// &lt;!--End PulumiCodeChooser --&gt;
/// </summary>
[EquinixResourceType("equinix:fabric/network:Network")]
public partial class Network : global::Pulumi.CustomResource
Expand Down
6 changes: 5 additions & 1 deletion sdk/dotnet/Metal/Device.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,11 @@ namespace Pulumi.Equinix.Metal
///
/// ## Import
///
/// This resource can be imported using an existing device ID:&lt;break&gt;&lt;break&gt; ```sh&lt;break&gt; $ pulumi import equinix:metal/device:Device equinix_metal_device {existing_device_id} &lt;break&gt;```&lt;break&gt;&lt;break&gt;
/// This resource can be imported using an existing device ID:
///
/// ```sh
/// $ pulumi import equinix:metal/device:Device equinix_metal_device {existing_device_id}
/// ```
/// </summary>
[EquinixResourceType("equinix:metal/device:Device")]
public partial class Device : global::Pulumi.CustomResource
Expand Down
6 changes: 5 additions & 1 deletion sdk/dotnet/Metal/DeviceNetworkType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ namespace Pulumi.Equinix.Metal
///
/// ## Import
///
/// This resource can also be imported using existing device ID:&lt;break&gt;&lt;break&gt; ```sh&lt;break&gt; $ pulumi import equinix:metal/deviceNetworkType:DeviceNetworkType equinix_metal_device_network_type {existing device_id} &lt;break&gt;```&lt;break&gt;&lt;break&gt;
/// This resource can also be imported using existing device ID:
///
/// ```sh
/// $ pulumi import equinix:metal/deviceNetworkType:DeviceNetworkType equinix_metal_device_network_type {existing device_id}
/// ```
/// </summary>
[EquinixResourceType("equinix:metal/deviceNetworkType:DeviceNetworkType")]
public partial class DeviceNetworkType : global::Pulumi.CustomResource
Expand Down
Loading

0 comments on commit 72fa476

Please sign in to comment.