1. Packages
  2. Time
  3. API Docs
  4. Offset
Time v0.0.17 published on Friday, Mar 22, 2024 by pulumiverse

time.Offset

Explore with Pulumi AI

time logo
Time v0.0.17 published on Friday, Mar 22, 2024 by pulumiverse

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as time from "@pulumiverse/time";
    
    const example = new time.Offset("example", {offsetDays: 7});
    export const oneWeekFromNow = example.rfc3339;
    
    import pulumi
    import pulumiverse_time as time
    
    example = time.Offset("example", offset_days=7)
    pulumi.export("oneWeekFromNow", example.rfc3339)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-time/sdk/go/time"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := time.NewOffset(ctx, "example", &time.OffsetArgs{
    			OffsetDays: pulumi.Int(7),
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("oneWeekFromNow", example.Rfc3339)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Time = Pulumiverse.Time;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Time.Offset("example", new()
        {
            OffsetDays = 7,
        });
    
        return new Dictionary<string, object?>
        {
            ["oneWeekFromNow"] = example.Rfc3339,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.time.Offset;
    import com.pulumi.time.OffsetArgs;
    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) {
            var example = new Offset("example", OffsetArgs.builder()        
                .offsetDays(7)
                .build());
    
            ctx.export("oneWeekFromNow", example.rfc3339());
        }
    }
    
    resources:
      example:
        type: time:Offset
        properties:
          offsetDays: 7
    outputs:
      oneWeekFromNow: ${example.rfc3339}
    

    Multiple Offsets Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as time from "@pulumiverse/time";
    
    const example = new time.Offset("example", {
        offsetYears: 1,
        offsetMonths: 1,
    });
    export const oneYearAndMonthFromNow = example.rfc3339;
    
    import pulumi
    import pulumiverse_time as time
    
    example = time.Offset("example",
        offset_years=1,
        offset_months=1)
    pulumi.export("oneYearAndMonthFromNow", example.rfc3339)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-time/sdk/go/time"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := time.NewOffset(ctx, "example", &time.OffsetArgs{
    			OffsetYears:  pulumi.Int(1),
    			OffsetMonths: pulumi.Int(1),
    		})
    		if err != nil {
    			return err
    		}
    		ctx.Export("oneYearAndMonthFromNow", example.Rfc3339)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Time = Pulumiverse.Time;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Time.Offset("example", new()
        {
            OffsetYears = 1,
            OffsetMonths = 1,
        });
    
        return new Dictionary<string, object?>
        {
            ["oneYearAndMonthFromNow"] = example.Rfc3339,
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.time.Offset;
    import com.pulumi.time.OffsetArgs;
    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) {
            var example = new Offset("example", OffsetArgs.builder()        
                .offsetYears(1)
                .offsetMonths(1)
                .build());
    
            ctx.export("oneYearAndMonthFromNow", example.rfc3339());
        }
    }
    
    resources:
      example:
        type: time:Offset
        properties:
          offsetYears: 1
          offsetMonths: 1
    outputs:
      oneYearAndMonthFromNow: ${example.rfc3339}
    

    Triggers Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    import * as time from "@pulumiverse/time";
    
    const amiUpdate = new time.Offset("amiUpdate", {
        triggers: {
            ami_id: data.aws_ami.example.id,
        },
        offsetDays: 7,
    });
    const server = new aws.ec2.Instance("server", {
        ami: amiUpdate.triggers.apply(triggers => triggers?.amiId),
        tags: {
            ExpirationTime: amiUpdate.rfc3339,
        },
    });
    // ... (other aws_instance arguments) ...
    
    import pulumi
    import pulumi_aws as aws
    import pulumiverse_time as time
    
    ami_update = time.Offset("amiUpdate",
        triggers={
            "ami_id": data["aws_ami"]["example"]["id"],
        },
        offset_days=7)
    server = aws.ec2.Instance("server",
        ami=ami_update.triggers["amiId"],
        tags={
            "ExpirationTime": ami_update.rfc3339,
        })
    # ... (other aws_instance arguments) ...
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-time/sdk/go/time"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		amiUpdate, err := time.NewOffset(ctx, "amiUpdate", &time.OffsetArgs{
    			Triggers: pulumi.StringMap{
    				"ami_id": pulumi.Any(data.Aws_ami.Example.Id),
    			},
    			OffsetDays: pulumi.Int(7),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = ec2.NewInstance(ctx, "server", &ec2.InstanceArgs{
    			Ami: amiUpdate.Triggers.ApplyT(func(triggers interface{}) (*string, error) {
    				return &triggers.AmiId, nil
    			}).(pulumi.StringPtrOutput),
    			Tags: pulumi.StringMap{
    				"ExpirationTime": amiUpdate.Rfc3339,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    using Time = Pulumiverse.Time;
    
    return await Deployment.RunAsync(() => 
    {
        var amiUpdate = new Time.Offset("amiUpdate", new()
        {
            Triggers = 
            {
                { "ami_id", data.Aws_ami.Example.Id },
            },
            OffsetDays = 7,
        });
    
        var server = new Aws.Ec2.Instance("server", new()
        {
            Ami = amiUpdate.Triggers.Apply(triggers => triggers?.AmiId),
            Tags = 
            {
                { "ExpirationTime", amiUpdate.Rfc3339 },
            },
        });
    
        // ... (other aws_instance arguments) ...
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.time.Offset;
    import com.pulumi.time.OffsetArgs;
    import com.pulumi.aws.ec2.Instance;
    import com.pulumi.aws.ec2.InstanceArgs;
    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) {
            var amiUpdate = new Offset("amiUpdate", OffsetArgs.builder()        
                .triggers(Map.of("ami_id", data.aws_ami().example().id()))
                .offsetDays(7)
                .build());
    
            var server = new Instance("server", InstanceArgs.builder()        
                .ami(amiUpdate.triggers().applyValue(triggers -> triggers.amiId()))
                .tags(Map.of("ExpirationTime", amiUpdate.rfc3339()))
                .build());
    
        }
    }
    
    resources:
      amiUpdate:
        type: time:Offset
        properties:
          triggers:
            ami_id: ${data.aws_ami.example.id}
          offsetDays: 7
      server:
        type: aws:ec2:Instance
        properties:
          # Read the AMI id "through" the time_offset resource to ensure that
          #   # both will change together.
          ami: ${amiUpdate.triggers.amiId}
          tags:
            ExpirationTime: ${amiUpdate.rfc3339}
    

    Create Offset Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Offset(name: string, args?: OffsetArgs, opts?: CustomResourceOptions);
    @overload
    def Offset(resource_name: str,
               args: Optional[OffsetArgs] = None,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Offset(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               base_rfc3339: Optional[str] = None,
               offset_days: Optional[int] = None,
               offset_hours: Optional[int] = None,
               offset_minutes: Optional[int] = None,
               offset_months: Optional[int] = None,
               offset_seconds: Optional[int] = None,
               offset_years: Optional[int] = None,
               triggers: Optional[Mapping[str, str]] = None)
    func NewOffset(ctx *Context, name string, args *OffsetArgs, opts ...ResourceOption) (*Offset, error)
    public Offset(string name, OffsetArgs? args = null, CustomResourceOptions? opts = null)
    public Offset(String name, OffsetArgs args)
    public Offset(String name, OffsetArgs args, CustomResourceOptions options)
    
    type: time:Offset
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args OffsetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args OffsetArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args OffsetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OffsetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OffsetArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var offsetResource = new Time.Offset("offsetResource", new()
    {
        BaseRfc3339 = "string",
        OffsetDays = 0,
        OffsetHours = 0,
        OffsetMinutes = 0,
        OffsetMonths = 0,
        OffsetSeconds = 0,
        OffsetYears = 0,
        Triggers = 
        {
            { "string", "string" },
        },
    });
    
    example, err := time.NewOffset(ctx, "offsetResource", &time.OffsetArgs{
    	BaseRfc3339:   pulumi.String("string"),
    	OffsetDays:    pulumi.Int(0),
    	OffsetHours:   pulumi.Int(0),
    	OffsetMinutes: pulumi.Int(0),
    	OffsetMonths:  pulumi.Int(0),
    	OffsetSeconds: pulumi.Int(0),
    	OffsetYears:   pulumi.Int(0),
    	Triggers: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var offsetResource = new Offset("offsetResource", OffsetArgs.builder()        
        .baseRfc3339("string")
        .offsetDays(0)
        .offsetHours(0)
        .offsetMinutes(0)
        .offsetMonths(0)
        .offsetSeconds(0)
        .offsetYears(0)
        .triggers(Map.of("string", "string"))
        .build());
    
    offset_resource = time.Offset("offsetResource",
        base_rfc3339="string",
        offset_days=0,
        offset_hours=0,
        offset_minutes=0,
        offset_months=0,
        offset_seconds=0,
        offset_years=0,
        triggers={
            "string": "string",
        })
    
    const offsetResource = new time.Offset("offsetResource", {
        baseRfc3339: "string",
        offsetDays: 0,
        offsetHours: 0,
        offsetMinutes: 0,
        offsetMonths: 0,
        offsetSeconds: 0,
        offsetYears: 0,
        triggers: {
            string: "string",
        },
    });
    
    type: time:Offset
    properties:
        baseRfc3339: string
        offsetDays: 0
        offsetHours: 0
        offsetMinutes: 0
        offsetMonths: 0
        offsetSeconds: 0
        offsetYears: 0
        triggers:
            string: string
    

    Offset Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Offset resource accepts the following input properties:

    BaseRfc3339 string
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    OffsetDays int
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetHours int
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetMinutes int
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetMonths int
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetSeconds int
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetYears int
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    Triggers Dictionary<string, string>
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.
    BaseRfc3339 string
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    OffsetDays int
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetHours int
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetMinutes int
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetMonths int
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetSeconds int
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetYears int
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    Triggers map[string]string
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.
    baseRfc3339 String
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    offsetDays Integer
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetHours Integer
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMinutes Integer
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMonths Integer
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetSeconds Integer
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetYears Integer
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    triggers Map<String,String>
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.
    baseRfc3339 string
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    offsetDays number
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetHours number
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMinutes number
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMonths number
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetSeconds number
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetYears number
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    triggers {[key: string]: string}
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.
    base_rfc3339 str
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    offset_days int
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offset_hours int
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offset_minutes int
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offset_months int
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offset_seconds int
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offset_years int
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    triggers Mapping[str, str]
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.
    baseRfc3339 String
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    offsetDays Number
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetHours Number
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMinutes Number
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMonths Number
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetSeconds Number
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetYears Number
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    triggers Map<String>
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Offset resource produces the following output properties:

    Day int
    Number day of offset timestamp.
    Hour int
    Number hour of offset timestamp.
    Id string
    The provider-assigned unique ID for this managed resource.
    Minute int
    Number minute of offset timestamp.
    Month int
    Number month of offset timestamp.
    Rfc3339 string
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    Second int
    Number second of offset timestamp.
    Unix int
    Number of seconds since epoch time, e.g. 1581489373.
    Year int
    Number year of offset timestamp.
    Day int
    Number day of offset timestamp.
    Hour int
    Number hour of offset timestamp.
    Id string
    The provider-assigned unique ID for this managed resource.
    Minute int
    Number minute of offset timestamp.
    Month int
    Number month of offset timestamp.
    Rfc3339 string
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    Second int
    Number second of offset timestamp.
    Unix int
    Number of seconds since epoch time, e.g. 1581489373.
    Year int
    Number year of offset timestamp.
    day Integer
    Number day of offset timestamp.
    hour Integer
    Number hour of offset timestamp.
    id String
    The provider-assigned unique ID for this managed resource.
    minute Integer
    Number minute of offset timestamp.
    month Integer
    Number month of offset timestamp.
    rfc3339 String
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    second Integer
    Number second of offset timestamp.
    unix Integer
    Number of seconds since epoch time, e.g. 1581489373.
    year Integer
    Number year of offset timestamp.
    day number
    Number day of offset timestamp.
    hour number
    Number hour of offset timestamp.
    id string
    The provider-assigned unique ID for this managed resource.
    minute number
    Number minute of offset timestamp.
    month number
    Number month of offset timestamp.
    rfc3339 string
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    second number
    Number second of offset timestamp.
    unix number
    Number of seconds since epoch time, e.g. 1581489373.
    year number
    Number year of offset timestamp.
    day int
    Number day of offset timestamp.
    hour int
    Number hour of offset timestamp.
    id str
    The provider-assigned unique ID for this managed resource.
    minute int
    Number minute of offset timestamp.
    month int
    Number month of offset timestamp.
    rfc3339 str
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    second int
    Number second of offset timestamp.
    unix int
    Number of seconds since epoch time, e.g. 1581489373.
    year int
    Number year of offset timestamp.
    day Number
    Number day of offset timestamp.
    hour Number
    Number hour of offset timestamp.
    id String
    The provider-assigned unique ID for this managed resource.
    minute Number
    Number minute of offset timestamp.
    month Number
    Number month of offset timestamp.
    rfc3339 String
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    second Number
    Number second of offset timestamp.
    unix Number
    Number of seconds since epoch time, e.g. 1581489373.
    year Number
    Number year of offset timestamp.

    Look up Existing Offset Resource

    Get an existing Offset resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: OffsetState, opts?: CustomResourceOptions): Offset
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            base_rfc3339: Optional[str] = None,
            day: Optional[int] = None,
            hour: Optional[int] = None,
            minute: Optional[int] = None,
            month: Optional[int] = None,
            offset_days: Optional[int] = None,
            offset_hours: Optional[int] = None,
            offset_minutes: Optional[int] = None,
            offset_months: Optional[int] = None,
            offset_seconds: Optional[int] = None,
            offset_years: Optional[int] = None,
            rfc3339: Optional[str] = None,
            second: Optional[int] = None,
            triggers: Optional[Mapping[str, str]] = None,
            unix: Optional[int] = None,
            year: Optional[int] = None) -> Offset
    func GetOffset(ctx *Context, name string, id IDInput, state *OffsetState, opts ...ResourceOption) (*Offset, error)
    public static Offset Get(string name, Input<string> id, OffsetState? state, CustomResourceOptions? opts = null)
    public static Offset get(String name, Output<String> id, OffsetState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BaseRfc3339 string
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    Day int
    Number day of offset timestamp.
    Hour int
    Number hour of offset timestamp.
    Minute int
    Number minute of offset timestamp.
    Month int
    Number month of offset timestamp.
    OffsetDays int
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetHours int
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetMinutes int
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetMonths int
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetSeconds int
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetYears int
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    Rfc3339 string
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    Second int
    Number second of offset timestamp.
    Triggers Dictionary<string, string>
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.
    Unix int
    Number of seconds since epoch time, e.g. 1581489373.
    Year int
    Number year of offset timestamp.
    BaseRfc3339 string
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    Day int
    Number day of offset timestamp.
    Hour int
    Number hour of offset timestamp.
    Minute int
    Number minute of offset timestamp.
    Month int
    Number month of offset timestamp.
    OffsetDays int
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetHours int
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetMinutes int
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetMonths int
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetSeconds int
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    OffsetYears int
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    Rfc3339 string
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    Second int
    Number second of offset timestamp.
    Triggers map[string]string
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.
    Unix int
    Number of seconds since epoch time, e.g. 1581489373.
    Year int
    Number year of offset timestamp.
    baseRfc3339 String
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    day Integer
    Number day of offset timestamp.
    hour Integer
    Number hour of offset timestamp.
    minute Integer
    Number minute of offset timestamp.
    month Integer
    Number month of offset timestamp.
    offsetDays Integer
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetHours Integer
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMinutes Integer
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMonths Integer
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetSeconds Integer
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetYears Integer
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    rfc3339 String
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    second Integer
    Number second of offset timestamp.
    triggers Map<String,String>
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.
    unix Integer
    Number of seconds since epoch time, e.g. 1581489373.
    year Integer
    Number year of offset timestamp.
    baseRfc3339 string
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    day number
    Number day of offset timestamp.
    hour number
    Number hour of offset timestamp.
    minute number
    Number minute of offset timestamp.
    month number
    Number month of offset timestamp.
    offsetDays number
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetHours number
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMinutes number
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMonths number
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetSeconds number
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetYears number
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    rfc3339 string
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    second number
    Number second of offset timestamp.
    triggers {[key: string]: string}
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.
    unix number
    Number of seconds since epoch time, e.g. 1581489373.
    year number
    Number year of offset timestamp.
    base_rfc3339 str
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    day int
    Number day of offset timestamp.
    hour int
    Number hour of offset timestamp.
    minute int
    Number minute of offset timestamp.
    month int
    Number month of offset timestamp.
    offset_days int
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offset_hours int
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offset_minutes int
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offset_months int
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offset_seconds int
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offset_years int
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    rfc3339 str
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    second int
    Number second of offset timestamp.
    triggers Mapping[str, str]
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.
    unix int
    Number of seconds since epoch time, e.g. 1581489373.
    year int
    Number year of offset timestamp.
    baseRfc3339 String
    Base timestamp in RFC3339 format (see RFC3339 time string e.g., YYYY-MM-DDTHH:MM:SSZ). Defaults to the current time.
    day Number
    Number day of offset timestamp.
    hour Number
    Number hour of offset timestamp.
    minute Number
    Number minute of offset timestamp.
    month Number
    Number month of offset timestamp.
    offsetDays Number
    Number of days to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetHours Number
    Number of hours to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMinutes Number
    Number of minutes to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetMonths Number
    Number of months to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetSeconds Number
    Number of seconds to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    offsetYears Number
    Number of years to offset the base timestamp. At least one of the 'offset_' arguments must be configured.
    rfc3339 String
    RFC3339 format of the offset timestamp, e.g. 2020-02-12T06:36:13Z.
    second Number
    Number second of offset timestamp.
    triggers Map<String>
    Arbitrary map of values that, when changed, will trigger a new base timestamp value to be saved. See the main provider documentation for more information.
    unix Number
    Number of seconds since epoch time, e.g. 1581489373.
    year Number
    Number year of offset timestamp.

    Import

    This resource can be imported using the base UTC RFC3339 timestamp and offset years, months, days, hours, minutes, and seconds, separated by commas (,), e.g.

    $ pulumi import time:index/offset:Offset example 2020-02-12T06:36:13Z,0,0,7,0,0,0
    

    The triggers argument cannot be imported.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    time pulumiverse/pulumi-time
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the time Terraform Provider.
    time logo
    Time v0.0.17 published on Friday, Mar 22, 2024 by pulumiverse