Skip to content

Commit 6610b89

Browse files
committed
feat(deps): prepare for upstream release v0.53.0
1 parent 9dfc03c commit 6610b89

File tree

17 files changed

+159
-20
lines changed

17 files changed

+159
-20
lines changed

provider/cmd/pulumi-resource-proxmoxve/schema-embed.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

provider/cmd/pulumi-resource-proxmoxve/schema.json

Lines changed: 6 additions & 1 deletion
Large diffs are not rendered by default.

sdk/dotnet/Storage/File.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Pulumi.ProxmoxVE.Storage
1616
///
1717
/// ### Backups (`dump`)
1818
///
19-
/// > **Note:** The resource with this content type uses SSH access to the node. You might need to configure the `ssh` option in the `provider` section.
19+
/// > The resource with this content type uses SSH access to the node. You might need to configure the `ssh` option in the `provider` section.
2020
///
2121
/// <!--Start PulumiCodeChooser -->
2222
/// ```csharp
@@ -44,7 +44,7 @@ namespace Pulumi.ProxmoxVE.Storage
4444
///
4545
/// ### Images
4646
///
47-
/// **Consider using `proxmoxve.Download.File` resource instead. Using this resource for images is less efficient (requires to transfer uploaded image to node) though still supported.**
47+
/// > Consider using `proxmoxve.Download.File` resource instead. Using this resource for images is less efficient (requires to transfer uploaded image to node) though still supported.
4848
///
4949
/// <!--Start PulumiCodeChooser -->
5050
/// ```csharp
@@ -72,7 +72,7 @@ namespace Pulumi.ProxmoxVE.Storage
7272
///
7373
/// ### Container Template (`vztmpl`)
7474
///
75-
/// **Consider using `proxmoxve.Download.File` resource instead. Using this resource for container images is less efficient (requires to transfer uploaded image to node) though still supported.**
75+
/// > Consider using `proxmoxve.Download.File` resource instead. Using this resource for container images is less efficient (requires to transfer uploaded image to node) though still supported.
7676
///
7777
/// <!--Start PulumiCodeChooser -->
7878
/// ```csharp

sdk/dotnet/Vm/Inputs/VirtualMachineInitializationArgs.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ public InputList<Inputs.VirtualMachineInitializationIpConfigArgs> IpConfigs
6868
[Input("type")]
6969
public Input<string>? Type { get; set; }
7070

71+
/// <summary>
72+
/// Whether to do an automatic package upgrade after the first boot (defaults to `true`).
73+
/// </summary>
74+
[Input("upgrade")]
75+
public Input<bool>? Upgrade { get; set; }
76+
7177
/// <summary>
7278
/// The user account configuration (conflicts
7379
/// with `user_data_file_id`).

sdk/dotnet/Vm/Inputs/VirtualMachineInitializationGetArgs.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ public InputList<Inputs.VirtualMachineInitializationIpConfigGetArgs> IpConfigs
6868
[Input("type")]
6969
public Input<string>? Type { get; set; }
7070

71+
/// <summary>
72+
/// Whether to do an automatic package upgrade after the first boot (defaults to `true`).
73+
/// </summary>
74+
[Input("upgrade")]
75+
public Input<bool>? Upgrade { get; set; }
76+
7177
/// <summary>
7278
/// The user account configuration (conflicts
7379
/// with `user_data_file_id`).

