Skip to content

Commit

Permalink
feat: prepare for upstream release v0.63.0
Browse files Browse the repository at this point in the history
  • Loading branch information
muhlba91 committed Aug 22, 2024
1 parent eefe8bd commit 44ffa73
Show file tree
Hide file tree
Showing 38 changed files with 721 additions and 539 deletions.
2 changes: 1 addition & 1 deletion provider/cmd/pulumi-resource-proxmoxve/schema-embed.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions sdk/dotnet/Ct/Container.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public partial class Container : global::Pulumi.CustomResource
public Output<Outputs.ContainerFeatures?> Features { get; private set; } = null!;

/// <summary>
/// The identifier for a file containing a hook script (needs to be executable).
/// The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
/// </summary>
[Output("hookScriptFileId")]
public Output<string?> HookScriptFileId { get; private set; } = null!;
Expand Down Expand Up @@ -272,7 +272,7 @@ public sealed class ContainerArgs : global::Pulumi.ResourceArgs
public Input<Inputs.ContainerFeaturesArgs>? Features { get; set; }

/// <summary>
/// The identifier for a file containing a hook script (needs to be executable).
/// The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
/// </summary>
[Input("hookScriptFileId")]
public Input<string>? HookScriptFileId { get; set; }
Expand Down Expand Up @@ -461,7 +461,7 @@ public sealed class ContainerState : global::Pulumi.ResourceArgs
public Input<Inputs.ContainerFeaturesGetArgs>? Features { get; set; }

/// <summary>
/// The identifier for a file containing a hook script (needs to be executable).
/// The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
/// </summary>
[Input("hookScriptFileId")]
public Input<string>? HookScriptFileId { get; set; }
Expand Down
18 changes: 18 additions & 0 deletions sdk/dotnet/Storage/File.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,12 @@ public partial class File : global::Pulumi.CustomResource
[Output("datastoreId")]
public Output<string> DatastoreId { get; private set; } = null!;

/// <summary>
/// The file mode in octal format, e.g. `0700` or `600`. Note that the prefixes `0o` and `0x` is not supported! Setting this attribute is also only allowed for `root@pam` authenticated user.
/// </summary>
[Output("fileMode")]
public Output<string?> FileMode { get; private set; } = null!;

/// <summary>
/// The file modification date (RFC 3339).
/// </summary>
Expand Down Expand Up @@ -259,6 +265,12 @@ public sealed class FileArgs : global::Pulumi.ResourceArgs
[Input("datastoreId", required: true)]
public Input<string> DatastoreId { get; set; } = null!;

/// <summary>
/// The file mode in octal format, e.g. `0700` or `600`. Note that the prefixes `0o` and `0x` is not supported! Setting this attribute is also only allowed for `root@pam` authenticated user.
/// </summary>
[Input("fileMode")]
public Input<string>? FileMode { get; set; }

/// <summary>
/// The node name.
/// </summary>
Expand Down Expand Up @@ -314,6 +326,12 @@ public sealed class FileState : global::Pulumi.ResourceArgs
[Input("datastoreId")]
public Input<string>? DatastoreId { get; set; }

/// <summary>
/// The file mode in octal format, e.g. `0700` or `600`. Note that the prefixes `0o` and `0x` is not supported! Setting this attribute is also only allowed for `root@pam` authenticated user.
/// </summary>
[Input("fileMode")]
public Input<string>? FileMode { get; set; }

/// <summary>
/// The file modification date (RFC 3339).
/// </summary>
Expand Down
6 changes: 3 additions & 3 deletions sdk/dotnet/Vm/VirtualMachine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public partial class VirtualMachine : global::Pulumi.CustomResource
public Output<Outputs.VirtualMachineEfiDisk?> EfiDisk { get; private set; } = null!;

