Skip to content

Commit

Permalink
SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
viveklak committed Sep 8, 2022
1 parent c199eb0 commit 0feb05c
Show file tree
Hide file tree
Showing 753 changed files with 69,838 additions and 37 deletions.
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/ServiceComputeLoggingKafkaArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public sealed class ServiceComputeLoggingKafkaArgs : Pulumi.ResourceArgs
public Input<int>? RequestMaxBytes { get; set; }

/// <summary>
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// </summary>
[Input("requiredAcks")]
public Input<string>? RequiredAcks { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/ServiceComputeLoggingKafkaGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public sealed class ServiceComputeLoggingKafkaGetArgs : Pulumi.ResourceArgs
public Input<int>? RequestMaxBytes { get; set; }

/// <summary>
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// </summary>
[Input("requiredAcks")]
public Input<string>? RequiredAcks { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/ServiceVclLoggingKafkaArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public sealed class ServiceVclLoggingKafkaArgs : Pulumi.ResourceArgs
public Input<int>? RequestMaxBytes { get; set; }

/// <summary>
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// </summary>
[Input("requiredAcks")]
public Input<string>? RequiredAcks { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Inputs/ServiceVclLoggingKafkaGetArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public sealed class ServiceVclLoggingKafkaGetArgs : Pulumi.ResourceArgs
public Input<int>? RequestMaxBytes { get; set; }

/// <summary>
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// </summary>
[Input("requiredAcks")]
public Input<string>? RequiredAcks { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Outputs/ServiceComputeLoggingKafka.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public sealed class ServiceComputeLoggingKafka
/// </summary>
public readonly int? RequestMaxBytes;
/// <summary>
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// </summary>
public readonly string? RequiredAcks;
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Outputs/ServiceVclLoggingKafka.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public sealed class ServiceVclLoggingKafka
/// </summary>
public readonly int? RequestMaxBytes;
/// <summary>
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// The Number of acknowledgements a leader must receive before a write is considered successful. One of: `1` (default) One server needs to respond. `0` No servers need to respond. `-1` Wait for all in-sync replicas to respond
/// </summary>
public readonly string? RequiredAcks;
/// <summary>
Expand Down
24 changes: 24 additions & 0 deletions sdk/dotnet/ServiceCompute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,14 @@ public partial class ServiceCompute : Pulumi.CustomResource
[Output("package")]
public Output<Outputs.ServiceComputePackage> Package { get; private set; } = null!;

/// <summary>
/// Services that are active cannot be destroyed. If set to `true` a service Terraform intends to destroy will instead be
/// deactivated (allowing it to be reused by importing it into another Terraform project). If `false`, attempting to destroy
/// an active service will cause an error. Default `false`
/// </summary>
[Output("reuse")]
public Output<bool?> Reuse { get; private set; } = null!;

/// <summary>
/// Description field for the version
/// </summary>
Expand Down Expand Up @@ -477,6 +485,14 @@ public InputList<Inputs.ServiceComputeLoggingSyslogArgs> LoggingSyslogs
[Input("package", required: true)]
public Input<Inputs.ServiceComputePackageArgs> Package { get; set; } = null!;

/// <summary>
/// Services that are active cannot be destroyed. If set to `true` a service Terraform intends to destroy will instead be
/// deactivated (allowing it to be reused by importing it into another Terraform project). If `false`, attempting to destroy
/// an active service will cause an error. Default `false`
/// </summary>
[Input("reuse")]
public Input<bool>? Reuse { get; set; }

/// <summary>
/// Description field for the version
/// </summary>
Expand Down Expand Up @@ -768,6 +784,14 @@ public InputList<Inputs.ServiceComputeLoggingSyslogGetArgs> LoggingSyslogs
[Input("package")]
public Input<Inputs.ServiceComputePackageGetArgs>? Package { get; set; }

/// <summary>
/// Services that are active cannot be destroyed. If set to `true` a service Terraform intends to destroy will instead be
/// deactivated (allowing it to be reused by importing it into another Terraform project). If `false`, attempting to destroy
/// an active service will cause an error. Default `false`
/// </summary>
[Input("reuse")]
public Input<bool>? Reuse { get; set; }

/// <summary>
/// Description field for the version
/// </summary>
Expand Down
Loading

0 comments on commit 0feb05c

Please sign in to comment.