Skip to content

Commit

Permalink
update sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
rawdaGastan committed Aug 14, 2024
1 parent 17f8012 commit 8155e3e
Show file tree
Hide file tree
Showing 30 changed files with 404 additions and 447 deletions.

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.

35 changes: 35 additions & 0 deletions sdk/go/threefold/init.go

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.

54 changes: 0 additions & 54 deletions sdk/go/threefold/provider/init.go

This file was deleted.

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.

30 changes: 15 additions & 15 deletions sdk/nodejs/provider/deployment.ts → sdk/nodejs/deployment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
// *** Do not edit by hand unless you're certain you know what you are doing! ***

import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as utilities from "../utilities";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
import * as utilities from "./utilities";

export class Deployment extends pulumi.CustomResource {
/**
Expand All @@ -20,7 +20,7 @@ export class Deployment extends pulumi.CustomResource {
}

/** @internal */
public static readonly __pulumiType = 'threefold:provider:Deployment';
public static readonly __pulumiType = 'threefold:index:Deployment';

/**
* Returns true if the given object is an instance of Deployment. This is designed to work even
Expand All @@ -34,20 +34,20 @@ export class Deployment extends pulumi.CustomResource {
}

public /*out*/ readonly contract_id!: pulumi.Output<number>;
public readonly disks!: pulumi.Output<outputs.provider.Disk[] | undefined>;
public readonly disks!: pulumi.Output<outputs.Disk[] | undefined>;
public /*out*/ readonly ip_range!: pulumi.Output<string>;
public readonly name!: pulumi.Output<string>;
public readonly network_name!: pulumi.Output<string | undefined>;
public /*out*/ readonly node_deployment_id!: pulumi.Output<{[key: string]: number}>;
public readonly node_id!: pulumi.Output<any>;
public readonly qsfs!: pulumi.Output<outputs.provider.QSFSInput[] | undefined>;
public /*out*/ readonly qsfs_computed!: pulumi.Output<outputs.provider.QSFSComputed[]>;
public readonly qsfs!: pulumi.Output<outputs.QSFSInput[] | undefined>;
public /*out*/ readonly qsfs_computed!: pulumi.Output<outputs.QSFSComputed[]>;
public readonly solution_provider!: pulumi.Output<number | undefined>;
public readonly solution_type!: pulumi.Output<string | undefined>;
public readonly vms!: pulumi.Output<outputs.provider.VMInput[] | undefined>;
public /*out*/ readonly vms_computed!: pulumi.Output<outputs.provider.VMComputed[]>;
public readonly zdbs!: pulumi.Output<outputs.provider.ZDBInput[] | undefined>;
public /*out*/ readonly zdbs_computed!: pulumi.Output<outputs.provider.ZDBComputed[]>;
public readonly vms!: pulumi.Output<outputs.VMInput[] | undefined>;
public /*out*/ readonly vms_computed!: pulumi.Output<outputs.VMComputed[]>;
public readonly zdbs!: pulumi.Output<outputs.ZDBInput[] | undefined>;
public /*out*/ readonly zdbs_computed!: pulumi.Output<outputs.ZDBComputed[]>;

/**
* Create a Deployment resource with the given unique name, arguments, and options.
Expand Down Expand Up @@ -107,13 +107,13 @@ export class Deployment extends pulumi.CustomResource {
* The set of arguments for constructing a Deployment resource.
*/
export interface DeploymentArgs {
disks?: pulumi.Input<pulumi.Input<inputs.provider.DiskArgs>[]>;
disks?: pulumi.Input<pulumi.Input<inputs.DiskArgs>[]>;
name: pulumi.Input<string>;
network_name?: pulumi.Input<string>;
node_id: any;
qsfs?: pulumi.Input<pulumi.Input<inputs.provider.QSFSInputArgs>[]>;
qsfs?: pulumi.Input<pulumi.Input<inputs.QSFSInputArgs>[]>;
solution_provider?: pulumi.Input<number>;
solution_type?: pulumi.Input<string>;
vms?: pulumi.Input<pulumi.Input<inputs.provider.VMInputArgs>[]>;
zdbs?: pulumi.Input<pulumi.Input<inputs.provider.ZDBInputArgs>[]>;
vms?: pulumi.Input<pulumi.Input<inputs.VMInputArgs>[]>;
zdbs?: pulumi.Input<pulumi.Input<inputs.ZDBInputArgs>[]>;
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// *** Do not edit by hand unless you're certain you know what you are doing! ***

import * as pulumi from "@pulumi/pulumi";
import * as utilities from "../utilities";
import * as utilities from "./utilities";

export class GatewayFQDN extends pulumi.CustomResource {
/**
Expand All @@ -18,7 +18,7 @@ export class GatewayFQDN extends pulumi.CustomResource {
}

/** @internal */
public static readonly __pulumiType = 'threefold:provider:GatewayFQDN';
public static readonly __pulumiType = 'threefold:index:GatewayFQDN';

/**
* Returns true if the given object is an instance of GatewayFQDN. This is designed to work even
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// *** Do not edit by hand unless you're certain you know what you are doing! ***

import * as pulumi from "@pulumi/pulumi";
import * as utilities from "../utilities";
import * as utilities from "./utilities";

export class GatewayName extends pulumi.CustomResource {
/**
Expand All @@ -18,7 +18,7 @@ export class GatewayName extends pulumi.CustomResource {
}

/** @internal */
public static readonly __pulumiType = 'threefold:provider:GatewayName';
public static readonly __pulumiType = 'threefold:index:GatewayName';

/**
* Returns true if the given object is an instance of GatewayName. This is designed to work even
Expand Down
Loading

0 comments on commit 8155e3e

Please sign in to comment.