/// <summary>
/// The identifier for a file containing a hook script (needs to be executable).
/// The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
/// </summary>
[Output("hookScriptFileId")]
public Output<string?> HookScriptFileId { get; private set; } = null!;
Expand Down Expand Up @@ -496,7 +496,7 @@ public InputList<Inputs.VirtualMachineDiskArgs> Disks
public Input<Inputs.VirtualMachineEfiDiskArgs>? EfiDisk { get; set; }

/// <summary>
/// The identifier for a file containing a hook script (needs to be executable).
/// The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
/// </summary>
[Input("hookScriptFileId")]
public Input<string>? HookScriptFileId { get; set; }
Expand Down Expand Up @@ -878,7 +878,7 @@ public InputList<Inputs.VirtualMachineDiskGetArgs> Disks
public Input<Inputs.VirtualMachineEfiDiskGetArgs>? EfiDisk { get; set; }

/// <summary>
/// The identifier for a file containing a hook script (needs to be executable).
/// The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
/// </summary>
[Input("hookScriptFileId")]
public Input<string>? HookScriptFileId { get; set; }
Expand Down
12 changes: 6 additions & 6 deletions sdk/go/proxmoxve/ct/container.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions sdk/go/proxmoxve/storage/file.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions sdk/go/proxmoxve/vm/virtualMachine.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -129,14 +129,14 @@ public Output<Optional<ContainerFeatures>> features() {
return Codegen.optional(this.features);
}
/**
* The identifier for a file containing a hook script (needs to be executable).
* The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
*
*/
@Export(name="hookScriptFileId", refs={String.class}, tree="[0]")
private Output</* @Nullable */ String> hookScriptFileId;

/**
* @return The identifier for a file containing a hook script (needs to be executable).
* @return The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
*
*/
public Output<Optional<String>> hookScriptFileId() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,14 @@ public Optional<Output<ContainerFeaturesArgs>> features() {
}

/**
* The identifier for a file containing a hook script (needs to be executable).
* The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
*
*/
@Import(name="hookScriptFileId")
private @Nullable Output<String> hookScriptFileId;

/**
* @return The identifier for a file containing a hook script (needs to be executable).
* @return The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
*
*/
public Optional<Output<String>> hookScriptFileId() {
Expand Down Expand Up @@ -618,7 +618,7 @@ public Builder features(ContainerFeaturesArgs features) {
}

/**
* @param hookScriptFileId The identifier for a file containing a hook script (needs to be executable).
* @param hookScriptFileId The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
*
* @return builder
*
Expand All @@ -629,7 +629,7 @@ public Builder hookScriptFileId(@Nullable Output<String> hookScriptFileId) {
}

/**
* @param hookScriptFileId The identifier for a file containing a hook script (needs to be executable).
* @param hookScriptFileId The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
*
* @return builder
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ public Optional<Output<ContainerFeaturesArgs>> features() {
}

/**
* The identifier for a file containing a hook script (needs to be executable).
* The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
*
*/
@Import(name="hookScriptFileId")
private @Nullable Output<String> hookScriptFileId;

/**
* @return The identifier for a file containing a hook script (needs to be executable).
* @return The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
*
*/
public Optional<Output<String>> hookScriptFileId() {
Expand Down Expand Up @@ -617,7 +617,7 @@ public Builder features(ContainerFeaturesArgs features) {
}

/**
* @param hookScriptFileId The identifier for a file containing a hook script (needs to be executable).
* @param hookScriptFileId The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
*
* @return builder
*
Expand All @@ -628,7 +628,7 @@ public Builder hookScriptFileId(@Nullable Output<String> hookScriptFileId) {
}

/**
* @param hookScriptFileId The identifier for a file containing a hook script (needs to be executable).
* @param hookScriptFileId The identifier for a file containing a hook script (needs to be executable, e.g. by using the `proxmox_virtual_environment_file.file_mode` attribute).
*
* @return builder
*
Expand Down
Loading

0 comments on commit 44ffa73

Please sign in to comment.