sdk/dotnet/Vm/Outputs/VirtualMachineInitialization.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ public sealed class VirtualMachineInitialization
5050
/// </summary>
5151
public readonly string? Type;
5252
/// <summary>
53+
/// Whether to do an automatic package upgrade after the first boot (defaults to `true`).
54+
/// </summary>
55+
public readonly bool? Upgrade;
56+
/// <summary>
5357
/// The user account configuration (conflicts
5458
/// with `user_data_file_id`).
5559
/// </summary>
@@ -81,6 +85,8 @@ private VirtualMachineInitialization(
8185

8286
string? type,
8387

88+
bool? upgrade,
89+
8490
Outputs.VirtualMachineInitializationUserAccount? userAccount,
8591

8692
string? userDataFileId,
@@ -94,6 +100,7 @@ private VirtualMachineInitialization(
94100
MetaDataFileId = metaDataFileId;
95101
NetworkDataFileId = networkDataFileId;
96102
Type = type;
103+
Upgrade = upgrade;
97104
UserAccount = userAccount;
98105
UserDataFileId = userDataFileId;
99106
VendorDataFileId = vendorDataFileId;

sdk/go/proxmoxve/storage/file.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/go/proxmoxve/vm/pulumiTypes.go

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/java/src/main/java/io/muehlbachler/pulumi/proxmoxve/storage/File.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* ### Backups (`dump`)
2727
*
28-
* &gt; **Note:** The resource with this content type uses SSH access to the node. You might need to configure the `ssh` option in the `provider` section.
28+
* &gt; The resource with this content type uses SSH access to the node. You might need to configure the `ssh` option in the `provider` section.
2929
*
3030
* &lt;!--Start PulumiCodeChooser --&gt;
3131
* ```java
@@ -66,7 +66,7 @@
6666
*
6767
* ### Images
6868
*
69-
* **Consider using `proxmoxve.Download.File` resource instead. Using this resource for images is less efficient (requires to transfer uploaded image to node) though still supported.**
69+
* &gt; Consider using `proxmoxve.Download.File` resource instead. Using this resource for images is less efficient (requires to transfer uploaded image to node) though still supported.
7070
*
7171
* &lt;!--Start PulumiCodeChooser --&gt;
7272
* ```java
@@ -107,7 +107,7 @@
107107
*
108108
* ### Container Template (`vztmpl`)
109109
*
110-
* **Consider using `proxmoxve.Download.File` resource instead. Using this resource for container images is less efficient (requires to transfer uploaded image to node) though still supported.**
110+
* &gt; Consider using `proxmoxve.Download.File` resource instead. Using this resource for container images is less efficient (requires to transfer uploaded image to node) though still supported.
111111
*
112112
* &lt;!--Start PulumiCodeChooser --&gt;
113113
* ```java

sdk/java/src/main/java/io/muehlbachler/pulumi/proxmoxve/vm/inputs/VirtualMachineInitializationArgs.java

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import io.muehlbachler.pulumi.proxmoxve.VM.inputs.VirtualMachineInitializationDnsArgs;
99
import io.muehlbachler.pulumi.proxmoxve.VM.inputs.VirtualMachineInitializationIpConfigArgs;
1010
import io.muehlbachler.pulumi.proxmoxve.VM.inputs.VirtualMachineInitializationUserAccountArgs;
11+
import java.lang.Boolean;
1112
import java.lang.String;
1213
import java.util.List;
1314
import java.util.Objects;
@@ -140,6 +141,21 @@ public Optional<Output<String>> type() {
140141
return Optional.ofNullable(this.type);
141142
}
142143

144+
/**
145+
* Whether to do an automatic package upgrade after the first boot (defaults to `true`).
146+
*
147+
*/
148+
@Import(name="upgrade")
149+
private @Nullable Output<Boolean> upgrade;
150+
151+
/**
152+
* @return Whether to do an automatic package upgrade after the first boot (defaults to `true`).
153+
*
154+
*/
155+
public Optional<Output<Boolean>> upgrade() {
156+
return Optional.ofNullable(this.upgrade);
157+
}
158+
143159
/**
144160
* The user account configuration (conflicts
145161
* with `user_data_file_id`).
@@ -201,6 +217,7 @@ private VirtualMachineInitializationArgs(VirtualMachineInitializationArgs $) {
201217
this.metaDataFileId = $.metaDataFileId;
202218
this.networkDataFileId = $.networkDataFileId;
203219
this.type = $.type;
220+
this.upgrade = $.upgrade;
204221
this.userAccount = $.userAccount;
205222
this.userDataFileId = $.userDataFileId;
206223
this.vendorDataFileId = $.vendorDataFileId;
@@ -398,6 +415,27 @@ public Builder type(String type) {
398415
return type(Output.of(type));
399416
}
400417

418+
/**
419+
* @param upgrade Whether to do an automatic package upgrade after the first boot (defaults to `true`).
420+
*
421+
* @return builder
422+
*
423+
*/
424+
public Builder upgrade(@Nullable Output<Boolean> upgrade) {
425+
$.upgrade = upgrade;
426+
return this;
427+
}
428+
429+
/**
430+
* @param upgrade Whether to do an automatic package upgrade after the first boot (defaults to `true`).
431+
*
432+
* @return builder
433+
*
434+
*/
435+
public Builder upgrade(Boolean upgrade) {
436+
return upgrade(Output.of(upgrade));
437+
}
438+
401439
/**
402440
* @param userAccount The user account configuration (conflicts
403441
* with `user_data_file_id`).

0 commit comments

Comments
 (0)