style: format with tabs

This commit is contained in:
2025-12-08 11:14:14 -05:00
parent c4445aa92f
commit 54f0fdb6c9
48 changed files with 7088 additions and 6580 deletions

View File

@@ -22,58 +22,65 @@ import * as utilities from "./utilities";
* export const networkZoneName = _this.then(_this => _this.name);
* ```
*/
export function getNetworkZone(args: GetNetworkZoneArgs, opts?: pulumi.InvokeOptions): Promise<GetNetworkZoneResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("incus:index/getNetworkZone:getNetworkZone", {
"description": args.description,
"name": args.name,
"project": args.project,
"remote": args.remote,
}, opts);
export function getNetworkZone(
args: GetNetworkZoneArgs,
opts?: pulumi.InvokeOptions,
): Promise<GetNetworkZoneResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke(
"incus:index/getNetworkZone:getNetworkZone",
{
description: args.description,
name: args.name,
project: args.project,
remote: args.remote,
},
opts,
);
}
/**
* A collection of arguments for invoking getNetworkZone.
*/
export interface GetNetworkZoneArgs {
/**
* Description of the network zone.
*/
description?: string;
/**
* **Required** - Name of the network zone.
*/
name: string;
/**
* *Optional* - Name of the project where the network zone is be stored.
*/
project?: string;
/**
* *Optional* - The remote in which the resource was created. If
* not provided, the provider's default remote will be used.
*/
remote?: string;
/**
* Description of the network zone.
*/
description?: string;
/**
* **Required** - Name of the network zone.
*/
name: string;
/**
* *Optional* - Name of the project where the network zone is be stored.
*/
project?: string;
/**
* *Optional* - The remote in which the resource was created. If
* not provided, the provider's default remote will be used.
*/
remote?: string;
}
/**
* A collection of values returned by getNetworkZone.
*/
export interface GetNetworkZoneResult {
/**
* Map of key/value pairs of config settings.
*/
readonly config: {[key: string]: string};
/**
* Description of the network zone.
*/
readonly description: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly name: string;
readonly project?: string;
readonly remote?: string;
/**
* Map of key/value pairs of config settings.
*/
readonly config: { [key: string]: string };
/**
* Description of the network zone.
*/
readonly description: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly name: string;
readonly project?: string;
readonly remote?: string;
}
/**
* ## # incus.NetworkZone
@@ -93,35 +100,42 @@ export interface GetNetworkZoneResult {
* export const networkZoneName = _this.then(_this => _this.name);
* ```
*/
export function getNetworkZoneOutput(args: GetNetworkZoneOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNetworkZoneResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("incus:index/getNetworkZone:getNetworkZone", {
"description": args.description,
"name": args.name,
"project": args.project,
"remote": args.remote,
}, opts);
export function getNetworkZoneOutput(
args: GetNetworkZoneOutputArgs,
opts?: pulumi.InvokeOutputOptions,
): pulumi.Output<GetNetworkZoneResult> {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput(
"incus:index/getNetworkZone:getNetworkZone",
{
description: args.description,
name: args.name,
project: args.project,
remote: args.remote,
},
opts,
);
}
/**
* A collection of arguments for invoking getNetworkZone.
*/
export interface GetNetworkZoneOutputArgs {
/**
* Description of the network zone.
*/
description?: pulumi.Input<string>;
/**
* **Required** - Name of the network zone.
*/
name: pulumi.Input<string>;
/**
* *Optional* - Name of the project where the network zone is be stored.
*/
project?: pulumi.Input<string>;
/**
* *Optional* - The remote in which the resource was created. If
* not provided, the provider's default remote will be used.
*/
remote?: pulumi.Input<string>;
/**
* Description of the network zone.
*/
description?: pulumi.Input<string>;
/**
* **Required** - Name of the network zone.
*/
name: pulumi.Input<string>;
/**
* *Optional* - Name of the project where the network zone is be stored.
*/
project?: pulumi.Input<string>;
/**
* *Optional* - The remote in which the resource was created. If
* not provided, the provider's default remote will be used.
*/
remote?: pulumi.Input<string>;
}