Skip to content

Commit

Permalink
Upgrade pulumi-terraform-bridge to v3.63.1 (#191)
Browse files Browse the repository at this point in the history
This PR was generated via `$ upgrade-provider pulumi/pulumi-splunk
--kind=bridge --target-bridge-version=v3.63.1 --pr-reviewers=t0yv0
--pr-description=`.

---

- Upgrading pulumi-terraform-bridge from v3.63.0 to v3.63.1.
  • Loading branch information
pulumi-bot committed Oct 25, 2023
1 parent a672852 commit af76cde
Show file tree
Hide file tree
Showing 86 changed files with 2,073 additions and 4 deletions.
2 changes: 1 addition & 1 deletion provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.21

require (
github.com/hashicorp/terraform-plugin-sdk v1.15.0
github.com/pulumi/pulumi-terraform-bridge/v3 v3.63.0
github.com/pulumi/pulumi-terraform-bridge/v3 v3.63.1
github.com/pulumi/pulumi/sdk/v3 v3.90.1
github.com/splunk/terraform-provider-splunk v1.4.22
)
Expand Down
4 changes: 2 additions & 2 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1701,8 +1701,8 @@ github.com/pulumi/pulumi-java/pkg v0.9.8 h1:c8mYsalnRXA2Ibgvv6scefOn6mW1Vb0UT0mc
github.com/pulumi/pulumi-java/pkg v0.9.8/go.mod h1:c6rSw/+q4O0IImgJ9axxoC6QesbPYWBaG5gimbHouUQ=
github.com/pulumi/pulumi-terraform-bridge/testing v0.0.1 h1:SCg1gjfY9N4yn8U8peIUYATifjoDABkyR7H9lmefsfc=
github.com/pulumi/pulumi-terraform-bridge/testing v0.0.1/go.mod h1:7OeUPH8rpt5ipyj9EFcnXpuzQ8SHL0dyqdfa8nOacdk=
github.com/pulumi/pulumi-terraform-bridge/v3 v3.63.0 h1:otdmkNsMGyZ+proUZClznZo+cEchkSSkmaGcq+Gf+6s=
github.com/pulumi/pulumi-terraform-bridge/v3 v3.63.0/go.mod h1:6YVbDo019OeHkQWo9MnUbBy6cCgCQeoXZDjmR9SYmUA=
github.com/pulumi/pulumi-terraform-bridge/v3 v3.63.1 h1:hBgediyT2LdS5yfD5AMiCmBJ/TYP94Xxv6a4TcAfV0g=
github.com/pulumi/pulumi-terraform-bridge/v3 v3.63.1/go.mod h1:6YVbDo019OeHkQWo9MnUbBy6cCgCQeoXZDjmR9SYmUA=
github.com/pulumi/pulumi-terraform-bridge/x/muxer v0.0.4 h1:rIzMmtcVpPX8ynaz6/nW5AHNY63DiNfCohqmxWvMpM4=
github.com/pulumi/pulumi-terraform-bridge/x/muxer v0.0.4/go.mod h1:Kt8RIZWa/N8rW3+0g6NrqCBmF3o+HuIhFaZpssEkG6w=
github.com/pulumi/pulumi-yaml v1.2.2 h1:W6BeUBLhDrJ2GSU0em1AUVelG9PBI4ABY61DdhJOO3E=
Expand Down
22 changes: 22 additions & 0 deletions sdk/dotnet/AdminSamlGroups.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,28 @@ namespace Pulumi.Splunk
///
/// Manage external groups in an IdP response to internal Splunk roles.
///
/// ## Example Usage
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using Splunk = Pulumi.Splunk;
///
/// return await Deployment.RunAsync(() =>
/// {
/// var saml_group = new Splunk.AdminSamlGroups("saml-group", new()
/// {
/// Roles = new[]
/// {
/// "admin",
/// "power",
/// },
/// });
///
/// });
/// ```
///
/// ## Import
///
/// SAML groups can be imported using the id, e.g.
Expand Down
19 changes: 19 additions & 0 deletions sdk/dotnet/AppsLocal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,25 @@ namespace Pulumi.Splunk
/// ## # Resource: splunk.AppsLocal
///
/// Create, install and manage apps on your Splunk instance
///
/// ## Example Usage
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using Splunk = Pulumi.Splunk;
///
/// return await Deployment.RunAsync(() =>
/// {
/// var amazonConnectApp = new Splunk.AppsLocal("amazonConnectApp", new()
/// {
/// ExplicitAppname = "amazon_connect_app_for_splunk",
/// Filename = true,
/// });
///
/// });
/// ```
/// </summary>
[SplunkResourceType("splunk:index/appsLocal:AppsLocal")]
public partial class AppsLocal : global::Pulumi.CustomResource
Expand Down
24 changes: 24 additions & 0 deletions sdk/dotnet/AuthenticationUsers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,30 @@ namespace Pulumi.Splunk
/// ## # Resource: splunk.AuthenticationUsers
///
/// Create and update user information or delete the user.
///
/// ## Example Usage
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using Splunk = Pulumi.Splunk;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var user01 = new Splunk.AuthenticationUsers("user01", new()
/// {
/// Email = "user01@example.com",
/// ForceChangePass = false,
/// Password = "password01",
/// Roles = new[]
/// {
/// "terraform-user01-role",
/// },
/// });
///
/// });
/// ```
/// </summary>
[SplunkResourceType("splunk:index/authenticationUsers:AuthenticationUsers")]
public partial class AuthenticationUsers : global::Pulumi.CustomResource
Expand Down
41 changes: 41 additions & 0 deletions sdk/dotnet/AuthorizationRoles.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,47 @@ namespace Pulumi.Splunk
/// ## # Resource: splunk.AuthorizationRoles
///
/// Create and update role information.
///
/// ## Example Usage
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using Splunk = Pulumi.Splunk;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var role01 = new Splunk.AuthorizationRoles("role01", new()
/// {
/// Capabilities = new[]
/// {
/// "accelerate_datamodel",
/// "change_authentication",
/// "restart_splunkd",
/// },
/// DefaultApp = "search",
/// ImportedRoles = new[]
/// {
/// "power",
/// "user",
/// },
/// SearchIndexesAlloweds = new[]
/// {
/// "_audit",
/// "_internal",
/// "main",
/// },
/// SearchIndexesDefaults = new[]
/// {
/// "_audit",
/// "_internal",
/// "main",
/// },
/// });
///
/// });
/// ```
/// </summary>
[SplunkResourceType("splunk:index/authorizationRoles:AuthorizationRoles")]
public partial class AuthorizationRoles : global::Pulumi.CustomResource
Expand Down
22 changes: 22 additions & 0 deletions sdk/dotnet/ConfigsConf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,28 @@ namespace Pulumi.Splunk
/// ## # Resource: splunk.ConfigsConf
///
/// Create and manage configuration file stanzas.
///
/// ## Example Usage
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using Splunk = Pulumi.Splunk;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var new_conf_stanza = new Splunk.ConfigsConf("new-conf-stanza", new()
/// {
/// Variables =
/// {
/// { "disabled", "false" },
/// { "custom_key", "value" },
/// },
/// });
///
/// });
/// ```
/// </summary>
[SplunkResourceType("splunk:index/configsConf:ConfigsConf")]
public partial class ConfigsConf : global::Pulumi.CustomResource
Expand Down
22 changes: 22 additions & 0 deletions sdk/dotnet/DataUiViews.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,28 @@ namespace Pulumi.Splunk
/// ## # Resource: splunk.DataUiViews
///
/// Create and manage splunk dashboards/views.
/// ## Example Usage
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using Splunk = Pulumi.Splunk;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var dashboard = new Splunk.DataUiViews("dashboard", new()
/// {
/// Acl = new Splunk.Inputs.DataUiViewsAclArgs
/// {
/// App = "search",
/// Owner = "admin",
/// },
/// EaiData = "&lt;dashboard version=\"1.1\"&gt;&lt;label&gt;Terraform&lt;/label&gt;&lt;description&gt;Terraform operations&lt;/description&gt;&lt;row&gt;&lt;panel&gt;&lt;chart&gt;&lt;search&gt;&lt;query&gt;index=_internal sourcetype=splunkd_access useragent=\"splunk-simple-go-client\" | timechart fixedrange=f values(status) by uri_path&lt;/query&gt;&lt;earliest&gt;-24h@h&lt;/earliest&gt;&lt;latest&gt;now&lt;/latest&gt;&lt;sampleRatio&gt;1&lt;/sampleRatio&gt;&lt;/search&gt;&lt;option name=\"charting.axisLabelsX.majorLabelStyle.overflowMode\"&gt;ellipsisNone&lt;/option&gt;&lt;option name=\"charting.axisLabelsX.majorLabelStyle.rotation\"&gt;0&lt;/option&gt;&lt;option name=\"charting.axisTitleX.visibility\"&gt;collapsed&lt;/option&gt;&lt;option name=\"charting.axisTitleY.text\"&gt;HTTP status codes&lt;/option&gt;&lt;option name=\"charting.axisTitleY.visibility\"&gt;visible&lt;/option&gt;&lt;option name=\"charting.axisTitleY2.visibility\"&gt;visible&lt;/option&gt;&lt;option name=\"charting.axisX.abbreviation\"&gt;none&lt;/option&gt;&lt;option name=\"charting.axisX.scale\"&gt;linear&lt;/option&gt;&lt;option name=\"charting.axisY.abbreviation\"&gt;none&lt;/option&gt;&lt;option name=\"charting.axisY.scale\"&gt;linear&lt;/option&gt;&lt;option name=\"charting.axisY2.abbreviation\"&gt;none&lt;/option&gt;&lt;option name=\"charting.axisY2.enabled\"&gt;0&lt;/option&gt;&lt;option name=\"charting.axisY2.scale\"&gt;inherit&lt;/option&gt;&lt;option name=\"charting.chart\"&gt;column&lt;/option&gt;&lt;option name=\"charting.chart.bubbleMaximumSize\"&gt;50&lt;/option&gt;&lt;option name=\"charting.chart.bubbleMinimumSize\"&gt;10&lt;/option&gt;&lt;option name=\"charting.chart.bubbleSizeBy\"&gt;area&lt;/option&gt;&lt;option name=\"charting.chart.nullValueMode\"&gt;connect&lt;/option&gt;&lt;option name=\"charting.chart.showDataLabels\"&gt;none&lt;/option&gt;&lt;option name=\"charting.chart.sliceCollapsingThreshold\"&gt;0.01&lt;/option&gt;&lt;option name=\"charting.chart.stackMode\"&gt;default&lt;/option&gt;&lt;option name=\"charting.chart.style\"&gt;shiny&lt;/option&gt;&lt;option name=\"charting.drilldown\"&gt;none&lt;/option&gt;&lt;option name=\"charting.layout.splitSeries\"&gt;0&lt;/option&gt;&lt;option name=\"charting.layout.splitSeries.allowIndependentYRanges\"&gt;0&lt;/option&gt;&lt;option name=\"charting.legend.labelStyle.overflowMode\"&gt;ellipsisMiddle&lt;/option&gt;&lt;option name=\"charting.legend.mode\"&gt;standard&lt;/option&gt;&lt;option name=\"charting.legend.placement\"&gt;right&lt;/option&gt;&lt;option name=\"charting.lineWidth\"&gt;2&lt;/option&gt;&lt;option name=\"trellis.enabled\"&gt;0&lt;/option&gt;&lt;option name=\"trellis.scales.shared\"&gt;1&lt;/option&gt;&lt;option name=\"trellis.size\"&gt;small&lt;/option&gt;&lt;option name=\"trellis.splitBy\"&gt;_aggregation&lt;/option&gt;&lt;/chart&gt;&lt;/panel&gt;&lt;/row&gt;&lt;/dashboard&gt;",
/// });
///
/// });
/// ```
/// </summary>
[SplunkResourceType("splunk:index/dataUiViews:DataUiViews")]
public partial class DataUiViews : global::Pulumi.CustomResource
Expand Down
50 changes: 50 additions & 0 deletions sdk/dotnet/GenericAcl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,56 @@
namespace Pulumi.Splunk
{
/// <summary>
/// ## Example Usage
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using Splunk = Pulumi.Splunk;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var myApp = new Splunk.GenericAcl("myApp", new()
/// {
/// Acl = new Splunk.Inputs.GenericAclAclArgs
/// {
/// App = "system",
/// Owner = "nobody",
/// Reads = new[]
/// {
/// "*",
/// },
/// Writes = new[]
/// {
/// "admin",
/// "power",
/// },
/// },
/// Path = "apps/local/my_app",
/// });
///
/// var myDashboard = new Splunk.GenericAcl("myDashboard", new()
/// {
/// Acl = new Splunk.Inputs.GenericAclAclArgs
/// {
/// App = "my_app",
/// Owner = "joe_user",
/// Reads = new[]
/// {
/// "team_joe",
/// },
/// Writes = new[]
/// {
/// "team_joe",
/// },
/// },
/// Path = "data/ui/views/my_dashboard",
/// });
///
/// });
/// ```
///
/// ## Import
///
/// Generic ACL resources can be imported by specifying their owner, app, and path with a colon-delimited string as the ID
Expand Down
20 changes: 20 additions & 0 deletions sdk/dotnet/GlobalHttpEventCollector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,26 @@ namespace Pulumi.Splunk
/// ## # Resource: splunk.GlobalHttpEventCollector
///
/// Update Global HTTP Event Collector input configuration.
///
/// ## Example Usage
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using Splunk = Pulumi.Splunk;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var http = new Splunk.GlobalHttpEventCollector("http", new()
/// {
/// Disabled = false,
/// EnableSsl = true,
/// Port = 8088,
/// });
///
/// });
/// ```
/// </summary>
[SplunkResourceType("splunk:index/globalHttpEventCollector:GlobalHttpEventCollector")]
public partial class GlobalHttpEventCollector : global::Pulumi.CustomResource
Expand Down
19 changes: 19 additions & 0 deletions sdk/dotnet/Indexes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,25 @@ namespace Pulumi.Splunk
///
/// By default, all users can list all indexes. However, if the indexes_list_all capability is enabled in authorize.conf, access to all indexes is limited to only those roles with this capability.
/// To enable indexes_list_all capability restrictions on the data/indexes endpoint, create a [capability::indexes_list_all] stanza in authorize.conf. Specify indexes_list_all=enabled for any role permitted to list all indexes from this endpoint.
///
/// ## Example Usage
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using Splunk = Pulumi.Splunk;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var user01_index = new Splunk.Indexes("user01-index", new()
/// {
/// MaxHotBuckets = 6,
/// MaxTotalDataSizeMb = 1000000,
/// });
///
/// });
/// ```
/// </summary>
[SplunkResourceType("splunk:index/indexes:Indexes")]
public partial class Indexes : global::Pulumi.CustomResource
Expand Down
19 changes: 19 additions & 0 deletions sdk/dotnet/InputsMonitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,25 @@ namespace Pulumi.Splunk
/// ## # Resource: splunk.InputsMonitor
///
/// Create or update a new file or directory monitor input.
///
/// ## Example Usage
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using Splunk = Pulumi.Splunk;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var monitor = new Splunk.InputsMonitor("monitor", new()
/// {
/// Recursive = true,
/// Sourcetype = "text",
/// });
///
/// });
/// ```
/// </summary>
[SplunkResourceType("splunk:index/inputsMonitor:InputsMonitor")]
public partial class InputsMonitor : global::Pulumi.CustomResource
Expand Down
20 changes: 20 additions & 0 deletions sdk/dotnet/InputsTcpCooked.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,26 @@ namespace Pulumi.Splunk
/// ## # Resource: splunk.InputsTcpCooked
///
/// Create or update cooked TCP input information and create new containers for managing cooked data.
///
/// ## Example Usage
///
/// ```csharp
/// using System.Collections.Generic;
/// using System.Linq;
/// using Pulumi;
/// using Splunk = Pulumi.Splunk;
///
/// return await Deployment.RunAsync(() =&gt;
/// {
/// var tcpCooked = new Splunk.InputsTcpCooked("tcpCooked", new()
/// {
/// ConnectionHost = "dns",
/// Disabled = false,
/// RestrictToHost = "splunk",
/// });
///
/// });
/// ```
/// </summary>
[SplunkResourceType("splunk:index/inputsTcpCooked:InputsTcpCooked")]
public partial class InputsTcpCooked : global::Pulumi.CustomResource
Expand Down
Loading

0 comments on commit af76cde

Please sign in to comment.