-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from komminarlabs/tk/v1.2.1
added support for `partition_template`
- Loading branch information
Showing
31 changed files
with
1,227 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace KomminarLabs.InfluxDB3.Inputs | ||
{ | ||
|
||
public sealed class DatabasePartitionTemplateArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The type of template part. Valid values are `bucket`, `tag` or `time`. | ||
/// </summary> | ||
[Input("type", required: true)] | ||
public Input<string> Type { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The value of template part. **Note:** For `bucket` partition template type use `jsonencode()` function to encode the value to a string. | ||
/// </summary> | ||
[Input("value", required: true)] | ||
public Input<string> Value { get; set; } = null!; | ||
|
||
public DatabasePartitionTemplateArgs() | ||
{ | ||
} | ||
public static new DatabasePartitionTemplateArgs Empty => new DatabasePartitionTemplateArgs(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace KomminarLabs.InfluxDB3.Inputs | ||
{ | ||
|
||
public sealed class DatabasePartitionTemplateGetArgs : global::Pulumi.ResourceArgs | ||
{ | ||
/// <summary> | ||
/// The type of template part. Valid values are `bucket`, `tag` or `time`. | ||
/// </summary> | ||
[Input("type", required: true)] | ||
public Input<string> Type { get; set; } = null!; | ||
|
||
/// <summary> | ||
/// The value of template part. **Note:** For `bucket` partition template type use `jsonencode()` function to encode the value to a string. | ||
/// </summary> | ||
[Input("value", required: true)] | ||
public Input<string> Value { get; set; } = null!; | ||
|
||
public DatabasePartitionTemplateGetArgs() | ||
{ | ||
} | ||
public static new DatabasePartitionTemplateGetArgs Empty => new DatabasePartitionTemplateGetArgs(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** | ||
// *** Do not edit by hand unless you're certain you know what you are doing! *** | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.Immutable; | ||
using System.Threading.Tasks; | ||
using Pulumi.Serialization; | ||
using Pulumi; | ||
|
||
namespace KomminarLabs.InfluxDB3.Outputs | ||
{ | ||
|
||
[OutputType] | ||
public sealed class DatabasePartitionTemplate | ||
{ | ||
/// <summary> | ||
/// The type of template part. Valid values are `bucket`, `tag` or `time`. | ||
/// </summary> | ||
public readonly string Type; | ||
/// <summary> | ||
/// The value of template part. **Note:** For `bucket` partition template type use `jsonencode()` function to encode the value to a string. | ||
/// </summary> | ||
public readonly string Value; | ||
|
||
[OutputConstructor] | ||
private DatabasePartitionTemplate( | ||
string type, | ||
|
||
string value) | ||
{ | ||
Type = type; | ||
Value = value; | ||
} | ||
} | ||
} |
Oops, something went wrong.