1. Packages
  2. CrowdStrike
  3. API Docs
  4. getSensorUpdatePolicyBuilds
CrowdStrike v0.0.10 published on Monday, Mar 3, 2025 by CrowdStrike

crowdstrike.getSensorUpdatePolicyBuilds

Explore with Pulumi AI

crowdstrike logo
CrowdStrike v0.0.10 published on Monday, Mar 3, 2025 by CrowdStrike

    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 GetSensorUpdatePolicyBuildsLinux
    Builds for the Linux platform.
    LinuxArm64 GetSensorUpdatePolicyBuildsLinuxArm64
    Builds for the Linux platform (arm64).
    Mac GetSensorUpdatePolicyBuildsMac
    Builds for the Mac platform.
    Windows GetSensorUpdatePolicyBuildsWindows
    Builds for the Windows platform.
    id String
    Placeholder identifier.
    linux GetSensorUpdatePolicyBuildsLinux
    Builds for the Linux platform.
    linuxArm64 GetSensorUpdatePolicyBuildsLinuxArm64
    Builds for the Linux platform (arm64).
    mac GetSensorUpdatePolicyBuildsMac
    Builds for the Mac platform.
    windows GetSensorUpdatePolicyBuildsWindows
    Builds for the Windows platform.
    id string
    Placeholder identifier.
    linux GetSensorUpdatePolicyBuildsLinux
    Builds for the Linux platform.
    linuxArm64 GetSensorUpdatePolicyBuildsLinuxArm64
    Builds for the Linux platform (arm64).
    mac GetSensorUpdatePolicyBuildsMac
    Builds for the Mac platform.
    windows GetSensorUpdatePolicyBuildsWindows
    Builds for the Windows platform.
    id str
    Placeholder identifier.
    linux GetSensorUpdatePolicyBuildsLinux
    Builds for the Linux platform.
    linux_arm64 GetSensorUpdatePolicyBuildsLinuxArm64
    Builds for the Linux platform (arm64).
    mac GetSensorUpdatePolicyBuildsMac
    Builds for the Mac platform.
    windows GetSensorUpdatePolicyBuildsWindows
    Builds for the Windows platform.
    id String
    Placeholder identifier.
    linux Property Map
    Builds for the Linux platform.
    linuxArm64 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 []GetSensorUpdatePolicyBuildsLinuxAll
    All sensor builds for the specific platform.
    Latest GetSensorUpdatePolicyBuildsLinuxLatest
    The latest sensor build.
    N1 GetSensorUpdatePolicyBuildsLinuxN1
    The n-1 sensor build.
    N2 GetSensorUpdatePolicyBuildsLinuxN2
    The n-2 sensor build.
    alls List<GetSensorUpdatePolicyBuildsLinuxAll>
    All sensor builds for the specific platform.
    latest GetSensorUpdatePolicyBuildsLinuxLatest
    The latest sensor build.
    n1 GetSensorUpdatePolicyBuildsLinuxN1
    The n-1 sensor build.
    n2 GetSensorUpdatePolicyBuildsLinuxN2
    The n-2 sensor build.
    alls GetSensorUpdatePolicyBuildsLinuxAll[]
    All sensor builds for the specific platform.
    latest GetSensorUpdatePolicyBuildsLinuxLatest
    The latest sensor build.
    n1 GetSensorUpdatePolicyBuildsLinuxN1
    The n-1 sensor build.
    n2 GetSensorUpdatePolicyBuildsLinuxN2
    The n-2 sensor build.
    alls Sequence[GetSensorUpdatePolicyBuildsLinuxAll]
    All sensor builds for the specific platform.
    latest GetSensorUpdatePolicyBuildsLinuxLatest
    The latest sensor build.
    n1 GetSensorUpdatePolicyBuildsLinuxN1
    The n-1 sensor build.
    n2 GetSensorUpdatePolicyBuildsLinuxN2
    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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion String
    CrowdStrike Falcon Sensor version.
    stage String
    The stage for the build.

    GetSensorUpdatePolicyBuildsLinuxArm64

    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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion String
    CrowdStrike Falcon Sensor version.
    stage String
    The stage for the build.

    GetSensorUpdatePolicyBuildsMac

    Alls []GetSensorUpdatePolicyBuildsMacAll
    All sensor builds for the specific platform.
    Latest GetSensorUpdatePolicyBuildsMacLatest
    The latest sensor build.
    N1 GetSensorUpdatePolicyBuildsMacN1
    The n-1 sensor build.
    N2 GetSensorUpdatePolicyBuildsMacN2
    The n-2 sensor build.
    alls List<GetSensorUpdatePolicyBuildsMacAll>
    All sensor builds for the specific platform.
    latest GetSensorUpdatePolicyBuildsMacLatest
    The latest sensor build.
    n1 GetSensorUpdatePolicyBuildsMacN1
    The n-1 sensor build.
    n2 GetSensorUpdatePolicyBuildsMacN2
    The n-2 sensor build.
    alls GetSensorUpdatePolicyBuildsMacAll[]
    All sensor builds for the specific platform.
    latest GetSensorUpdatePolicyBuildsMacLatest
    The latest sensor build.
    n1 GetSensorUpdatePolicyBuildsMacN1
    The n-1 sensor build.
    n2 GetSensorUpdatePolicyBuildsMacN2
    The n-2 sensor build.
    alls Sequence[GetSensorUpdatePolicyBuildsMacAll]
    All sensor builds for the specific platform.
    latest GetSensorUpdatePolicyBuildsMacLatest
    The latest sensor build.
    n1 GetSensorUpdatePolicyBuildsMacN1
    The n-1 sensor build.
    n2 GetSensorUpdatePolicyBuildsMacN2
    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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion String
    CrowdStrike Falcon Sensor version.
    stage String
    The stage for the build.

    GetSensorUpdatePolicyBuildsWindows

    Alls []GetSensorUpdatePolicyBuildsWindowsAll
    All sensor builds for the specific platform.
    Latest GetSensorUpdatePolicyBuildsWindowsLatest
    The latest sensor build.
    N1 GetSensorUpdatePolicyBuildsWindowsN1
    The n-1 sensor build.
    N2 GetSensorUpdatePolicyBuildsWindowsN2
    The n-2 sensor build.
    alls List<GetSensorUpdatePolicyBuildsWindowsAll>
    All sensor builds for the specific platform.
    latest GetSensorUpdatePolicyBuildsWindowsLatest
    The latest sensor build.
    n1 GetSensorUpdatePolicyBuildsWindowsN1
    The n-1 sensor build.
    n2 GetSensorUpdatePolicyBuildsWindowsN2
    The n-2 sensor build.
    alls GetSensorUpdatePolicyBuildsWindowsAll[]
    All sensor builds for the specific platform.
    latest GetSensorUpdatePolicyBuildsWindowsLatest
    The latest sensor build.
    n1 GetSensorUpdatePolicyBuildsWindowsN1
    The n-1 sensor build.
    n2 GetSensorUpdatePolicyBuildsWindowsN2
    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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    SensorVersion 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.
    SensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    sensorVersion 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.
    crowdstrike logo
    CrowdStrike v0.0.10 published on Monday, Mar 3, 2025 by CrowdStrike