CrowdStrike v0.0.10 published on Monday, Mar 3, 2025 by CrowdStrike
crowdstrike.getSensorUpdatePolicyBuilds
Explore with Pulumi AI
This data source provides information about the latest sensor builds for each platform.
API Scopes
The following API scopes are required:
- Sensor update policies | Write
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as crowdstrike from "@pulumi/crowdstrike";
const builds = crowdstrike.getSensorUpdatePolicyBuilds({});
export const latestWindowsBuild = builds.then(builds => builds.windows?.latest);
export const n1LinuxBuild = builds.then(builds => builds.linux?.n1);
export const n2MacBuild = builds.then(builds => builds.mac?.n2);
export const latestLinuxArm64Build = builds.then(builds => builds.linuxArm64?.latest);
import pulumi
import pulumi_crowdstrike as crowdstrike
builds = crowdstrike.get_sensor_update_policy_builds()
pulumi.export("latestWindowsBuild", builds.windows.latest)
pulumi.export("n1LinuxBuild", builds.linux.n1)
pulumi.export("n2MacBuild", builds.mac.n2)
pulumi.export("latestLinuxArm64Build", builds.linux_arm64.latest)
package main
import (
"github.com/crowdstrike/pulumi-crowdstrike/sdk/go/crowdstrike"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
builds, err := crowdstrike.GetSensorUpdatePolicyBuilds(ctx, map[string]interface{}{}, nil)
if err != nil {
return err
}
ctx.Export("latestWindowsBuild", builds.Windows.Latest)
ctx.Export("n1LinuxBuild", builds.Linux.N1)
ctx.Export("n2MacBuild", builds.Mac.N2)
ctx.Export("latestLinuxArm64Build", builds.LinuxArm64.Latest)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Crowdstrike = Pulumi.Crowdstrike;
return await Deployment.RunAsync(() =>
{
var builds = Crowdstrike.GetSensorUpdatePolicyBuilds.Invoke();
return new Dictionary<string, object?>
{
["latestWindowsBuild"] = builds.Apply(getSensorUpdatePolicyBuildsResult => getSensorUpdatePolicyBuildsResult.Windows?.Latest),
["n1LinuxBuild"] = builds.Apply(getSensorUpdatePolicyBuildsResult => getSensorUpdatePolicyBuildsResult.Linux?.N1),
["n2MacBuild"] = builds.Apply(getSensorUpdatePolicyBuildsResult => getSensorUpdatePolicyBuildsResult.Mac?.N2),
["latestLinuxArm64Build"] = builds.Apply(getSensorUpdatePolicyBuildsResult => getSensorUpdatePolicyBuildsResult.LinuxArm64?.Latest),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.crowdstrike.CrowdstrikeFunctions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var builds = CrowdstrikeFunctions.getSensorUpdatePolicyBuilds();
ctx.export("latestWindowsBuild", builds.applyValue(getSensorUpdatePolicyBuildsResult -> getSensorUpdatePolicyBuildsResult.windows().latest()));
ctx.export("n1LinuxBuild", builds.applyValue(getSensorUpdatePolicyBuildsResult -> getSensorUpdatePolicyBuildsResult.linux().n1()));
ctx.export("n2MacBuild", builds.applyValue(getSensorUpdatePolicyBuildsResult -> getSensorUpdatePolicyBuildsResult.mac().n2()));
ctx.export("latestLinuxArm64Build", builds.applyValue(getSensorUpdatePolicyBuildsResult -> getSensorUpdatePolicyBuildsResult.linuxArm64().latest()));
}
}
variables:
builds:
fn::invoke:
function: crowdstrike:getSensorUpdatePolicyBuilds
arguments: {}
outputs:
latestWindowsBuild: ${builds.windows.latest}
n1LinuxBuild: ${builds.linux.n1}
n2MacBuild: ${builds.mac.n2}
latestLinuxArm64Build: ${builds.linuxArm64.latest}
Using getSensorUpdatePolicyBuilds
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSensorUpdatePolicyBuilds(opts?: InvokeOptions): Promise<GetSensorUpdatePolicyBuildsResult>
function getSensorUpdatePolicyBuildsOutput(opts?: InvokeOptions): Output<GetSensorUpdatePolicyBuildsResult>
def get_sensor_update_policy_builds(opts: Optional[InvokeOptions] = None) -> GetSensorUpdatePolicyBuildsResult
def get_sensor_update_policy_builds_output(opts: Optional[InvokeOptions] = None) -> Output[GetSensorUpdatePolicyBuildsResult]
func GetSensorUpdatePolicyBuilds(ctx *Context, opts ...InvokeOption) (*GetSensorUpdatePolicyBuildsResult, error)
func GetSensorUpdatePolicyBuildsOutput(ctx *Context, opts ...InvokeOption) GetSensorUpdatePolicyBuildsResultOutput
> Note: This function is named GetSensorUpdatePolicyBuilds
in the Go SDK.
public static class GetSensorUpdatePolicyBuilds
{
public static Task<GetSensorUpdatePolicyBuildsResult> InvokeAsync(InvokeOptions? opts = null)
public static Output<GetSensorUpdatePolicyBuildsResult> Invoke(InvokeOptions? opts = null)
}
public static CompletableFuture<GetSensorUpdatePolicyBuildsResult> getSensorUpdatePolicyBuilds(InvokeOptions options)
public static Output<GetSensorUpdatePolicyBuildsResult> getSensorUpdatePolicyBuilds(InvokeOptions options)
fn::invoke:
function: crowdstrike:index/getSensorUpdatePolicyBuilds:getSensorUpdatePolicyBuilds
arguments:
# arguments dictionary
getSensorUpdatePolicyBuilds Result
The following output properties are available:
- Id string
- Placeholder identifier.
- Linux
Crowd
Strike. Crowdstrike. Outputs. Get Sensor Update Policy Builds Linux - Builds for the Linux platform.
- Linux
Arm64 CrowdStrike. Crowdstrike. Outputs. Get Sensor Update Policy Builds Linux Arm64 - Builds for the Linux platform (arm64).
- Mac
Crowd
Strike. Crowdstrike. Outputs. Get Sensor Update Policy Builds Mac - Builds for the Mac platform.
- Windows
Crowd
Strike. Crowdstrike. Outputs. Get Sensor Update Policy Builds Windows - Builds for the Windows platform.
- Id string
- Placeholder identifier.
- Linux
Get
Sensor Update Policy Builds Linux - Builds for the Linux platform.
- Linux
Arm64 GetSensor Update Policy Builds Linux Arm64 - Builds for the Linux platform (arm64).
- Mac
Get
Sensor Update Policy Builds Mac - Builds for the Mac platform.
- Windows
Get
Sensor Update Policy Builds Windows - Builds for the Windows platform.
- id String
- Placeholder identifier.
- linux
Get
Sensor Update Policy Builds Linux - Builds for the Linux platform.
- linux
Arm64 GetSensor Update Policy Builds Linux Arm64 - Builds for the Linux platform (arm64).
- mac
Get
Sensor Update Policy Builds Mac - Builds for the Mac platform.
- windows
Get
Sensor Update Policy Builds Windows - Builds for the Windows platform.
- id string
- Placeholder identifier.
- linux
Get
Sensor Update Policy Builds Linux - Builds for the Linux platform.
- linux
Arm64 GetSensor Update Policy Builds Linux Arm64 - Builds for the Linux platform (arm64).
- mac
Get
Sensor Update Policy Builds Mac - Builds for the Mac platform.
- windows
Get
Sensor Update Policy Builds Windows - Builds for the Windows platform.
- id str
- Placeholder identifier.
- linux
Get
Sensor Update Policy Builds Linux - Builds for the Linux platform.
- linux_
arm64 GetSensor Update Policy Builds Linux Arm64 - Builds for the Linux platform (arm64).
- mac
Get
Sensor Update Policy Builds Mac - Builds for the Mac platform.
- windows
Get
Sensor Update Policy Builds Windows - Builds for the Windows platform.
- id String
- Placeholder identifier.
- linux Property Map
- Builds for the Linux platform.
- linux
Arm64 Property Map - Builds for the Linux platform (arm64).
- mac Property Map
- Builds for the Mac platform.
- windows Property Map
- Builds for the Windows platform.
Supporting Types
GetSensorUpdatePolicyBuildsLinux
- Alls
List<Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Linux All> - All sensor builds for the specific platform.
- Latest
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Linux Latest - The latest sensor build.
- N1
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Linux N1 - The n-1 sensor build.
- N2
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Linux N2 - The n-2 sensor build.
- Alls
[]Get
Sensor Update Policy Builds Linux All - All sensor builds for the specific platform.
- Latest
Get
Sensor Update Policy Builds Linux Latest - The latest sensor build.
- N1
Get
Sensor Update Policy Builds Linux N1 - The n-1 sensor build.
- N2
Get
Sensor Update Policy Builds Linux N2 - The n-2 sensor build.
- alls
List<Get
Sensor Update Policy Builds Linux All> - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Linux Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Linux N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Linux N2 - The n-2 sensor build.
- alls
Get
Sensor Update Policy Builds Linux All[] - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Linux Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Linux N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Linux N2 - The n-2 sensor build.
- alls
Sequence[Get
Sensor Update Policy Builds Linux All] - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Linux Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Linux N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Linux N2 - The n-2 sensor build.
- alls List<Property Map>
- All sensor builds for the specific platform.
- latest Property Map
- The latest sensor build.
- n1 Property Map
- The n-1 sensor build.
- n2 Property Map
- The n-2 sensor build.
GetSensorUpdatePolicyBuildsLinuxAll
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsLinuxArm64
- Alls
List<Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Linux Arm64All> - All sensor builds for the specific platform.
- Latest
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Linux Arm64Latest - The latest sensor build.
- N1
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Linux Arm64N1 - The n-1 sensor build.
- N2
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Linux Arm64N2 - The n-2 sensor build.
- Alls
[]Get
Sensor Update Policy Builds Linux Arm64All - All sensor builds for the specific platform.
- Latest
Get
Sensor Update Policy Builds Linux Arm64Latest - The latest sensor build.
- N1
Get
Sensor Update Policy Builds Linux Arm64N1 - The n-1 sensor build.
- N2
Get
Sensor Update Policy Builds Linux Arm64N2 - The n-2 sensor build.
- alls
List<Get
Sensor Update Policy Builds Linux Arm64All> - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Linux Arm64Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Linux Arm64N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Linux Arm64N2 - The n-2 sensor build.
- alls
Get
Sensor Update Policy Builds Linux Arm64All[] - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Linux Arm64Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Linux Arm64N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Linux Arm64N2 - The n-2 sensor build.
- alls
Sequence[Get
Sensor Update Policy Builds Linux Arm64All] - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Linux Arm64Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Linux Arm64N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Linux Arm64N2 - The n-2 sensor build.
- alls List<Property Map>
- All sensor builds for the specific platform.
- latest Property Map
- The latest sensor build.
- n1 Property Map
- The n-1 sensor build.
- n2 Property Map
- The n-2 sensor build.
GetSensorUpdatePolicyBuildsLinuxArm64All
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsLinuxArm64Latest
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsLinuxArm64N1
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsLinuxArm64N2
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsLinuxLatest
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsLinuxN1
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsLinuxN2
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsMac
- Alls
List<Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Mac All> - All sensor builds for the specific platform.
- Latest
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Mac Latest - The latest sensor build.
- N1
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Mac N1 - The n-1 sensor build.
- N2
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Mac N2 - The n-2 sensor build.
- Alls
[]Get
Sensor Update Policy Builds Mac All - All sensor builds for the specific platform.
- Latest
Get
Sensor Update Policy Builds Mac Latest - The latest sensor build.
- N1
Get
Sensor Update Policy Builds Mac N1 - The n-1 sensor build.
- N2
Get
Sensor Update Policy Builds Mac N2 - The n-2 sensor build.
- alls
List<Get
Sensor Update Policy Builds Mac All> - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Mac Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Mac N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Mac N2 - The n-2 sensor build.
- alls
Get
Sensor Update Policy Builds Mac All[] - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Mac Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Mac N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Mac N2 - The n-2 sensor build.
- alls
Sequence[Get
Sensor Update Policy Builds Mac All] - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Mac Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Mac N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Mac N2 - The n-2 sensor build.
- alls List<Property Map>
- All sensor builds for the specific platform.
- latest Property Map
- The latest sensor build.
- n1 Property Map
- The n-1 sensor build.
- n2 Property Map
- The n-2 sensor build.
GetSensorUpdatePolicyBuildsMacAll
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsMacLatest
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsMacN1
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsMacN2
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsWindows
- Alls
List<Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Windows All> - All sensor builds for the specific platform.
- Latest
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Windows Latest - The latest sensor build.
- N1
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Windows N1 - The n-1 sensor build.
- N2
Crowd
Strike. Crowdstrike. Inputs. Get Sensor Update Policy Builds Windows N2 - The n-2 sensor build.
- Alls
[]Get
Sensor Update Policy Builds Windows All - All sensor builds for the specific platform.
- Latest
Get
Sensor Update Policy Builds Windows Latest - The latest sensor build.
- N1
Get
Sensor Update Policy Builds Windows N1 - The n-1 sensor build.
- N2
Get
Sensor Update Policy Builds Windows N2 - The n-2 sensor build.
- alls
List<Get
Sensor Update Policy Builds Windows All> - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Windows Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Windows N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Windows N2 - The n-2 sensor build.
- alls
Get
Sensor Update Policy Builds Windows All[] - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Windows Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Windows N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Windows N2 - The n-2 sensor build.
- alls
Sequence[Get
Sensor Update Policy Builds Windows All] - All sensor builds for the specific platform.
- latest
Get
Sensor Update Policy Builds Windows Latest - The latest sensor build.
- n1
Get
Sensor Update Policy Builds Windows N1 - The n-1 sensor build.
- n2
Get
Sensor Update Policy Builds Windows N2 - The n-2 sensor build.
- alls List<Property Map>
- All sensor builds for the specific platform.
- latest Property Map
- The latest sensor build.
- n1 Property Map
- The n-1 sensor build.
- n2 Property Map
- The n-2 sensor build.
GetSensorUpdatePolicyBuildsWindowsAll
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsWindowsLatest
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsWindowsN1
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
GetSensorUpdatePolicyBuildsWindowsN2
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- Build string
- The build number for a specific sensor version.
- Platform string
- The target platform for a the build.
- Sensor
Version string - CrowdStrike Falcon Sensor version.
- Stage string
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
- build string
- The build number for a specific sensor version.
- platform string
- The target platform for a the build.
- sensor
Version string - CrowdStrike Falcon Sensor version.
- stage string
- The stage for the build.
- build str
- The build number for a specific sensor version.
- platform str
- The target platform for a the build.
- sensor_
version str - CrowdStrike Falcon Sensor version.
- stage str
- The stage for the build.
- build String
- The build number for a specific sensor version.
- platform String
- The target platform for a the build.
- sensor
Version String - CrowdStrike Falcon Sensor version.
- stage String
- The stage for the build.
Package Details
- Repository
- crowdstrike crowdstrike/pulumi-crowdstrike
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
crowdstrike
Terraform Provider.