Skip to content

Commit

Permalink
make build
Browse files Browse the repository at this point in the history
Signed-off-by: ocobleseqx <[email protected]>
  • Loading branch information
ocobleseqx committed Nov 17, 2023
1 parent 4872af2 commit 05ec2c7
Show file tree
Hide file tree
Showing 42 changed files with 813 additions and 64 deletions.
45 changes: 41 additions & 4 deletions provider/cmd/pulumi-resource-equinix/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,8 @@
"description": "Access point location\n"
},
"network": {
"$ref": "#/types/equinix:fabric/ConnectionASideAccessPointNetwork:ConnectionASideAccessPointNetwork"
"$ref": "#/types/equinix:fabric/ConnectionASideAccessPointNetwork:ConnectionASideAccessPointNetwork",
"description": "Simplified Network\n"
},
"peeringType": {
"type": "string",
Expand Down Expand Up @@ -476,7 +477,7 @@
"equinix:fabric/ConnectionASideAccessPointInterface:ConnectionASideAccessPointInterface": {
"properties": {
"id": {
"type": "string",
"type": "integer",
"description": "id\n"
},
"type": {
Expand Down Expand Up @@ -767,6 +768,10 @@
"type": "string",
"description": "Unique Resource Identifier\n"
},
"name": {
"type": "string",
"description": "Port name\n"
},
"type": {
"type": "string",
"description": "Interface type\n"
Expand Down Expand Up @@ -1168,7 +1173,8 @@
"description": "Access point location\n"
},
"network": {
"$ref": "#/types/equinix:fabric/ConnectionZSideAccessPointNetwork:ConnectionZSideAccessPointNetwork"
"$ref": "#/types/equinix:fabric/ConnectionZSideAccessPointNetwork:ConnectionZSideAccessPointNetwork",
"description": "Simplified Network\n"
},
"peeringType": {
"type": "string",
Expand Down Expand Up @@ -1300,7 +1306,7 @@
"equinix:fabric/ConnectionZSideAccessPointInterface:ConnectionZSideAccessPointInterface": {
"properties": {
"id": {
"type": "string",
"type": "integer",
"description": "id\n"
},
"type": {
Expand Down Expand Up @@ -1591,6 +1597,10 @@
"type": "string",
"description": "Unique Resource Identifier\n"
},
"name": {
"type": "string",
"description": "Port name\n"
},
"type": {
"type": "string",
"description": "Interface type\n"
Expand Down Expand Up @@ -9664,13 +9674,25 @@
"$ref": "#/types/equinix:fabric/CloudRouterAccount:CloudRouterAccount",
"description": "Customer account information that is associated with this Fabric Cloud Router\n"
},
"bgpIpv4RoutesCount": {
"type": "integer",
"description": "Access point used and maximum number of IPv4 BGP routes\n"
},
"bgpIpv6RoutesCount": {
"type": "integer",
"description": "Access point used and maximum number of IPv6 BGP routes\n"
},
"changeLogs": {
"type": "array",
"items": {
"$ref": "#/types/equinix:fabric/CloudRouterChangeLog:CloudRouterChangeLog"
},
"description": "Captures Fabric Cloud Router lifecycle change information\n"
},
"connectionsCount": {
"type": "integer",
"description": "Number of connections associated with this Access point\n"
},
"description": {
"type": "string",
"description": "Customer-provided Fabric Cloud Router description\n"
Expand Down Expand Up @@ -9720,7 +9742,10 @@
}
},
"required": [
"bgpIpv4RoutesCount",
"bgpIpv6RoutesCount",
"changeLogs",
"connectionsCount",
"equinixAsn",
"href",
"location",
Expand Down Expand Up @@ -9784,13 +9809,25 @@
"$ref": "#/types/equinix:fabric/CloudRouterAccount:CloudRouterAccount",
"description": "Customer account information that is associated with this Fabric Cloud Router\n"
},
"bgpIpv4RoutesCount": {
"type": "integer",
"description": "Access point used and maximum number of IPv4 BGP routes\n"
},
"bgpIpv6RoutesCount": {
"type": "integer",
"description": "Access point used and maximum number of IPv6 BGP routes\n"
},
"changeLogs": {
"type": "array",
"items": {
"$ref": "#/types/equinix:fabric/CloudRouterChangeLog:CloudRouterChangeLog"
},
"description": "Captures Fabric Cloud Router lifecycle change information\n"
},
"connectionsCount": {
"type": "integer",
"description": "Number of connections associated with this Access point\n"
},
"description": {
"type": "string",
"description": "Customer-provided Fabric Cloud Router description\n"
Expand Down
36 changes: 36 additions & 0 deletions sdk/dotnet/Fabric/CloudRouter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,30 @@ public partial class CloudRouter : global::Pulumi.CustomResource
[Output("account")]
public Output<Outputs.CloudRouterAccount?> Account { get; private set; } = null!;

/// <summary>
/// Access point used and maximum number of IPv4 BGP routes
/// </summary>
[Output("bgpIpv4RoutesCount")]
public Output<int> BgpIpv4RoutesCount { get; private set; } = null!;

/// <summary>
/// Access point used and maximum number of IPv6 BGP routes
/// </summary>
[Output("bgpIpv6RoutesCount")]
public Output<int> BgpIpv6RoutesCount { get; private set; } = null!;

/// <summary>
/// Captures Fabric Cloud Router lifecycle change information
/// </summary>
[Output("changeLogs")]
public Output<ImmutableArray<Outputs.CloudRouterChangeLog>> ChangeLogs { get; private set; } = null!;

/// <summary>
/// Number of connections associated with this Access point
/// </summary>
[Output("connectionsCount")]
public Output<int> ConnectionsCount { get; private set; } = null!;

/// <summary>
/// Customer-provided Fabric Cloud Router description
/// </summary>
Expand Down Expand Up @@ -260,6 +278,18 @@ public sealed class CloudRouterState : global::Pulumi.ResourceArgs
[Input("account")]
public Input<Inputs.CloudRouterAccountGetArgs>? Account { get; set; }

/// <summary>
/// Access point used and maximum number of IPv4 BGP routes
/// </summary>
[Input("bgpIpv4RoutesCount")]
public Input<int>? BgpIpv4RoutesCount { get; set; }

/// <summary>
/// Access point used and maximum number of IPv6 BGP routes
/// </summary>
[Input("bgpIpv6RoutesCount")]
public Input<int>? BgpIpv6RoutesCount { get; set; }

[Input("changeLogs")]
private InputList<Inputs.CloudRouterChangeLogGetArgs>? _changeLogs;

Expand All @@ -272,6 +302,12 @@ public InputList<Inputs.CloudRouterChangeLogGetArgs> ChangeLogs
set => _changeLogs = value;
}

/// <summary>
/// Number of connections associated with this Access point
/// </summary>
[Input("connectionsCount")]
public Input<int>? ConnectionsCount { get; set; }

/// <summary>
/// Customer-provided Fabric Cloud Router description
/// </summary>
Expand Down
3 changes: 3 additions & 0 deletions sdk/dotnet/Fabric/Inputs/ConnectionASideAccessPointArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ public sealed class ConnectionASideAccessPointArgs : global::Pulumi.ResourceArgs
[Input("location")]
public Input<Inputs.ConnectionASideAccessPointLocationArgs>? Location { get; set; }

/// <summary>
/// Simplified Network
/// </summary>
[Input("network")]
public Input<Inputs.ConnectionASideAccessPointNetworkArgs>? Network { get; set; }

Expand Down
3 changes: 3 additions & 0 deletions sdk/dotnet/Fabric/Inputs/ConnectionASideAccessPointGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ public sealed class ConnectionASideAccessPointGetArgs : global::Pulumi.ResourceA
[Input("location")]
public Input<Inputs.ConnectionASideAccessPointLocationGetArgs>? Location { get; set; }

/// <summary>
/// Simplified Network
/// </summary>
[Input("network")]
public Input<Inputs.ConnectionASideAccessPointNetworkGetArgs>? Network { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class ConnectionASideAccessPointInterfaceArgs : global::Pulumi.Res
/// id
/// </summary>
[Input("id")]
public Input<string>? Id { get; set; }
public Input<int>? Id { get; set; }

/// <summary>
/// Interface type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class ConnectionASideAccessPointInterfaceGetArgs : global::Pulumi.
/// id
/// </summary>
[Input("id")]
public Input<string>? Id { get; set; }
public Input<int>? Id { get; set; }

/// <summary>
/// Interface type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ public sealed class ConnectionASideAccessPointVirtualDeviceArgs : global::Pulumi
[Input("href")]
public Input<string>? Href { get; set; }

/// <summary>
/// Port name
/// </summary>
[Input("name")]
public Input<string>? Name { get; set; }

/// <summary>
/// Interface type
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ public sealed class ConnectionASideAccessPointVirtualDeviceGetArgs : global::Pul
[Input("href")]
public Input<string>? Href { get; set; }

/// <summary>
/// Port name
/// </summary>
[Input("name")]
public Input<string>? Name { get; set; }

/// <summary>
/// Interface type
/// </summary>
Expand Down
3 changes: 3 additions & 0 deletions sdk/dotnet/Fabric/Inputs/ConnectionZSideAccessPointArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ public sealed class ConnectionZSideAccessPointArgs : global::Pulumi.ResourceArgs
[Input("location")]
public Input<Inputs.ConnectionZSideAccessPointLocationArgs>? Location { get; set; }

/// <summary>
/// Simplified Network
/// </summary>
[Input("network")]
public Input<Inputs.ConnectionZSideAccessPointNetworkArgs>? Network { get; set; }

Expand Down
3 changes: 3 additions & 0 deletions sdk/dotnet/Fabric/Inputs/ConnectionZSideAccessPointGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ public sealed class ConnectionZSideAccessPointGetArgs : global::Pulumi.ResourceA
[Input("location")]
public Input<Inputs.ConnectionZSideAccessPointLocationGetArgs>? Location { get; set; }

/// <summary>
/// Simplified Network
/// </summary>
[Input("network")]
public Input<Inputs.ConnectionZSideAccessPointNetworkGetArgs>? Network { get; set; }

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class ConnectionZSideAccessPointInterfaceArgs : global::Pulumi.Res
/// id
/// </summary>
[Input("id")]
public Input<string>? Id { get; set; }
public Input<int>? Id { get; set; }

/// <summary>
/// Interface type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class ConnectionZSideAccessPointInterfaceGetArgs : global::Pulumi.
/// id
/// </summary>
[Input("id")]
public Input<string>? Id { get; set; }
public Input<int>? Id { get; set; }

/// <summary>
/// Interface type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ public sealed class ConnectionZSideAccessPointVirtualDeviceArgs : global::Pulumi
[Input("href")]
public Input<string>? Href { get; set; }

/// <summary>
/// Port name
/// </summary>
[Input("name")]
public Input<string>? Name { get; set; }

/// <summary>
/// Interface type
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ public sealed class ConnectionZSideAccessPointVirtualDeviceGetArgs : global::Pul
[Input("href")]
public Input<string>? Href { get; set; }

/// <summary>
/// Port name
/// </summary>
[Input("name")]
public Input<string>? Name { get; set; }

/// <summary>
/// Interface type
/// </summary>
Expand Down
3 changes: 3 additions & 0 deletions sdk/dotnet/Fabric/Outputs/ConnectionASideAccessPoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ public sealed class ConnectionASideAccessPoint
/// Access point location
/// </summary>
public readonly Outputs.ConnectionASideAccessPointLocation? Location;
/// <summary>
/// Simplified Network
/// </summary>
public readonly Outputs.ConnectionASideAccessPointNetwork? Network;
/// <summary>
/// Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class ConnectionASideAccessPointInterface
/// <summary>
/// id
/// </summary>
public readonly string? Id;
public readonly int? Id;
/// <summary>
/// Interface type
/// </summary>
Expand All @@ -28,7 +28,7 @@ public sealed class ConnectionASideAccessPointInterface

[OutputConstructor]
private ConnectionASideAccessPointInterface(
string? id,
int? id,

string? type,

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ public sealed class ConnectionASideAccessPointVirtualDevice
/// </summary>
public readonly string? Href;
/// <summary>
/// Port name
/// </summary>
public readonly string? Name;
/// <summary>
/// Interface type
/// </summary>
public readonly string? Type;
Expand All @@ -30,11 +34,14 @@ public sealed class ConnectionASideAccessPointVirtualDevice
private ConnectionASideAccessPointVirtualDevice(
string? href,

string? name,

string? type,

string? uuid)
{
Href = href;
Name = name;
Type = type;
Uuid = uuid;
}
Expand Down
3 changes: 3 additions & 0 deletions sdk/dotnet/Fabric/Outputs/ConnectionZSideAccessPoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ public sealed class ConnectionZSideAccessPoint
/// Access point location
/// </summary>
public readonly Outputs.ConnectionZSideAccessPointLocation? Location;
/// <summary>
/// Simplified Network
/// </summary>
public readonly Outputs.ConnectionZSideAccessPointNetwork? Network;
/// <summary>
/// Peering Type- PRIVATE,MICROSOFT,PUBLIC, MANUAL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class ConnectionZSideAccessPointInterface
/// <summary>
/// id
/// </summary>
public readonly string? Id;
public readonly int? Id;
/// <summary>
/// Interface type
/// </summary>
Expand All @@ -28,7 +28,7 @@ public sealed class ConnectionZSideAccessPointInterface

[OutputConstructor]
private ConnectionZSideAccessPointInterface(
string? id,
int? id,

string? type,

Expand Down
Loading

0 comments on commit 05ec2c7

Please sign in to comment.