intersight.ApplianceBackupPolicy
Explore with Pulumi AI
BackupPolicy stores the Intersight Appliance’s backup policy. There will be only one BackupPolicy managed object in the Intersight Appliance. Default backup policy managed object is created during the Intersight Appliance setup, and it is configured in the manual backup mode.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const config = new pulumi.Config();
const account = config.require("account");
const applianceBackupPolicies1 = new intersight.ApplianceBackupPolicy("applianceBackupPolicies1", {
filename: "default_filename1",
protocol: "scp",
remoteHost: "host.remote",
remotePath: "path/to/remote/host",
remotePort: 0,
username: "user_1",
manualBackup: true,
schedules: [{
objectType: "onprem.Schedule",
dayOfMonth: 1,
dayOfWeek: 1,
monthOfYear: 1,
repeatInterval: 0,
timeOfDay: 0,
timeZone: "Pacific/Niue",
weekOfMonth: 1,
}],
accounts: [{
objectType: "iam.Account",
moid: account,
}],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
account = config.require("account")
appliance_backup_policies1 = intersight.ApplianceBackupPolicy("applianceBackupPolicies1",
filename="default_filename1",
protocol="scp",
remote_host="host.remote",
remote_path="path/to/remote/host",
remote_port=0,
username="user_1",
manual_backup=True,
schedules=[{
"object_type": "onprem.Schedule",
"day_of_month": 1,
"day_of_week": 1,
"month_of_year": 1,
"repeat_interval": 0,
"time_of_day": 0,
"time_zone": "Pacific/Niue",
"week_of_month": 1,
}],
accounts=[{
"object_type": "iam.Account",
"moid": account,
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
account := cfg.Require("account")
_, err := intersight.NewApplianceBackupPolicy(ctx, "applianceBackupPolicies1", &intersight.ApplianceBackupPolicyArgs{
Filename: pulumi.String("default_filename1"),
Protocol: pulumi.String("scp"),
RemoteHost: pulumi.String("host.remote"),
RemotePath: pulumi.String("path/to/remote/host"),
RemotePort: pulumi.Float64(0),
Username: pulumi.String("user_1"),
ManualBackup: pulumi.Bool(true),
Schedules: intersight.ApplianceBackupPolicyScheduleArray{
&intersight.ApplianceBackupPolicyScheduleArgs{
ObjectType: pulumi.String("onprem.Schedule"),
DayOfMonth: pulumi.Float64(1),
DayOfWeek: pulumi.Float64(1),
MonthOfYear: pulumi.Float64(1),
RepeatInterval: pulumi.Float64(0),
TimeOfDay: pulumi.Float64(0),
TimeZone: pulumi.String("Pacific/Niue"),
WeekOfMonth: pulumi.Float64(1),
},
},
Accounts: intersight.ApplianceBackupPolicyAccountArray{
&intersight.ApplianceBackupPolicyAccountArgs{
ObjectType: pulumi.String("iam.Account"),
Moid: pulumi.String(account),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var account = config.Require("account");
var applianceBackupPolicies1 = new Intersight.ApplianceBackupPolicy("applianceBackupPolicies1", new()
{
Filename = "default_filename1",
Protocol = "scp",
RemoteHost = "host.remote",
RemotePath = "path/to/remote/host",
RemotePort = 0,
Username = "user_1",
ManualBackup = true,
Schedules = new[]
{
new Intersight.Inputs.ApplianceBackupPolicyScheduleArgs
{
ObjectType = "onprem.Schedule",
DayOfMonth = 1,
DayOfWeek = 1,
MonthOfYear = 1,
RepeatInterval = 0,
TimeOfDay = 0,
TimeZone = "Pacific/Niue",
WeekOfMonth = 1,
},
},
Accounts = new[]
{
new Intersight.Inputs.ApplianceBackupPolicyAccountArgs
{
ObjectType = "iam.Account",
Moid = account,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.ApplianceBackupPolicy;
import com.pulumi.intersight.ApplianceBackupPolicyArgs;
import com.pulumi.intersight.inputs.ApplianceBackupPolicyScheduleArgs;
import com.pulumi.intersight.inputs.ApplianceBackupPolicyAccountArgs;
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 config = ctx.config();
final var account = config.get("account");
var applianceBackupPolicies1 = new ApplianceBackupPolicy("applianceBackupPolicies1", ApplianceBackupPolicyArgs.builder()
.filename("default_filename1")
.protocol("scp")
.remoteHost("host.remote")
.remotePath("path/to/remote/host")
.remotePort(0)
.username("user_1")
.manualBackup(true)
.schedules(ApplianceBackupPolicyScheduleArgs.builder()
.objectType("onprem.Schedule")
.dayOfMonth(1)
.dayOfWeek(1)
.monthOfYear(1)
.repeatInterval(0)
.timeOfDay(0)
.timeZone("Pacific/Niue")
.weekOfMonth(1)
.build())
.accounts(ApplianceBackupPolicyAccountArgs.builder()
.objectType("iam.Account")
.moid(account)
.build())
.build());
}
}
configuration:
account:
type: string
resources:
applianceBackupPolicies1:
type: intersight:ApplianceBackupPolicy
properties:
filename: default_filename1
protocol: scp
remoteHost: host.remote
remotePath: path/to/remote/host
remotePort: 0
username: user_1
manualBackup: true
schedules:
- objectType: onprem.Schedule
dayOfMonth: 1
dayOfWeek: 1
monthOfYear: 1
repeatInterval: 0
timeOfDay: 0
timeZone: Pacific/Niue
weekOfMonth: 1
accounts:
- objectType: iam.Account
moid: ${account}
Create ApplianceBackupPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ApplianceBackupPolicy(name: string, args?: ApplianceBackupPolicyArgs, opts?: CustomResourceOptions);
@overload
def ApplianceBackupPolicy(resource_name: str,
args: Optional[ApplianceBackupPolicyArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ApplianceBackupPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
accounts: Optional[Sequence[ApplianceBackupPolicyAccountArgs]] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[ApplianceBackupPolicyAncestorArgs]] = None,
appliance_backup_policy_id: Optional[str] = None,
backup_time: Optional[str] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
domain_group_moid: Optional[str] = None,
filename: Optional[str] = None,
is_password_set: Optional[bool] = None,
manual_backup: Optional[bool] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
object_type: Optional[str] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[ApplianceBackupPolicyParentArgs]] = None,
password: Optional[str] = None,
permission_resources: Optional[Sequence[ApplianceBackupPolicyPermissionResourceArgs]] = None,
protocol: Optional[str] = None,
remote_host: Optional[str] = None,
remote_path: Optional[str] = None,
remote_port: Optional[float] = None,
retention_count: Optional[float] = None,
retention_policy_enabled: Optional[bool] = None,
schedules: Optional[Sequence[ApplianceBackupPolicyScheduleArgs]] = None,
shared_scope: Optional[str] = None,
tags: Optional[Sequence[ApplianceBackupPolicyTagArgs]] = None,
username: Optional[str] = None,
version_contexts: Optional[Sequence[ApplianceBackupPolicyVersionContextArgs]] = None)
func NewApplianceBackupPolicy(ctx *Context, name string, args *ApplianceBackupPolicyArgs, opts ...ResourceOption) (*ApplianceBackupPolicy, error)
public ApplianceBackupPolicy(string name, ApplianceBackupPolicyArgs? args = null, CustomResourceOptions? opts = null)
public ApplianceBackupPolicy(String name, ApplianceBackupPolicyArgs args)
public ApplianceBackupPolicy(String name, ApplianceBackupPolicyArgs args, CustomResourceOptions options)
type: intersight:ApplianceBackupPolicy
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 ApplianceBackupPolicyArgs
- 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 ApplianceBackupPolicyArgs
- 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 ApplianceBackupPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplianceBackupPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApplianceBackupPolicyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var applianceBackupPolicyResource = new Intersight.ApplianceBackupPolicy("applianceBackupPolicyResource", new()
{
AccountMoid = "string",
Accounts = new[]
{
new Intersight.Inputs.ApplianceBackupPolicyAccountArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.ApplianceBackupPolicyAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ApplianceBackupPolicyId = "string",
BackupTime = "string",
ClassId = "string",
CreateTime = "string",
DomainGroupMoid = "string",
Filename = "string",
IsPasswordSet = false,
ManualBackup = false,
ModTime = "string",
Moid = "string",
ObjectType = "string",
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.ApplianceBackupPolicyParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Password = "string",
PermissionResources = new[]
{
new Intersight.Inputs.ApplianceBackupPolicyPermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Protocol = "string",
RemoteHost = "string",
RemotePath = "string",
RemotePort = 0,
RetentionCount = 0,
RetentionPolicyEnabled = false,
Schedules = new[]
{
new Intersight.Inputs.ApplianceBackupPolicyScheduleArgs
{
AdditionalProperties = "string",
ClassId = "string",
DayOfMonth = 0,
DayOfWeek = 0,
MonthOfYear = 0,
ObjectType = "string",
RepeatInterval = 0,
TimeOfDay = 0,
TimeZone = "string",
WeekOfMonth = 0,
},
},
SharedScope = "string",
Tags = new[]
{
new Intersight.Inputs.ApplianceBackupPolicyTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
Username = "string",
VersionContexts = new[]
{
new Intersight.Inputs.ApplianceBackupPolicyVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.ApplianceBackupPolicyVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.ApplianceBackupPolicyVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
});
example, err := intersight.NewApplianceBackupPolicy(ctx, "applianceBackupPolicyResource", &intersight.ApplianceBackupPolicyArgs{
AccountMoid: pulumi.String("string"),
Accounts: intersight.ApplianceBackupPolicyAccountArray{
&intersight.ApplianceBackupPolicyAccountArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
AdditionalProperties: pulumi.String("string"),
Ancestors: intersight.ApplianceBackupPolicyAncestorArray{
&intersight.ApplianceBackupPolicyAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ApplianceBackupPolicyId: pulumi.String("string"),
BackupTime: pulumi.String("string"),
ClassId: pulumi.String("string"),
CreateTime: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
Filename: pulumi.String("string"),
IsPasswordSet: pulumi.Bool(false),
ManualBackup: pulumi.Bool(false),
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Parents: intersight.ApplianceBackupPolicyParentArray{
&intersight.ApplianceBackupPolicyParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Password: pulumi.String("string"),
PermissionResources: intersight.ApplianceBackupPolicyPermissionResourceArray{
&intersight.ApplianceBackupPolicyPermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Protocol: pulumi.String("string"),
RemoteHost: pulumi.String("string"),
RemotePath: pulumi.String("string"),
RemotePort: pulumi.Float64(0),
RetentionCount: pulumi.Float64(0),
RetentionPolicyEnabled: pulumi.Bool(false),
Schedules: intersight.ApplianceBackupPolicyScheduleArray{
&intersight.ApplianceBackupPolicyScheduleArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
DayOfMonth: pulumi.Float64(0),
DayOfWeek: pulumi.Float64(0),
MonthOfYear: pulumi.Float64(0),
ObjectType: pulumi.String("string"),
RepeatInterval: pulumi.Float64(0),
TimeOfDay: pulumi.Float64(0),
TimeZone: pulumi.String("string"),
WeekOfMonth: pulumi.Float64(0),
},
},
SharedScope: pulumi.String("string"),
Tags: intersight.ApplianceBackupPolicyTagArray{
&intersight.ApplianceBackupPolicyTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Username: pulumi.String("string"),
VersionContexts: intersight.ApplianceBackupPolicyVersionContextArray{
&intersight.ApplianceBackupPolicyVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.ApplianceBackupPolicyVersionContextInterestedMoArray{
&intersight.ApplianceBackupPolicyVersionContextInterestedMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
MarkedForDeletion: pulumi.Bool(false),
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
RefMos: intersight.ApplianceBackupPolicyVersionContextRefMoArray{
&intersight.ApplianceBackupPolicyVersionContextRefMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Timestamp: pulumi.String("string"),
VersionType: pulumi.String("string"),
},
},
})
var applianceBackupPolicyResource = new ApplianceBackupPolicy("applianceBackupPolicyResource", ApplianceBackupPolicyArgs.builder()
.accountMoid("string")
.accounts(ApplianceBackupPolicyAccountArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.additionalProperties("string")
.ancestors(ApplianceBackupPolicyAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.applianceBackupPolicyId("string")
.backupTime("string")
.classId("string")
.createTime("string")
.domainGroupMoid("string")
.filename("string")
.isPasswordSet(false)
.manualBackup(false)
.modTime("string")
.moid("string")
.objectType("string")
.owners("string")
.parents(ApplianceBackupPolicyParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.password("string")
.permissionResources(ApplianceBackupPolicyPermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.protocol("string")
.remoteHost("string")
.remotePath("string")
.remotePort(0)
.retentionCount(0)
.retentionPolicyEnabled(false)
.schedules(ApplianceBackupPolicyScheduleArgs.builder()
.additionalProperties("string")
.classId("string")
.dayOfMonth(0)
.dayOfWeek(0)
.monthOfYear(0)
.objectType("string")
.repeatInterval(0)
.timeOfDay(0)
.timeZone("string")
.weekOfMonth(0)
.build())
.sharedScope("string")
.tags(ApplianceBackupPolicyTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.username("string")
.versionContexts(ApplianceBackupPolicyVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(ApplianceBackupPolicyVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(ApplianceBackupPolicyVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.build());
appliance_backup_policy_resource = intersight.ApplianceBackupPolicy("applianceBackupPolicyResource",
account_moid="string",
accounts=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
appliance_backup_policy_id="string",
backup_time="string",
class_id="string",
create_time="string",
domain_group_moid="string",
filename="string",
is_password_set=False,
manual_backup=False,
mod_time="string",
moid="string",
object_type="string",
owners=["string"],
parents=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
password="string",
permission_resources=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
protocol="string",
remote_host="string",
remote_path="string",
remote_port=0,
retention_count=0,
retention_policy_enabled=False,
schedules=[{
"additional_properties": "string",
"class_id": "string",
"day_of_month": 0,
"day_of_week": 0,
"month_of_year": 0,
"object_type": "string",
"repeat_interval": 0,
"time_of_day": 0,
"time_zone": "string",
"week_of_month": 0,
}],
shared_scope="string",
tags=[{
"additional_properties": "string",
"key": "string",
"value": "string",
}],
username="string",
version_contexts=[{
"additional_properties": "string",
"class_id": "string",
"interested_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"marked_for_deletion": False,
"nr_version": "string",
"object_type": "string",
"ref_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"timestamp": "string",
"version_type": "string",
}])
const applianceBackupPolicyResource = new intersight.ApplianceBackupPolicy("applianceBackupPolicyResource", {
accountMoid: "string",
accounts: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
applianceBackupPolicyId: "string",
backupTime: "string",
classId: "string",
createTime: "string",
domainGroupMoid: "string",
filename: "string",
isPasswordSet: false,
manualBackup: false,
modTime: "string",
moid: "string",
objectType: "string",
owners: ["string"],
parents: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
password: "string",
permissionResources: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
protocol: "string",
remoteHost: "string",
remotePath: "string",
remotePort: 0,
retentionCount: 0,
retentionPolicyEnabled: false,
schedules: [{
additionalProperties: "string",
classId: "string",
dayOfMonth: 0,
dayOfWeek: 0,
monthOfYear: 0,
objectType: "string",
repeatInterval: 0,
timeOfDay: 0,
timeZone: "string",
weekOfMonth: 0,
}],
sharedScope: "string",
tags: [{
additionalProperties: "string",
key: "string",
value: "string",
}],
username: "string",
versionContexts: [{
additionalProperties: "string",
classId: "string",
interestedMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
markedForDeletion: false,
nrVersion: "string",
objectType: "string",
refMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
timestamp: "string",
versionType: "string",
}],
});
type: intersight:ApplianceBackupPolicy
properties:
accountMoid: string
accounts:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
applianceBackupPolicyId: string
backupTime: string
classId: string
createTime: string
domainGroupMoid: string
filename: string
isPasswordSet: false
manualBackup: false
modTime: string
moid: string
objectType: string
owners:
- string
parents:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
password: string
permissionResources:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
protocol: string
remoteHost: string
remotePath: string
remotePort: 0
retentionCount: 0
retentionPolicyEnabled: false
schedules:
- additionalProperties: string
classId: string
dayOfMonth: 0
dayOfWeek: 0
monthOfYear: 0
objectType: string
repeatInterval: 0
timeOfDay: 0
timeZone: string
weekOfMonth: 0
sharedScope: string
tags:
- additionalProperties: string
key: string
value: string
username: string
versionContexts:
- additionalProperties: string
classId: string
interestedMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
markedForDeletion: false
nrVersion: string
objectType: string
refMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
timestamp: string
versionType: string
ApplianceBackupPolicy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ApplianceBackupPolicy resource accepts the following input properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Accounts
List<Appliance
Backup Policy Account> - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Additional
Properties string - Ancestors
List<Appliance
Backup Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Appliance
Backup stringPolicy Id - Backup
Time string - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Filename string
- Backup filename to backup or restore.
- Is
Password boolSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- Manual
Backup bool - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Appliance
Backup Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Password string
- Password to authenticate the file server.
- Permission
Resources List<ApplianceBackup Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Protocol string
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - Remote
Host string - Hostname of the remote file server.
- Remote
Path string - File server directory or share name to copy the file.
- Remote
Port double - Remote TCP port on the file server (e.g. 22 for scp).
- Retention
Count double - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- Retention
Policy boolEnabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- Schedules
List<Appliance
Backup Policy Schedule> - Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Appliance
Backup Policy Tag> - This complex property has following sub-properties:
- Username string
- Username to authenticate the fileserver.
- Version
Contexts List<ApplianceBackup Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Accounts
[]Appliance
Backup Policy Account Args - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Additional
Properties string - Ancestors
[]Appliance
Backup Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Appliance
Backup stringPolicy Id - Backup
Time string - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Filename string
- Backup filename to backup or restore.
- Is
Password boolSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- Manual
Backup bool - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Appliance
Backup Policy Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Password string
- Password to authenticate the file server.
- Permission
Resources []ApplianceBackup Policy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Protocol string
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - Remote
Host string - Hostname of the remote file server.
- Remote
Path string - File server directory or share name to copy the file.
- Remote
Port float64 - Remote TCP port on the file server (e.g. 22 for scp).
- Retention
Count float64 - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- Retention
Policy boolEnabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- Schedules
[]Appliance
Backup Policy Schedule Args - Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- []Appliance
Backup Policy Tag Args - This complex property has following sub-properties:
- Username string
- Username to authenticate the fileserver.
- Version
Contexts []ApplianceBackup Policy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- accounts
List<Appliance
Backup Policy Account> - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- additional
Properties String - ancestors
List<Appliance
Backup Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Backup StringPolicy Id - backup
Time String - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- filename String
- Backup filename to backup or restore.
- is
Password BooleanSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- manual
Backup Boolean - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Appliance
Backup Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- password String
- Password to authenticate the file server.
- permission
Resources List<ApplianceBackup Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- protocol String
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - remote
Host String - Hostname of the remote file server.
- remote
Path String - File server directory or share name to copy the file.
- remote
Port Double - Remote TCP port on the file server (e.g. 22 for scp).
- retention
Count Double - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- retention
Policy BooleanEnabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- schedules
List<Appliance
Backup Policy Schedule> - Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Appliance
Backup Policy Tag> - This complex property has following sub-properties:
- username String
- Username to authenticate the fileserver.
- version
Contexts List<ApplianceBackup Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- accounts
Appliance
Backup Policy Account[] - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- additional
Properties string - ancestors
Appliance
Backup Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Backup stringPolicy Id - backup
Time string - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- filename string
- Backup filename to backup or restore.
- is
Password booleanSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- manual
Backup boolean - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Appliance
Backup Policy Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- password string
- Password to authenticate the file server.
- permission
Resources ApplianceBackup Policy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- protocol string
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - remote
Host string - Hostname of the remote file server.
- remote
Path string - File server directory or share name to copy the file.
- remote
Port number - Remote TCP port on the file server (e.g. 22 for scp).
- retention
Count number - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- retention
Policy booleanEnabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- schedules
Appliance
Backup Policy Schedule[] - Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Appliance
Backup Policy Tag[] - This complex property has following sub-properties:
- username string
- Username to authenticate the fileserver.
- version
Contexts ApplianceBackup Policy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- accounts
Sequence[Appliance
Backup Policy Account Args] - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- additional_
properties str - ancestors
Sequence[Appliance
Backup Policy Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance_
backup_ strpolicy_ id - backup_
time str - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- filename str
- Backup filename to backup or restore.
- is_
password_ boolset - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- manual_
backup bool - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Appliance
Backup Policy Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- password str
- Password to authenticate the file server.
- permission_
resources Sequence[ApplianceBackup Policy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- protocol str
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - remote_
host str - Hostname of the remote file server.
- remote_
path str - File server directory or share name to copy the file.
- remote_
port float - Remote TCP port on the file server (e.g. 22 for scp).
- retention_
count float - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- retention_
policy_ boolenabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- schedules
Sequence[Appliance
Backup Policy Schedule Args] - Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Sequence[Appliance
Backup Policy Tag Args] - This complex property has following sub-properties:
- username str
- Username to authenticate the fileserver.
- version_
contexts Sequence[ApplianceBackup Policy Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- accounts List<Property Map>
- A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Backup StringPolicy Id - backup
Time String - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- filename String
- Backup filename to backup or restore.
- is
Password BooleanSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- manual
Backup Boolean - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- password String
- Password to authenticate the file server.
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- protocol String
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - remote
Host String - Hostname of the remote file server.
- remote
Path String - File server directory or share name to copy the file.
- remote
Port Number - Remote TCP port on the file server (e.g. 22 for scp).
- retention
Count Number - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- retention
Policy BooleanEnabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- schedules List<Property Map>
- Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Property Map>
- This complex property has following sub-properties:
- username String
- Username to authenticate the fileserver.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the ApplianceBackupPolicy resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ApplianceBackupPolicy Resource
Get an existing ApplianceBackupPolicy 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?: ApplianceBackupPolicyState, opts?: CustomResourceOptions): ApplianceBackupPolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
accounts: Optional[Sequence[ApplianceBackupPolicyAccountArgs]] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[ApplianceBackupPolicyAncestorArgs]] = None,
appliance_backup_policy_id: Optional[str] = None,
backup_time: Optional[str] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
domain_group_moid: Optional[str] = None,
filename: Optional[str] = None,
is_password_set: Optional[bool] = None,
manual_backup: Optional[bool] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
object_type: Optional[str] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[ApplianceBackupPolicyParentArgs]] = None,
password: Optional[str] = None,
permission_resources: Optional[Sequence[ApplianceBackupPolicyPermissionResourceArgs]] = None,
protocol: Optional[str] = None,
remote_host: Optional[str] = None,
remote_path: Optional[str] = None,
remote_port: Optional[float] = None,
retention_count: Optional[float] = None,
retention_policy_enabled: Optional[bool] = None,
schedules: Optional[Sequence[ApplianceBackupPolicyScheduleArgs]] = None,
shared_scope: Optional[str] = None,
tags: Optional[Sequence[ApplianceBackupPolicyTagArgs]] = None,
username: Optional[str] = None,
version_contexts: Optional[Sequence[ApplianceBackupPolicyVersionContextArgs]] = None) -> ApplianceBackupPolicy
func GetApplianceBackupPolicy(ctx *Context, name string, id IDInput, state *ApplianceBackupPolicyState, opts ...ResourceOption) (*ApplianceBackupPolicy, error)
public static ApplianceBackupPolicy Get(string name, Input<string> id, ApplianceBackupPolicyState? state, CustomResourceOptions? opts = null)
public static ApplianceBackupPolicy get(String name, Output<String> id, ApplianceBackupPolicyState state, CustomResourceOptions options)
resources: _: type: intersight:ApplianceBackupPolicy get: id: ${id}
- 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.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Accounts
List<Appliance
Backup Policy Account> - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Additional
Properties string - Ancestors
List<Appliance
Backup Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Appliance
Backup stringPolicy Id - Backup
Time string - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Filename string
- Backup filename to backup or restore.
- Is
Password boolSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- Manual
Backup bool - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Appliance
Backup Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Password string
- Password to authenticate the file server.
- Permission
Resources List<ApplianceBackup Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Protocol string
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - Remote
Host string - Hostname of the remote file server.
- Remote
Path string - File server directory or share name to copy the file.
- Remote
Port double - Remote TCP port on the file server (e.g. 22 for scp).
- Retention
Count double - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- Retention
Policy boolEnabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- Schedules
List<Appliance
Backup Policy Schedule> - Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Appliance
Backup Policy Tag> - This complex property has following sub-properties:
- Username string
- Username to authenticate the fileserver.
- Version
Contexts List<ApplianceBackup Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Accounts
[]Appliance
Backup Policy Account Args - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Additional
Properties string - Ancestors
[]Appliance
Backup Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Appliance
Backup stringPolicy Id - Backup
Time string - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Filename string
- Backup filename to backup or restore.
- Is
Password boolSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- Manual
Backup bool - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Appliance
Backup Policy Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Password string
- Password to authenticate the file server.
- Permission
Resources []ApplianceBackup Policy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Protocol string
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - Remote
Host string - Hostname of the remote file server.
- Remote
Path string - File server directory or share name to copy the file.
- Remote
Port float64 - Remote TCP port on the file server (e.g. 22 for scp).
- Retention
Count float64 - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- Retention
Policy boolEnabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- Schedules
[]Appliance
Backup Policy Schedule Args - Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- []Appliance
Backup Policy Tag Args - This complex property has following sub-properties:
- Username string
- Username to authenticate the fileserver.
- Version
Contexts []ApplianceBackup Policy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- accounts
List<Appliance
Backup Policy Account> - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- additional
Properties String - ancestors
List<Appliance
Backup Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Backup StringPolicy Id - backup
Time String - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- filename String
- Backup filename to backup or restore.
- is
Password BooleanSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- manual
Backup Boolean - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Appliance
Backup Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- password String
- Password to authenticate the file server.
- permission
Resources List<ApplianceBackup Policy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- protocol String
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - remote
Host String - Hostname of the remote file server.
- remote
Path String - File server directory or share name to copy the file.
- remote
Port Double - Remote TCP port on the file server (e.g. 22 for scp).
- retention
Count Double - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- retention
Policy BooleanEnabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- schedules
List<Appliance
Backup Policy Schedule> - Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Appliance
Backup Policy Tag> - This complex property has following sub-properties:
- username String
- Username to authenticate the fileserver.
- version
Contexts List<ApplianceBackup Policy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- accounts
Appliance
Backup Policy Account[] - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- additional
Properties string - ancestors
Appliance
Backup Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Backup stringPolicy Id - backup
Time string - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- filename string
- Backup filename to backup or restore.
- is
Password booleanSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- manual
Backup boolean - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Appliance
Backup Policy Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- password string
- Password to authenticate the file server.
- permission
Resources ApplianceBackup Policy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- protocol string
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - remote
Host string - Hostname of the remote file server.
- remote
Path string - File server directory or share name to copy the file.
- remote
Port number - Remote TCP port on the file server (e.g. 22 for scp).
- retention
Count number - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- retention
Policy booleanEnabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- schedules
Appliance
Backup Policy Schedule[] - Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Appliance
Backup Policy Tag[] - This complex property has following sub-properties:
- username string
- Username to authenticate the fileserver.
- version
Contexts ApplianceBackup Policy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- accounts
Sequence[Appliance
Backup Policy Account Args] - A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- additional_
properties str - ancestors
Sequence[Appliance
Backup Policy Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance_
backup_ strpolicy_ id - backup_
time str - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- filename str
- Backup filename to backup or restore.
- is_
password_ boolset - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- manual_
backup bool - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Appliance
Backup Policy Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- password str
- Password to authenticate the file server.
- permission_
resources Sequence[ApplianceBackup Policy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- protocol str
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - remote_
host str - Hostname of the remote file server.
- remote_
path str - File server directory or share name to copy the file.
- remote_
port float - Remote TCP port on the file server (e.g. 22 for scp).
- retention_
count float - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- retention_
policy_ boolenabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- schedules
Sequence[Appliance
Backup Policy Schedule Args] - Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Sequence[Appliance
Backup Policy Tag Args] - This complex property has following sub-properties:
- username str
- Username to authenticate the fileserver.
- version_
contexts Sequence[ApplianceBackup Policy Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- accounts List<Property Map>
- A reference to a iamAccount resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- appliance
Backup StringPolicy Id - backup
Time String - (ReadOnly) The next backup time set by the backup scheduler. Backup scheduler calculates the next backup time with the user-defined schedule set in the Schedule field.
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- filename String
- Backup filename to backup or restore.
- is
Password BooleanSet - (ReadOnly) Indicates whether the value of the 'password' property has been set.
- manual
Backup Boolean - Backup mode of the appliance. Automatic backups of the appliance are not initiated if this property is set to 'true' and the backup schedule field is ignored.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- password String
- Password to authenticate the file server.
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- protocol String
- Communication protocol used by the file server (e.g. scp, sftp, or CIFS).*
scp
- Secure Copy Protocol (SCP) to access the file server.*sftp
- SSH File Transfer Protocol (SFTP) to access file server.*cifs
- Common Internet File System (CIFS) Protocol to access file server. - remote
Host String - Hostname of the remote file server.
- remote
Path String - File server directory or share name to copy the file.
- remote
Port Number - Remote TCP port on the file server (e.g. 22 for scp).
- retention
Count Number - The number of backups before earliest backup is overwritten. Requires cleanup policy to be enabled.
- retention
Policy BooleanEnabled - If backup rotate policy is set, older backups will automatically be overwritten. The number of backups before overwriting is defined by the retentionCount property.
- schedules List<Property Map>
- Schedule to create a backup of the Intersight Appliance. Manualbackup field must be set to 'false' for this schedule to be active. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Property Map>
- This complex property has following sub-properties:
- username String
- Username to authenticate the fileserver.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
ApplianceBackupPolicyAccount, ApplianceBackupPolicyAccountArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ApplianceBackupPolicyAncestor, ApplianceBackupPolicyAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ApplianceBackupPolicyParent, ApplianceBackupPolicyParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ApplianceBackupPolicyPermissionResource, ApplianceBackupPolicyPermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ApplianceBackupPolicySchedule, ApplianceBackupPolicyScheduleArgs
- Additional
Properties string - Class
Id string - Day
Of doubleMonth - Schedule a task on a specific day of the month. Valid values are 1 through 31. If monthOfYear is specified, then dayOfMonth value must be valid for that month. DayOfMonth may not be set when dayOfWeek is specfied.
- Day
Of doubleWeek - Schedule a task on a specific day of the week. Valid values are 1 through 7, with 1 being Sunday. DayOfWeek may not be specfied when dayOfMonth is specified.
- Month
Of doubleYear - Schedule a task on a specific month of the year. Valid values are 1 through 12, with 1 being January.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Repeat
Interval double - Schedule a task to run periodically at an interval. Default unit of the RepeatInterval is in minutes. If the RepeateInterval value is set, then all other properties are ignored by the scheduler. RepeateInterval constraints are enforced by the services that use the schedule. Each service has pre-configured service specific properties for enforcing minimum and maximum values of the RepeatInterval.
- Time
Of doubleDay - Time of the day in seconds. TimeOfDay is required for all schedule configurations, except when the RepeateInterval field is specified.
- Time
Zone string - Timezone to use for the schedule calculation. If a timezone value is not speficied, then the schedule calculation will be based on UTC.*
Pacific/Niue
- *Africa/Abidjan
- *Africa/Accra
- *Africa/Addis_Ababa
- *Africa/Algiers
- *Africa/Asmara
- *Africa/Bamako
- *Africa/Bangui
- *Africa/Banjul
- *Africa/Bissau
- *Africa/Blantyre
- *Africa/Brazzaville
- *Africa/Bujumbura
- *Africa/Cairo
- *Africa/Casablanca
- *Africa/Ceuta
- *Africa/Conakry
- *Africa/Dakar
- *Africa/Dar_es_Salaam
- *Africa/Djibouti
- *Africa/Douala
- *Africa/El_Aaiun
- *Africa/Freetown
- *Africa/Gaborone
- *Africa/Harare
- *Africa/Johannesburg
- *Africa/Juba
- *Africa/Kampala
- *Africa/Khartoum
- *Africa/Kigali
- *Africa/Kinshasa
- *Africa/Lagos
- *Africa/Libreville
- *Africa/Lome
- *Africa/Luanda
- *Africa/Lubumbashi
- *Africa/Lusaka
- *Africa/Malabo
- *Africa/Maputo
- *Africa/Maseru
- *Africa/Mbabane
- *Africa/Mogadishu
- *Africa/Monrovia
- *Africa/Nairobi
- *Africa/Ndjamena
- *Africa/Niamey
- *Africa/Nouakchott
- *Africa/Ouagadougou
- *Africa/Porto-Novo
- *Africa/Sao_Tome
- *Africa/Tripoli
- *Africa/Tunis
- *Africa/Windhoek
- *America/Adak
- *America/Anchorage
- *America/Anguilla
- *America/Antigua
- *America/Araguaina
- *America/Argentina/Buenos_Aires
- *America/Argentina/Catamarca
- *America/Argentina/Cordoba
- *America/Argentina/Jujuy
- *America/Argentina/La_Rioja
- *America/Argentina/Mendoza
- *America/Argentina/Rio_Gallegos
- *America/Argentina/Salta
- *America/Argentina/San_Juan
- *America/Argentina/San_Luis
- *America/Argentina/Tucuman
- *America/Argentina/Ushuaia
- *America/Aruba
- *America/Asuncion
- *America/Atikokan
- *America/Bahia
- *America/Bahia_Banderas
- *America/Barbados
- *America/Belem
- *America/Belize
- *America/Blanc-Sablon
- *America/Boa_Vista
- *America/Bogota
- *America/Boise
- *America/Cambridge_Bay
- *America/Campo_Grande
- *America/Cancun
- *America/Caracas
- *America/Cayenne
- *America/Cayman
- *America/Chicago
- *America/Chihuahua
- *America/Costa_Rica
- *America/Creston
- *America/Cuiaba
- *America/Curacao
- *America/Danmarkshavn
- *America/Dawson
- *America/Dawson_Creek
- *America/Denver
- *America/Detroit
- *America/Dominica
- *America/Edmonton
- *America/Eirunepe
- *America/El_Salvador
- *America/Fortaleza
- *America/Glace_Bay
- *America/Godthab
- *America/Goose_Bay
- *America/Grand_Turk
- *America/Grenada
- *America/Guadeloupe
- *America/Guatemala
- *America/Guayaquil
- *America/Guyana
- *America/Halifax
- *America/Havana
- *America/Hermosillo
- *America/Indiana/Indianapolis
- *America/Indiana/Knox
- *America/Indiana/Marengo
- *America/Indiana/Petersburg
- *America/Indiana/Tell_City
- *America/Indiana/Vevay
- *America/Indiana/Vincennes
- *America/Indiana/Winamac
- *America/Inuvik
- *America/Iqaluit
- *America/Jamaica
- *America/Juneau
- *America/Kentucky/Louisville
- *America/Kentucky/Monticello
- *America/Kralendijk
- *America/La_Paz
- *America/Lima
- *America/Los_Angeles
- *America/Lower_Princes
- *America/Maceio
- *America/Managua
- *America/Manaus
- *America/Marigot
- *America/Martinique
- *America/Matamoros
- *America/Mazatlan
- *America/Menominee
- *America/Merida
- *America/Metlakatla
- *America/Mexico_City
- *America/Miquelon
- *America/Moncton
- *America/Monterrey
- *America/Montevideo
- *America/Montreal
- *America/Montserrat
- *America/Nassau
- *America/New_York
- *America/Nipigon
- *America/Nome
- *America/Noronha
- *America/North_Dakota/Beulah
- *America/North_Dakota/Center
- *America/North_Dakota/New_Salem
- *America/Ojinaga
- *America/Panama
- *America/Pangnirtung
- *America/Paramaribo
- *America/Phoenix
- *America/Port-au-Prince
- *America/Port_of_Spain
- *America/Porto_Velho
- *America/Puerto_Rico
- *America/Rainy_River
- *America/Rankin_Inlet
- *America/Recife
- *America/Regina
- *America/Resolute
- *America/Rio_Branco
- *America/Santa_Isabel
- *America/Santarem
- *America/Santiago
- *America/Santo_Domingo
- *America/Sao_Paulo
- *America/Scoresbysund
- *America/Shiprock
- *America/Sitka
- *America/St_Barthelemy
- *America/St_Johns
- *America/St_Kitts
- *America/St_Lucia
- *America/St_Thomas
- *America/St_Vincent
- *America/Swift_Current
- *America/Tegucigalpa
- *America/Thule
- *America/Thunder_Bay
- *America/Tijuana
- *America/Toronto
- *America/Tortola
- *America/Vancouver
- *America/Whitehorse
- *America/Winnipeg
- *America/Yakutat
- *America/Yellowknife
- *Antarctica/Casey
- *Antarctica/Davis
- *Antarctica/DumontDUrville
- *Antarctica/Macquarie
- *Antarctica/Mawson
- *Antarctica/McMurdo
- *Antarctica/Palmer
- *Antarctica/Rothera
- *Antarctica/South_Pole
- *Antarctica/Syowa
- *Antarctica/Troll
- *Antarctica/Vostok
- *Arctic/Longyearbyen
- *Asia/Aden
- *Asia/Almaty
- *Asia/Amman
- *Asia/Anadyr
- *Asia/Aqtau
- *Asia/Aqtobe
- *Asia/Ashgabat
- *Asia/Baghdad
- *Asia/Bahrain
- *Asia/Baku
- *Asia/Bangkok
- *Asia/Beirut
- *Asia/Bishkek
- *Asia/Brunei
- *Asia/Calcutta
- *Asia/Choibalsan
- *Asia/Chongqing
- *Asia/Colombo
- *Asia/Damascus
- *Asia/Dhaka
- *Asia/Dili
- *Asia/Dubai
- *Asia/Dushanbe
- *Asia/Gaza
- *Asia/Harbin
- *Asia/Hebron
- *Asia/Ho_Chi_Minh
- *Asia/Hong_Kong
- *Asia/Hovd
- *Asia/Irkutsk
- *Asia/Jakarta
- *Asia/Jayapura
- *Asia/Jerusalem
- *Asia/Kabul
- *Asia/Kamchatka
- *Asia/Karachi
- *Asia/Kashgar
- *Asia/Kathmandu
- *Asia/Katmandu
- *Asia/Khandyga
- *Asia/Kolkata
- *Asia/Krasnoyarsk
- *Asia/Kuala_Lumpur
- *Asia/Kuching
- *Asia/Kuwait
- *Asia/Macau
- *Asia/Magadan
- *Asia/Makassar
- *Asia/Manila
- *Asia/Muscat
- *Asia/Nicosia
- *Asia/Novokuznetsk
- *Asia/Novosibirsk
- *Asia/Omsk
- *Asia/Oral
- *Asia/Phnom_Penh
- *Asia/Pontianak
- *Asia/Pyongyang
- *Asia/Qatar
- *Asia/Qyzylorda
- *Asia/Rangoon
- *Asia/Riyadh
- *Asia/Saigon
- *Asia/Sakhalin
- *Asia/Samarkand
- *Asia/Seoul
- *Asia/Shanghai
- *Asia/Singapore
- *Asia/Taipei
- *Asia/Tashkent
- *Asia/Tbilisi
- *Asia/Tehran
- *Asia/Thimphu
- *Asia/Tokyo
- *Asia/Ulaanbaatar
- *Asia/Urumqi
- *Asia/Ust-Nera
- *Asia/Vientiane
- *Asia/Vladivostok
- *Asia/Yakutsk
- *Asia/Yekaterinburg
- *Asia/Yerevan
- *Atlantic/Azores
- *Atlantic/Bermuda
- *Atlantic/Canary
- *Atlantic/Cape_Verde
- *Atlantic/Faroe
- *Atlantic/Madeira
- *Atlantic/Reykjavik
- *Atlantic/South_Georgia
- *Atlantic/St_Helena
- *Atlantic/Stanley
- *Australia/Adelaide
- *Australia/Brisbane
- *Australia/Broken_Hill
- *Australia/Currie
- *Australia/Darwin
- *Australia/Eucla
- *Australia/Hobart
- *Australia/Lindeman
- *Australia/Lord_Howe
- *Australia/Melbourne
- *Australia/Perth
- *Australia/Sydney
- *Etc/GMT
- *Europe/Amsterdam
- *Europe/Andorra
- *Europe/Athens
- *Europe/Belgrade
- *Europe/Berlin
- *Europe/Bratislava
- *Europe/Brussels
- *Europe/Bucharest
- *Europe/Budapest
- *Europe/Busingen
- *Europe/Chisinau
- *Europe/Copenhagen
- *Europe/Dublin
- *Europe/Gibraltar
- *Europe/Guernsey
- *Europe/Helsinki
- *Europe/Isle_of_Man
- *Europe/Istanbul
- *Europe/Jersey
- *Europe/Kaliningrad
- *Europe/Kiev
- *Europe/Lisbon
- *Europe/Ljubljana
- *Europe/London
- *Europe/Luxembourg
- *Europe/Madrid
- *Europe/Malta
- *Europe/Mariehamn
- *Europe/Minsk
- *Europe/Monaco
- *Europe/Moscow
- *Europe/Oslo
- *Europe/Paris
- *Europe/Podgorica
- *Europe/Prague
- *Europe/Riga
- *Europe/Rome
- *Europe/Samara
- *Europe/San_Marino
- *Europe/Sarajevo
- *Europe/Simferopol
- *Europe/Skopje
- *Europe/Sofia
- *Europe/Stockholm
- *Europe/Tallinn
- *Europe/Tirane
- *Europe/Uzhgorod
- *Europe/Vaduz
- *Europe/Vatican
- *Europe/Vienna
- *Europe/Vilnius
- *Europe/Volgograd
- *Europe/Warsaw
- *Europe/Zagreb
- *Europe/Zaporozhye
- *Europe/Zurich
- *Indian/Antananarivo
- *Indian/Chagos
- *Indian/Christmas
- *Indian/Cocos
- *Indian/Comoro
- *Indian/Kerguelen
- *Indian/Mahe
- *Indian/Maldives
- *Indian/Mauritius
- *Indian/Mayotte
- *Indian/Reunion
- *Pacific/Apia
- *Pacific/Auckland
- *Pacific/Chatham
- *Pacific/Chuuk
- *Pacific/Easter
- *Pacific/Efate
- *Pacific/Enderbury
- *Pacific/Fakaofo
- *Pacific/Fiji
- *Pacific/Funafuti
- *Pacific/Galapagos
- *Pacific/Gambier
- *Pacific/Guadalcanal
- *Pacific/Guam
- *Pacific/Honolulu
- *Pacific/Johnston
- *Pacific/Kiritimati
- *Pacific/Kosrae
- *Pacific/Kwajalein
- *Pacific/Majuro
- *Pacific/Marquesas
- *Pacific/Midway
- *Pacific/Nauru
- *Pacific/Norfolk
- *Pacific/Noumea
- *Pacific/Pago_Pago
- *Pacific/Palau
- *Pacific/Pitcairn
- *Pacific/Pohnpei
- *Pacific/Port_Moresby
- *Pacific/Rarotonga
- *Pacific/Saipan
- *Pacific/Tahiti
- *Pacific/Tarawa
- *Pacific/Tongatapu
- *Pacific/Wake
- *Pacific/Wallis
- *UTC
- - Week
Of doubleMonth - Schedule a task on a specific week of the month. Valid values are 1 through 5. Value of 5 means last week of the month. WeekOfMonth may not be set when dayOfMonth is specified.
- Additional
Properties string - Class
Id string - Day
Of float64Month - Schedule a task on a specific day of the month. Valid values are 1 through 31. If monthOfYear is specified, then dayOfMonth value must be valid for that month. DayOfMonth may not be set when dayOfWeek is specfied.
- Day
Of float64Week - Schedule a task on a specific day of the week. Valid values are 1 through 7, with 1 being Sunday. DayOfWeek may not be specfied when dayOfMonth is specified.
- Month
Of float64Year - Schedule a task on a specific month of the year. Valid values are 1 through 12, with 1 being January.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Repeat
Interval float64 - Schedule a task to run periodically at an interval. Default unit of the RepeatInterval is in minutes. If the RepeateInterval value is set, then all other properties are ignored by the scheduler. RepeateInterval constraints are enforced by the services that use the schedule. Each service has pre-configured service specific properties for enforcing minimum and maximum values of the RepeatInterval.
- Time
Of float64Day - Time of the day in seconds. TimeOfDay is required for all schedule configurations, except when the RepeateInterval field is specified.
- Time
Zone string - Timezone to use for the schedule calculation. If a timezone value is not speficied, then the schedule calculation will be based on UTC.*
Pacific/Niue
- *Africa/Abidjan
- *Africa/Accra
- *Africa/Addis_Ababa
- *Africa/Algiers
- *Africa/Asmara
- *Africa/Bamako
- *Africa/Bangui
- *Africa/Banjul
- *Africa/Bissau
- *Africa/Blantyre
- *Africa/Brazzaville
- *Africa/Bujumbura
- *Africa/Cairo
- *Africa/Casablanca
- *Africa/Ceuta
- *Africa/Conakry
- *Africa/Dakar
- *Africa/Dar_es_Salaam
- *Africa/Djibouti
- *Africa/Douala
- *Africa/El_Aaiun
- *Africa/Freetown
- *Africa/Gaborone
- *Africa/Harare
- *Africa/Johannesburg
- *Africa/Juba
- *Africa/Kampala
- *Africa/Khartoum
- *Africa/Kigali
- *Africa/Kinshasa
- *Africa/Lagos
- *Africa/Libreville
- *Africa/Lome
- *Africa/Luanda
- *Africa/Lubumbashi
- *Africa/Lusaka
- *Africa/Malabo
- *Africa/Maputo
- *Africa/Maseru
- *Africa/Mbabane
- *Africa/Mogadishu
- *Africa/Monrovia
- *Africa/Nairobi
- *Africa/Ndjamena
- *Africa/Niamey
- *Africa/Nouakchott
- *Africa/Ouagadougou
- *Africa/Porto-Novo
- *Africa/Sao_Tome
- *Africa/Tripoli
- *Africa/Tunis
- *Africa/Windhoek
- *America/Adak
- *America/Anchorage
- *America/Anguilla
- *America/Antigua
- *America/Araguaina
- *America/Argentina/Buenos_Aires
- *America/Argentina/Catamarca
- *America/Argentina/Cordoba
- *America/Argentina/Jujuy
- *America/Argentina/La_Rioja
- *America/Argentina/Mendoza
- *America/Argentina/Rio_Gallegos
- *America/Argentina/Salta
- *America/Argentina/San_Juan
- *America/Argentina/San_Luis
- *America/Argentina/Tucuman
- *America/Argentina/Ushuaia
- *America/Aruba
- *America/Asuncion
- *America/Atikokan
- *America/Bahia
- *America/Bahia_Banderas
- *America/Barbados
- *America/Belem
- *America/Belize
- *America/Blanc-Sablon
- *America/Boa_Vista
- *America/Bogota
- *America/Boise
- *America/Cambridge_Bay
- *America/Campo_Grande
- *America/Cancun
- *America/Caracas
- *America/Cayenne
- *America/Cayman
- *America/Chicago
- *America/Chihuahua
- *America/Costa_Rica
- *America/Creston
- *America/Cuiaba
- *America/Curacao
- *America/Danmarkshavn
- *America/Dawson
- *America/Dawson_Creek
- *America/Denver
- *America/Detroit
- *America/Dominica
- *America/Edmonton
- *America/Eirunepe
- *America/El_Salvador
- *America/Fortaleza
- *America/Glace_Bay
- *America/Godthab
- *America/Goose_Bay
- *America/Grand_Turk
- *America/Grenada
- *America/Guadeloupe
- *America/Guatemala
- *America/Guayaquil
- *America/Guyana
- *America/Halifax
- *America/Havana
- *America/Hermosillo
- *America/Indiana/Indianapolis
- *America/Indiana/Knox
- *America/Indiana/Marengo
- *America/Indiana/Petersburg
- *America/Indiana/Tell_City
- *America/Indiana/Vevay
- *America/Indiana/Vincennes
- *America/Indiana/Winamac
- *America/Inuvik
- *America/Iqaluit
- *America/Jamaica
- *America/Juneau
- *America/Kentucky/Louisville
- *America/Kentucky/Monticello
- *America/Kralendijk
- *America/La_Paz
- *America/Lima
- *America/Los_Angeles
- *America/Lower_Princes
- *America/Maceio
- *America/Managua
- *America/Manaus
- *America/Marigot
- *America/Martinique
- *America/Matamoros
- *America/Mazatlan
- *America/Menominee
- *America/Merida
- *America/Metlakatla
- *America/Mexico_City
- *America/Miquelon
- *America/Moncton
- *America/Monterrey
- *America/Montevideo
- *America/Montreal
- *America/Montserrat
- *America/Nassau
- *America/New_York
- *America/Nipigon
- *America/Nome
- *America/Noronha
- *America/North_Dakota/Beulah
- *America/North_Dakota/Center
- *America/North_Dakota/New_Salem
- *America/Ojinaga
- *America/Panama
- *America/Pangnirtung
- *America/Paramaribo
- *America/Phoenix
- *America/Port-au-Prince
- *America/Port_of_Spain
- *America/Porto_Velho
- *America/Puerto_Rico
- *America/Rainy_River
- *America/Rankin_Inlet
- *America/Recife
- *America/Regina
- *America/Resolute
- *America/Rio_Branco
- *America/Santa_Isabel
- *America/Santarem
- *America/Santiago
- *America/Santo_Domingo
- *America/Sao_Paulo
- *America/Scoresbysund
- *America/Shiprock
- *America/Sitka
- *America/St_Barthelemy
- *America/St_Johns
- *America/St_Kitts
- *America/St_Lucia
- *America/St_Thomas
- *America/St_Vincent
- *America/Swift_Current
- *America/Tegucigalpa
- *America/Thule
- *America/Thunder_Bay
- *America/Tijuana
- *America/Toronto
- *America/Tortola
- *America/Vancouver
- *America/Whitehorse
- *America/Winnipeg
- *America/Yakutat
- *America/Yellowknife
- *Antarctica/Casey
- *Antarctica/Davis
- *Antarctica/DumontDUrville
- *Antarctica/Macquarie
- *Antarctica/Mawson
- *Antarctica/McMurdo
- *Antarctica/Palmer
- *Antarctica/Rothera
- *Antarctica/South_Pole
- *Antarctica/Syowa
- *Antarctica/Troll
- *Antarctica/Vostok
- *Arctic/Longyearbyen
- *Asia/Aden
- *Asia/Almaty
- *Asia/Amman
- *Asia/Anadyr
- *Asia/Aqtau
- *Asia/Aqtobe
- *Asia/Ashgabat
- *Asia/Baghdad
- *Asia/Bahrain
- *Asia/Baku
- *Asia/Bangkok
- *Asia/Beirut
- *Asia/Bishkek
- *Asia/Brunei
- *Asia/Calcutta
- *Asia/Choibalsan
- *Asia/Chongqing
- *Asia/Colombo
- *Asia/Damascus
- *Asia/Dhaka
- *Asia/Dili
- *Asia/Dubai
- *Asia/Dushanbe
- *Asia/Gaza
- *Asia/Harbin
- *Asia/Hebron
- *Asia/Ho_Chi_Minh
- *Asia/Hong_Kong
- *Asia/Hovd
- *Asia/Irkutsk
- *Asia/Jakarta
- *Asia/Jayapura
- *Asia/Jerusalem
- *Asia/Kabul
- *Asia/Kamchatka
- *Asia/Karachi
- *Asia/Kashgar
- *Asia/Kathmandu
- *Asia/Katmandu
- *Asia/Khandyga
- *Asia/Kolkata
- *Asia/Krasnoyarsk
- *Asia/Kuala_Lumpur
- *Asia/Kuching
- *Asia/Kuwait
- *Asia/Macau
- *Asia/Magadan
- *Asia/Makassar
- *Asia/Manila
- *Asia/Muscat
- *Asia/Nicosia
- *Asia/Novokuznetsk
- *Asia/Novosibirsk
- *Asia/Omsk
- *Asia/Oral
- *Asia/Phnom_Penh
- *Asia/Pontianak
- *Asia/Pyongyang
- *Asia/Qatar
- *Asia/Qyzylorda
- *Asia/Rangoon
- *Asia/Riyadh
- *Asia/Saigon
- *Asia/Sakhalin
- *Asia/Samarkand
- *Asia/Seoul
- *Asia/Shanghai
- *Asia/Singapore
- *Asia/Taipei
- *Asia/Tashkent
- *Asia/Tbilisi
- *Asia/Tehran
- *Asia/Thimphu
- *Asia/Tokyo
- *Asia/Ulaanbaatar
- *Asia/Urumqi
- *Asia/Ust-Nera
- *Asia/Vientiane
- *Asia/Vladivostok
- *Asia/Yakutsk
- *Asia/Yekaterinburg
- *Asia/Yerevan
- *Atlantic/Azores
- *Atlantic/Bermuda
- *Atlantic/Canary
- *Atlantic/Cape_Verde
- *Atlantic/Faroe
- *Atlantic/Madeira
- *Atlantic/Reykjavik
- *Atlantic/South_Georgia
- *Atlantic/St_Helena
- *Atlantic/Stanley
- *Australia/Adelaide
- *Australia/Brisbane
- *Australia/Broken_Hill
- *Australia/Currie
- *Australia/Darwin
- *Australia/Eucla
- *Australia/Hobart
- *Australia/Lindeman
- *Australia/Lord_Howe
- *Australia/Melbourne
- *Australia/Perth
- *Australia/Sydney
- *Etc/GMT
- *Europe/Amsterdam
- *Europe/Andorra
- *Europe/Athens
- *Europe/Belgrade
- *Europe/Berlin
- *Europe/Bratislava
- *Europe/Brussels
- *Europe/Bucharest
- *Europe/Budapest
- *Europe/Busingen
- *Europe/Chisinau
- *Europe/Copenhagen
- *Europe/Dublin
- *Europe/Gibraltar
- *Europe/Guernsey
- *Europe/Helsinki
- *Europe/Isle_of_Man
- *Europe/Istanbul
- *Europe/Jersey
- *Europe/Kaliningrad
- *Europe/Kiev
- *Europe/Lisbon
- *Europe/Ljubljana
- *Europe/London
- *Europe/Luxembourg
- *Europe/Madrid
- *Europe/Malta
- *Europe/Mariehamn
- *Europe/Minsk
- *Europe/Monaco
- *Europe/Moscow
- *Europe/Oslo
- *Europe/Paris
- *Europe/Podgorica
- *Europe/Prague
- *Europe/Riga
- *Europe/Rome
- *Europe/Samara
- *Europe/San_Marino
- *Europe/Sarajevo
- *Europe/Simferopol
- *Europe/Skopje
- *Europe/Sofia
- *Europe/Stockholm
- *Europe/Tallinn
- *Europe/Tirane
- *Europe/Uzhgorod
- *Europe/Vaduz
- *Europe/Vatican
- *Europe/Vienna
- *Europe/Vilnius
- *Europe/Volgograd
- *Europe/Warsaw
- *Europe/Zagreb
- *Europe/Zaporozhye
- *Europe/Zurich
- *Indian/Antananarivo
- *Indian/Chagos
- *Indian/Christmas
- *Indian/Cocos
- *Indian/Comoro
- *Indian/Kerguelen
- *Indian/Mahe
- *Indian/Maldives
- *Indian/Mauritius
- *Indian/Mayotte
- *Indian/Reunion
- *Pacific/Apia
- *Pacific/Auckland
- *Pacific/Chatham
- *Pacific/Chuuk
- *Pacific/Easter
- *Pacific/Efate
- *Pacific/Enderbury
- *Pacific/Fakaofo
- *Pacific/Fiji
- *Pacific/Funafuti
- *Pacific/Galapagos
- *Pacific/Gambier
- *Pacific/Guadalcanal
- *Pacific/Guam
- *Pacific/Honolulu
- *Pacific/Johnston
- *Pacific/Kiritimati
- *Pacific/Kosrae
- *Pacific/Kwajalein
- *Pacific/Majuro
- *Pacific/Marquesas
- *Pacific/Midway
- *Pacific/Nauru
- *Pacific/Norfolk
- *Pacific/Noumea
- *Pacific/Pago_Pago
- *Pacific/Palau
- *Pacific/Pitcairn
- *Pacific/Pohnpei
- *Pacific/Port_Moresby
- *Pacific/Rarotonga
- *Pacific/Saipan
- *Pacific/Tahiti
- *Pacific/Tarawa
- *Pacific/Tongatapu
- *Pacific/Wake
- *Pacific/Wallis
- *UTC
- - Week
Of float64Month - Schedule a task on a specific week of the month. Valid values are 1 through 5. Value of 5 means last week of the month. WeekOfMonth may not be set when dayOfMonth is specified.
- additional
Properties String - class
Id String - day
Of DoubleMonth - Schedule a task on a specific day of the month. Valid values are 1 through 31. If monthOfYear is specified, then dayOfMonth value must be valid for that month. DayOfMonth may not be set when dayOfWeek is specfied.
- day
Of DoubleWeek - Schedule a task on a specific day of the week. Valid values are 1 through 7, with 1 being Sunday. DayOfWeek may not be specfied when dayOfMonth is specified.
- month
Of DoubleYear - Schedule a task on a specific month of the year. Valid values are 1 through 12, with 1 being January.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- repeat
Interval Double - Schedule a task to run periodically at an interval. Default unit of the RepeatInterval is in minutes. If the RepeateInterval value is set, then all other properties are ignored by the scheduler. RepeateInterval constraints are enforced by the services that use the schedule. Each service has pre-configured service specific properties for enforcing minimum and maximum values of the RepeatInterval.
- time
Of DoubleDay - Time of the day in seconds. TimeOfDay is required for all schedule configurations, except when the RepeateInterval field is specified.
- time
Zone String - Timezone to use for the schedule calculation. If a timezone value is not speficied, then the schedule calculation will be based on UTC.*
Pacific/Niue
- *Africa/Abidjan
- *Africa/Accra
- *Africa/Addis_Ababa
- *Africa/Algiers
- *Africa/Asmara
- *Africa/Bamako
- *Africa/Bangui
- *Africa/Banjul
- *Africa/Bissau
- *Africa/Blantyre
- *Africa/Brazzaville
- *Africa/Bujumbura
- *Africa/Cairo
- *Africa/Casablanca
- *Africa/Ceuta
- *Africa/Conakry
- *Africa/Dakar
- *Africa/Dar_es_Salaam
- *Africa/Djibouti
- *Africa/Douala
- *Africa/El_Aaiun
- *Africa/Freetown
- *Africa/Gaborone
- *Africa/Harare
- *Africa/Johannesburg
- *Africa/Juba
- *Africa/Kampala
- *Africa/Khartoum
- *Africa/Kigali
- *Africa/Kinshasa
- *Africa/Lagos
- *Africa/Libreville
- *Africa/Lome
- *Africa/Luanda
- *Africa/Lubumbashi
- *Africa/Lusaka
- *Africa/Malabo
- *Africa/Maputo
- *Africa/Maseru
- *Africa/Mbabane
- *Africa/Mogadishu
- *Africa/Monrovia
- *Africa/Nairobi
- *Africa/Ndjamena
- *Africa/Niamey
- *Africa/Nouakchott
- *Africa/Ouagadougou
- *Africa/Porto-Novo
- *Africa/Sao_Tome
- *Africa/Tripoli
- *Africa/Tunis
- *Africa/Windhoek
- *America/Adak
- *America/Anchorage
- *America/Anguilla
- *America/Antigua
- *America/Araguaina
- *America/Argentina/Buenos_Aires
- *America/Argentina/Catamarca
- *America/Argentina/Cordoba
- *America/Argentina/Jujuy
- *America/Argentina/La_Rioja
- *America/Argentina/Mendoza
- *America/Argentina/Rio_Gallegos
- *America/Argentina/Salta
- *America/Argentina/San_Juan
- *America/Argentina/San_Luis
- *America/Argentina/Tucuman
- *America/Argentina/Ushuaia
- *America/Aruba
- *America/Asuncion
- *America/Atikokan
- *America/Bahia
- *America/Bahia_Banderas
- *America/Barbados
- *America/Belem
- *America/Belize
- *America/Blanc-Sablon
- *America/Boa_Vista
- *America/Bogota
- *America/Boise
- *America/Cambridge_Bay
- *America/Campo_Grande
- *America/Cancun
- *America/Caracas
- *America/Cayenne
- *America/Cayman
- *America/Chicago
- *America/Chihuahua
- *America/Costa_Rica
- *America/Creston
- *America/Cuiaba
- *America/Curacao
- *America/Danmarkshavn
- *America/Dawson
- *America/Dawson_Creek
- *America/Denver
- *America/Detroit
- *America/Dominica
- *America/Edmonton
- *America/Eirunepe
- *America/El_Salvador
- *America/Fortaleza
- *America/Glace_Bay
- *America/Godthab
- *America/Goose_Bay
- *America/Grand_Turk
- *America/Grenada
- *America/Guadeloupe
- *America/Guatemala
- *America/Guayaquil
- *America/Guyana
- *America/Halifax
- *America/Havana
- *America/Hermosillo
- *America/Indiana/Indianapolis
- *America/Indiana/Knox
- *America/Indiana/Marengo
- *America/Indiana/Petersburg
- *America/Indiana/Tell_City
- *America/Indiana/Vevay
- *America/Indiana/Vincennes
- *America/Indiana/Winamac
- *America/Inuvik
- *America/Iqaluit
- *America/Jamaica
- *America/Juneau
- *America/Kentucky/Louisville
- *America/Kentucky/Monticello
- *America/Kralendijk
- *America/La_Paz
- *America/Lima
- *America/Los_Angeles
- *America/Lower_Princes
- *America/Maceio
- *America/Managua
- *America/Manaus
- *America/Marigot
- *America/Martinique
- *America/Matamoros
- *America/Mazatlan
- *America/Menominee
- *America/Merida
- *America/Metlakatla
- *America/Mexico_City
- *America/Miquelon
- *America/Moncton
- *America/Monterrey
- *America/Montevideo
- *America/Montreal
- *America/Montserrat
- *America/Nassau
- *America/New_York
- *America/Nipigon
- *America/Nome
- *America/Noronha
- *America/North_Dakota/Beulah
- *America/North_Dakota/Center
- *America/North_Dakota/New_Salem
- *America/Ojinaga
- *America/Panama
- *America/Pangnirtung
- *America/Paramaribo
- *America/Phoenix
- *America/Port-au-Prince
- *America/Port_of_Spain
- *America/Porto_Velho
- *America/Puerto_Rico
- *America/Rainy_River
- *America/Rankin_Inlet
- *America/Recife
- *America/Regina
- *America/Resolute
- *America/Rio_Branco
- *America/Santa_Isabel
- *America/Santarem
- *America/Santiago
- *America/Santo_Domingo
- *America/Sao_Paulo
- *America/Scoresbysund
- *America/Shiprock
- *America/Sitka
- *America/St_Barthelemy
- *America/St_Johns
- *America/St_Kitts
- *America/St_Lucia
- *America/St_Thomas
- *America/St_Vincent
- *America/Swift_Current
- *America/Tegucigalpa
- *America/Thule
- *America/Thunder_Bay
- *America/Tijuana
- *America/Toronto
- *America/Tortola
- *America/Vancouver
- *America/Whitehorse
- *America/Winnipeg
- *America/Yakutat
- *America/Yellowknife
- *Antarctica/Casey
- *Antarctica/Davis
- *Antarctica/DumontDUrville
- *Antarctica/Macquarie
- *Antarctica/Mawson
- *Antarctica/McMurdo
- *Antarctica/Palmer
- *Antarctica/Rothera
- *Antarctica/South_Pole
- *Antarctica/Syowa
- *Antarctica/Troll
- *Antarctica/Vostok
- *Arctic/Longyearbyen
- *Asia/Aden
- *Asia/Almaty
- *Asia/Amman
- *Asia/Anadyr
- *Asia/Aqtau
- *Asia/Aqtobe
- *Asia/Ashgabat
- *Asia/Baghdad
- *Asia/Bahrain
- *Asia/Baku
- *Asia/Bangkok
- *Asia/Beirut
- *Asia/Bishkek
- *Asia/Brunei
- *Asia/Calcutta
- *Asia/Choibalsan
- *Asia/Chongqing
- *Asia/Colombo
- *Asia/Damascus
- *Asia/Dhaka
- *Asia/Dili
- *Asia/Dubai
- *Asia/Dushanbe
- *Asia/Gaza
- *Asia/Harbin
- *Asia/Hebron
- *Asia/Ho_Chi_Minh
- *Asia/Hong_Kong
- *Asia/Hovd
- *Asia/Irkutsk
- *Asia/Jakarta
- *Asia/Jayapura
- *Asia/Jerusalem
- *Asia/Kabul
- *Asia/Kamchatka
- *Asia/Karachi
- *Asia/Kashgar
- *Asia/Kathmandu
- *Asia/Katmandu
- *Asia/Khandyga
- *Asia/Kolkata
- *Asia/Krasnoyarsk
- *Asia/Kuala_Lumpur
- *Asia/Kuching
- *Asia/Kuwait
- *Asia/Macau
- *Asia/Magadan
- *Asia/Makassar
- *Asia/Manila
- *Asia/Muscat
- *Asia/Nicosia
- *Asia/Novokuznetsk
- *Asia/Novosibirsk
- *Asia/Omsk
- *Asia/Oral
- *Asia/Phnom_Penh
- *Asia/Pontianak
- *Asia/Pyongyang
- *Asia/Qatar
- *Asia/Qyzylorda
- *Asia/Rangoon
- *Asia/Riyadh
- *Asia/Saigon
- *Asia/Sakhalin
- *Asia/Samarkand
- *Asia/Seoul
- *Asia/Shanghai
- *Asia/Singapore
- *Asia/Taipei
- *Asia/Tashkent
- *Asia/Tbilisi
- *Asia/Tehran
- *Asia/Thimphu
- *Asia/Tokyo
- *Asia/Ulaanbaatar
- *Asia/Urumqi
- *Asia/Ust-Nera
- *Asia/Vientiane
- *Asia/Vladivostok
- *Asia/Yakutsk
- *Asia/Yekaterinburg
- *Asia/Yerevan
- *Atlantic/Azores
- *Atlantic/Bermuda
- *Atlantic/Canary
- *Atlantic/Cape_Verde
- *Atlantic/Faroe
- *Atlantic/Madeira
- *Atlantic/Reykjavik
- *Atlantic/South_Georgia
- *Atlantic/St_Helena
- *Atlantic/Stanley
- *Australia/Adelaide
- *Australia/Brisbane
- *Australia/Broken_Hill
- *Australia/Currie
- *Australia/Darwin
- *Australia/Eucla
- *Australia/Hobart
- *Australia/Lindeman
- *Australia/Lord_Howe
- *Australia/Melbourne
- *Australia/Perth
- *Australia/Sydney
- *Etc/GMT
- *Europe/Amsterdam
- *Europe/Andorra
- *Europe/Athens
- *Europe/Belgrade
- *Europe/Berlin
- *Europe/Bratislava
- *Europe/Brussels
- *Europe/Bucharest
- *Europe/Budapest
- *Europe/Busingen
- *Europe/Chisinau
- *Europe/Copenhagen
- *Europe/Dublin
- *Europe/Gibraltar
- *Europe/Guernsey
- *Europe/Helsinki
- *Europe/Isle_of_Man
- *Europe/Istanbul
- *Europe/Jersey
- *Europe/Kaliningrad
- *Europe/Kiev
- *Europe/Lisbon
- *Europe/Ljubljana
- *Europe/London
- *Europe/Luxembourg
- *Europe/Madrid
- *Europe/Malta
- *Europe/Mariehamn
- *Europe/Minsk
- *Europe/Monaco
- *Europe/Moscow
- *Europe/Oslo
- *Europe/Paris
- *Europe/Podgorica
- *Europe/Prague
- *Europe/Riga
- *Europe/Rome
- *Europe/Samara
- *Europe/San_Marino
- *Europe/Sarajevo
- *Europe/Simferopol
- *Europe/Skopje
- *Europe/Sofia
- *Europe/Stockholm
- *Europe/Tallinn
- *Europe/Tirane
- *Europe/Uzhgorod
- *Europe/Vaduz
- *Europe/Vatican
- *Europe/Vienna
- *Europe/Vilnius
- *Europe/Volgograd
- *Europe/Warsaw
- *Europe/Zagreb
- *Europe/Zaporozhye
- *Europe/Zurich
- *Indian/Antananarivo
- *Indian/Chagos
- *Indian/Christmas
- *Indian/Cocos
- *Indian/Comoro
- *Indian/Kerguelen
- *Indian/Mahe
- *Indian/Maldives
- *Indian/Mauritius
- *Indian/Mayotte
- *Indian/Reunion
- *Pacific/Apia
- *Pacific/Auckland
- *Pacific/Chatham
- *Pacific/Chuuk
- *Pacific/Easter
- *Pacific/Efate
- *Pacific/Enderbury
- *Pacific/Fakaofo
- *Pacific/Fiji
- *Pacific/Funafuti
- *Pacific/Galapagos
- *Pacific/Gambier
- *Pacific/Guadalcanal
- *Pacific/Guam
- *Pacific/Honolulu
- *Pacific/Johnston
- *Pacific/Kiritimati
- *Pacific/Kosrae
- *Pacific/Kwajalein
- *Pacific/Majuro
- *Pacific/Marquesas
- *Pacific/Midway
- *Pacific/Nauru
- *Pacific/Norfolk
- *Pacific/Noumea
- *Pacific/Pago_Pago
- *Pacific/Palau
- *Pacific/Pitcairn
- *Pacific/Pohnpei
- *Pacific/Port_Moresby
- *Pacific/Rarotonga
- *Pacific/Saipan
- *Pacific/Tahiti
- *Pacific/Tarawa
- *Pacific/Tongatapu
- *Pacific/Wake
- *Pacific/Wallis
- *UTC
- - week
Of DoubleMonth - Schedule a task on a specific week of the month. Valid values are 1 through 5. Value of 5 means last week of the month. WeekOfMonth may not be set when dayOfMonth is specified.
- additional
Properties string - class
Id string - day
Of numberMonth - Schedule a task on a specific day of the month. Valid values are 1 through 31. If monthOfYear is specified, then dayOfMonth value must be valid for that month. DayOfMonth may not be set when dayOfWeek is specfied.
- day
Of numberWeek - Schedule a task on a specific day of the week. Valid values are 1 through 7, with 1 being Sunday. DayOfWeek may not be specfied when dayOfMonth is specified.
- month
Of numberYear - Schedule a task on a specific month of the year. Valid values are 1 through 12, with 1 being January.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- repeat
Interval number - Schedule a task to run periodically at an interval. Default unit of the RepeatInterval is in minutes. If the RepeateInterval value is set, then all other properties are ignored by the scheduler. RepeateInterval constraints are enforced by the services that use the schedule. Each service has pre-configured service specific properties for enforcing minimum and maximum values of the RepeatInterval.
- time
Of numberDay - Time of the day in seconds. TimeOfDay is required for all schedule configurations, except when the RepeateInterval field is specified.
- time
Zone string - Timezone to use for the schedule calculation. If a timezone value is not speficied, then the schedule calculation will be based on UTC.*
Pacific/Niue
- *Africa/Abidjan
- *Africa/Accra
- *Africa/Addis_Ababa
- *Africa/Algiers
- *Africa/Asmara
- *Africa/Bamako
- *Africa/Bangui
- *Africa/Banjul
- *Africa/Bissau
- *Africa/Blantyre
- *Africa/Brazzaville
- *Africa/Bujumbura
- *Africa/Cairo
- *Africa/Casablanca
- *Africa/Ceuta
- *Africa/Conakry
- *Africa/Dakar
- *Africa/Dar_es_Salaam
- *Africa/Djibouti
- *Africa/Douala
- *Africa/El_Aaiun
- *Africa/Freetown
- *Africa/Gaborone
- *Africa/Harare
- *Africa/Johannesburg
- *Africa/Juba
- *Africa/Kampala
- *Africa/Khartoum
- *Africa/Kigali
- *Africa/Kinshasa
- *Africa/Lagos
- *Africa/Libreville
- *Africa/Lome
- *Africa/Luanda
- *Africa/Lubumbashi
- *Africa/Lusaka
- *Africa/Malabo
- *Africa/Maputo
- *Africa/Maseru
- *Africa/Mbabane
- *Africa/Mogadishu
- *Africa/Monrovia
- *Africa/Nairobi
- *Africa/Ndjamena
- *Africa/Niamey
- *Africa/Nouakchott
- *Africa/Ouagadougou
- *Africa/Porto-Novo
- *Africa/Sao_Tome
- *Africa/Tripoli
- *Africa/Tunis
- *Africa/Windhoek
- *America/Adak
- *America/Anchorage
- *America/Anguilla
- *America/Antigua
- *America/Araguaina
- *America/Argentina/Buenos_Aires
- *America/Argentina/Catamarca
- *America/Argentina/Cordoba
- *America/Argentina/Jujuy
- *America/Argentina/La_Rioja
- *America/Argentina/Mendoza
- *America/Argentina/Rio_Gallegos
- *America/Argentina/Salta
- *America/Argentina/San_Juan
- *America/Argentina/San_Luis
- *America/Argentina/Tucuman
- *America/Argentina/Ushuaia
- *America/Aruba
- *America/Asuncion
- *America/Atikokan
- *America/Bahia
- *America/Bahia_Banderas
- *America/Barbados
- *America/Belem
- *America/Belize
- *America/Blanc-Sablon
- *America/Boa_Vista
- *America/Bogota
- *America/Boise
- *America/Cambridge_Bay
- *America/Campo_Grande
- *America/Cancun
- *America/Caracas
- *America/Cayenne
- *America/Cayman
- *America/Chicago
- *America/Chihuahua
- *America/Costa_Rica
- *America/Creston
- *America/Cuiaba
- *America/Curacao
- *America/Danmarkshavn
- *America/Dawson
- *America/Dawson_Creek
- *America/Denver
- *America/Detroit
- *America/Dominica
- *America/Edmonton
- *America/Eirunepe
- *America/El_Salvador
- *America/Fortaleza
- *America/Glace_Bay
- *America/Godthab
- *America/Goose_Bay
- *America/Grand_Turk
- *America/Grenada
- *America/Guadeloupe
- *America/Guatemala
- *America/Guayaquil
- *America/Guyana
- *America/Halifax
- *America/Havana
- *America/Hermosillo
- *America/Indiana/Indianapolis
- *America/Indiana/Knox
- *America/Indiana/Marengo
- *America/Indiana/Petersburg
- *America/Indiana/Tell_City
- *America/Indiana/Vevay
- *America/Indiana/Vincennes
- *America/Indiana/Winamac
- *America/Inuvik
- *America/Iqaluit
- *America/Jamaica
- *America/Juneau
- *America/Kentucky/Louisville
- *America/Kentucky/Monticello
- *America/Kralendijk
- *America/La_Paz
- *America/Lima
- *America/Los_Angeles
- *America/Lower_Princes
- *America/Maceio
- *America/Managua
- *America/Manaus
- *America/Marigot
- *America/Martinique
- *America/Matamoros
- *America/Mazatlan
- *America/Menominee
- *America/Merida
- *America/Metlakatla
- *America/Mexico_City
- *America/Miquelon
- *America/Moncton
- *America/Monterrey
- *America/Montevideo
- *America/Montreal
- *America/Montserrat
- *America/Nassau
- *America/New_York
- *America/Nipigon
- *America/Nome
- *America/Noronha
- *America/North_Dakota/Beulah
- *America/North_Dakota/Center
- *America/North_Dakota/New_Salem
- *America/Ojinaga
- *America/Panama
- *America/Pangnirtung
- *America/Paramaribo
- *America/Phoenix
- *America/Port-au-Prince
- *America/Port_of_Spain
- *America/Porto_Velho
- *America/Puerto_Rico
- *America/Rainy_River
- *America/Rankin_Inlet
- *America/Recife
- *America/Regina
- *America/Resolute
- *America/Rio_Branco
- *America/Santa_Isabel
- *America/Santarem
- *America/Santiago
- *America/Santo_Domingo
- *America/Sao_Paulo
- *America/Scoresbysund
- *America/Shiprock
- *America/Sitka
- *America/St_Barthelemy
- *America/St_Johns
- *America/St_Kitts
- *America/St_Lucia
- *America/St_Thomas
- *America/St_Vincent
- *America/Swift_Current
- *America/Tegucigalpa
- *America/Thule
- *America/Thunder_Bay
- *America/Tijuana
- *America/Toronto
- *America/Tortola
- *America/Vancouver
- *America/Whitehorse
- *America/Winnipeg
- *America/Yakutat
- *America/Yellowknife
- *Antarctica/Casey
- *Antarctica/Davis
- *Antarctica/DumontDUrville
- *Antarctica/Macquarie
- *Antarctica/Mawson
- *Antarctica/McMurdo
- *Antarctica/Palmer
- *Antarctica/Rothera
- *Antarctica/South_Pole
- *Antarctica/Syowa
- *Antarctica/Troll
- *Antarctica/Vostok
- *Arctic/Longyearbyen
- *Asia/Aden
- *Asia/Almaty
- *Asia/Amman
- *Asia/Anadyr
- *Asia/Aqtau
- *Asia/Aqtobe
- *Asia/Ashgabat
- *Asia/Baghdad
- *Asia/Bahrain
- *Asia/Baku
- *Asia/Bangkok
- *Asia/Beirut
- *Asia/Bishkek
- *Asia/Brunei
- *Asia/Calcutta
- *Asia/Choibalsan
- *Asia/Chongqing
- *Asia/Colombo
- *Asia/Damascus
- *Asia/Dhaka
- *Asia/Dili
- *Asia/Dubai
- *Asia/Dushanbe
- *Asia/Gaza
- *Asia/Harbin
- *Asia/Hebron
- *Asia/Ho_Chi_Minh
- *Asia/Hong_Kong
- *Asia/Hovd
- *Asia/Irkutsk
- *Asia/Jakarta
- *Asia/Jayapura
- *Asia/Jerusalem
- *Asia/Kabul
- *Asia/Kamchatka
- *Asia/Karachi
- *Asia/Kashgar
- *Asia/Kathmandu
- *Asia/Katmandu
- *Asia/Khandyga
- *Asia/Kolkata
- *Asia/Krasnoyarsk
- *Asia/Kuala_Lumpur
- *Asia/Kuching
- *Asia/Kuwait
- *Asia/Macau
- *Asia/Magadan
- *Asia/Makassar
- *Asia/Manila
- *Asia/Muscat
- *Asia/Nicosia
- *Asia/Novokuznetsk
- *Asia/Novosibirsk
- *Asia/Omsk
- *Asia/Oral
- *Asia/Phnom_Penh
- *Asia/Pontianak
- *Asia/Pyongyang
- *Asia/Qatar
- *Asia/Qyzylorda
- *Asia/Rangoon
- *Asia/Riyadh
- *Asia/Saigon
- *Asia/Sakhalin
- *Asia/Samarkand
- *Asia/Seoul
- *Asia/Shanghai
- *Asia/Singapore
- *Asia/Taipei
- *Asia/Tashkent
- *Asia/Tbilisi
- *Asia/Tehran
- *Asia/Thimphu
- *Asia/Tokyo
- *Asia/Ulaanbaatar
- *Asia/Urumqi
- *Asia/Ust-Nera
- *Asia/Vientiane
- *Asia/Vladivostok
- *Asia/Yakutsk
- *Asia/Yekaterinburg
- *Asia/Yerevan
- *Atlantic/Azores
- *Atlantic/Bermuda
- *Atlantic/Canary
- *Atlantic/Cape_Verde
- *Atlantic/Faroe
- *Atlantic/Madeira
- *Atlantic/Reykjavik
- *Atlantic/South_Georgia
- *Atlantic/St_Helena
- *Atlantic/Stanley
- *Australia/Adelaide
- *Australia/Brisbane
- *Australia/Broken_Hill
- *Australia/Currie
- *Australia/Darwin
- *Australia/Eucla
- *Australia/Hobart
- *Australia/Lindeman
- *Australia/Lord_Howe
- *Australia/Melbourne
- *Australia/Perth
- *Australia/Sydney
- *Etc/GMT
- *Europe/Amsterdam
- *Europe/Andorra
- *Europe/Athens
- *Europe/Belgrade
- *Europe/Berlin
- *Europe/Bratislava
- *Europe/Brussels
- *Europe/Bucharest
- *Europe/Budapest
- *Europe/Busingen
- *Europe/Chisinau
- *Europe/Copenhagen
- *Europe/Dublin
- *Europe/Gibraltar
- *Europe/Guernsey
- *Europe/Helsinki
- *Europe/Isle_of_Man
- *Europe/Istanbul
- *Europe/Jersey
- *Europe/Kaliningrad
- *Europe/Kiev
- *Europe/Lisbon
- *Europe/Ljubljana
- *Europe/London
- *Europe/Luxembourg
- *Europe/Madrid
- *Europe/Malta
- *Europe/Mariehamn
- *Europe/Minsk
- *Europe/Monaco
- *Europe/Moscow
- *Europe/Oslo
- *Europe/Paris
- *Europe/Podgorica
- *Europe/Prague
- *Europe/Riga
- *Europe/Rome
- *Europe/Samara
- *Europe/San_Marino
- *Europe/Sarajevo
- *Europe/Simferopol
- *Europe/Skopje
- *Europe/Sofia
- *Europe/Stockholm
- *Europe/Tallinn
- *Europe/Tirane
- *Europe/Uzhgorod
- *Europe/Vaduz
- *Europe/Vatican
- *Europe/Vienna
- *Europe/Vilnius
- *Europe/Volgograd
- *Europe/Warsaw
- *Europe/Zagreb
- *Europe/Zaporozhye
- *Europe/Zurich
- *Indian/Antananarivo
- *Indian/Chagos
- *Indian/Christmas
- *Indian/Cocos
- *Indian/Comoro
- *Indian/Kerguelen
- *Indian/Mahe
- *Indian/Maldives
- *Indian/Mauritius
- *Indian/Mayotte
- *Indian/Reunion
- *Pacific/Apia
- *Pacific/Auckland
- *Pacific/Chatham
- *Pacific/Chuuk
- *Pacific/Easter
- *Pacific/Efate
- *Pacific/Enderbury
- *Pacific/Fakaofo
- *Pacific/Fiji
- *Pacific/Funafuti
- *Pacific/Galapagos
- *Pacific/Gambier
- *Pacific/Guadalcanal
- *Pacific/Guam
- *Pacific/Honolulu
- *Pacific/Johnston
- *Pacific/Kiritimati
- *Pacific/Kosrae
- *Pacific/Kwajalein
- *Pacific/Majuro
- *Pacific/Marquesas
- *Pacific/Midway
- *Pacific/Nauru
- *Pacific/Norfolk
- *Pacific/Noumea
- *Pacific/Pago_Pago
- *Pacific/Palau
- *Pacific/Pitcairn
- *Pacific/Pohnpei
- *Pacific/Port_Moresby
- *Pacific/Rarotonga
- *Pacific/Saipan
- *Pacific/Tahiti
- *Pacific/Tarawa
- *Pacific/Tongatapu
- *Pacific/Wake
- *Pacific/Wallis
- *UTC
- - week
Of numberMonth - Schedule a task on a specific week of the month. Valid values are 1 through 5. Value of 5 means last week of the month. WeekOfMonth may not be set when dayOfMonth is specified.
- additional_
properties str - class_
id str - day_
of_ floatmonth - Schedule a task on a specific day of the month. Valid values are 1 through 31. If monthOfYear is specified, then dayOfMonth value must be valid for that month. DayOfMonth may not be set when dayOfWeek is specfied.
- day_
of_ floatweek - Schedule a task on a specific day of the week. Valid values are 1 through 7, with 1 being Sunday. DayOfWeek may not be specfied when dayOfMonth is specified.
- month_
of_ floatyear - Schedule a task on a specific month of the year. Valid values are 1 through 12, with 1 being January.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- repeat_
interval float - Schedule a task to run periodically at an interval. Default unit of the RepeatInterval is in minutes. If the RepeateInterval value is set, then all other properties are ignored by the scheduler. RepeateInterval constraints are enforced by the services that use the schedule. Each service has pre-configured service specific properties for enforcing minimum and maximum values of the RepeatInterval.
- time_
of_ floatday - Time of the day in seconds. TimeOfDay is required for all schedule configurations, except when the RepeateInterval field is specified.
- time_
zone str - Timezone to use for the schedule calculation. If a timezone value is not speficied, then the schedule calculation will be based on UTC.*
Pacific/Niue
- *Africa/Abidjan
- *Africa/Accra
- *Africa/Addis_Ababa
- *Africa/Algiers
- *Africa/Asmara
- *Africa/Bamako
- *Africa/Bangui
- *Africa/Banjul
- *Africa/Bissau
- *Africa/Blantyre
- *Africa/Brazzaville
- *Africa/Bujumbura
- *Africa/Cairo
- *Africa/Casablanca
- *Africa/Ceuta
- *Africa/Conakry
- *Africa/Dakar
- *Africa/Dar_es_Salaam
- *Africa/Djibouti
- *Africa/Douala
- *Africa/El_Aaiun
- *Africa/Freetown
- *Africa/Gaborone
- *Africa/Harare
- *Africa/Johannesburg
- *Africa/Juba
- *Africa/Kampala
- *Africa/Khartoum
- *Africa/Kigali
- *Africa/Kinshasa
- *Africa/Lagos
- *Africa/Libreville
- *Africa/Lome
- *Africa/Luanda
- *Africa/Lubumbashi
- *Africa/Lusaka
- *Africa/Malabo
- *Africa/Maputo
- *Africa/Maseru
- *Africa/Mbabane
- *Africa/Mogadishu
- *Africa/Monrovia
- *Africa/Nairobi
- *Africa/Ndjamena
- *Africa/Niamey
- *Africa/Nouakchott
- *Africa/Ouagadougou
- *Africa/Porto-Novo
- *Africa/Sao_Tome
- *Africa/Tripoli
- *Africa/Tunis
- *Africa/Windhoek
- *America/Adak
- *America/Anchorage
- *America/Anguilla
- *America/Antigua
- *America/Araguaina
- *America/Argentina/Buenos_Aires
- *America/Argentina/Catamarca
- *America/Argentina/Cordoba
- *America/Argentina/Jujuy
- *America/Argentina/La_Rioja
- *America/Argentina/Mendoza
- *America/Argentina/Rio_Gallegos
- *America/Argentina/Salta
- *America/Argentina/San_Juan
- *America/Argentina/San_Luis
- *America/Argentina/Tucuman
- *America/Argentina/Ushuaia
- *America/Aruba
- *America/Asuncion
- *America/Atikokan
- *America/Bahia
- *America/Bahia_Banderas
- *America/Barbados
- *America/Belem
- *America/Belize
- *America/Blanc-Sablon
- *America/Boa_Vista
- *America/Bogota
- *America/Boise
- *America/Cambridge_Bay
- *America/Campo_Grande
- *America/Cancun
- *America/Caracas
- *America/Cayenne
- *America/Cayman
- *America/Chicago
- *America/Chihuahua
- *America/Costa_Rica
- *America/Creston
- *America/Cuiaba
- *America/Curacao
- *America/Danmarkshavn
- *America/Dawson
- *America/Dawson_Creek
- *America/Denver
- *America/Detroit
- *America/Dominica
- *America/Edmonton
- *America/Eirunepe
- *America/El_Salvador
- *America/Fortaleza
- *America/Glace_Bay
- *America/Godthab
- *America/Goose_Bay
- *America/Grand_Turk
- *America/Grenada
- *America/Guadeloupe
- *America/Guatemala
- *America/Guayaquil
- *America/Guyana
- *America/Halifax
- *America/Havana
- *America/Hermosillo
- *America/Indiana/Indianapolis
- *America/Indiana/Knox
- *America/Indiana/Marengo
- *America/Indiana/Petersburg
- *America/Indiana/Tell_City
- *America/Indiana/Vevay
- *America/Indiana/Vincennes
- *America/Indiana/Winamac
- *America/Inuvik
- *America/Iqaluit
- *America/Jamaica
- *America/Juneau
- *America/Kentucky/Louisville
- *America/Kentucky/Monticello
- *America/Kralendijk
- *America/La_Paz
- *America/Lima
- *America/Los_Angeles
- *America/Lower_Princes
- *America/Maceio
- *America/Managua
- *America/Manaus
- *America/Marigot
- *America/Martinique
- *America/Matamoros
- *America/Mazatlan
- *America/Menominee
- *America/Merida
- *America/Metlakatla
- *America/Mexico_City
- *America/Miquelon
- *America/Moncton
- *America/Monterrey
- *America/Montevideo
- *America/Montreal
- *America/Montserrat
- *America/Nassau
- *America/New_York
- *America/Nipigon
- *America/Nome
- *America/Noronha
- *America/North_Dakota/Beulah
- *America/North_Dakota/Center
- *America/North_Dakota/New_Salem
- *America/Ojinaga
- *America/Panama
- *America/Pangnirtung
- *America/Paramaribo
- *America/Phoenix
- *America/Port-au-Prince
- *America/Port_of_Spain
- *America/Porto_Velho
- *America/Puerto_Rico
- *America/Rainy_River
- *America/Rankin_Inlet
- *America/Recife
- *America/Regina
- *America/Resolute
- *America/Rio_Branco
- *America/Santa_Isabel
- *America/Santarem
- *America/Santiago
- *America/Santo_Domingo
- *America/Sao_Paulo
- *America/Scoresbysund
- *America/Shiprock
- *America/Sitka
- *America/St_Barthelemy
- *America/St_Johns
- *America/St_Kitts
- *America/St_Lucia
- *America/St_Thomas
- *America/St_Vincent
- *America/Swift_Current
- *America/Tegucigalpa
- *America/Thule
- *America/Thunder_Bay
- *America/Tijuana
- *America/Toronto
- *America/Tortola
- *America/Vancouver
- *America/Whitehorse
- *America/Winnipeg
- *America/Yakutat
- *America/Yellowknife
- *Antarctica/Casey
- *Antarctica/Davis
- *Antarctica/DumontDUrville
- *Antarctica/Macquarie
- *Antarctica/Mawson
- *Antarctica/McMurdo
- *Antarctica/Palmer
- *Antarctica/Rothera
- *Antarctica/South_Pole
- *Antarctica/Syowa
- *Antarctica/Troll
- *Antarctica/Vostok
- *Arctic/Longyearbyen
- *Asia/Aden
- *Asia/Almaty
- *Asia/Amman
- *Asia/Anadyr
- *Asia/Aqtau
- *Asia/Aqtobe
- *Asia/Ashgabat
- *Asia/Baghdad
- *Asia/Bahrain
- *Asia/Baku
- *Asia/Bangkok
- *Asia/Beirut
- *Asia/Bishkek
- *Asia/Brunei
- *Asia/Calcutta
- *Asia/Choibalsan
- *Asia/Chongqing
- *Asia/Colombo
- *Asia/Damascus
- *Asia/Dhaka
- *Asia/Dili
- *Asia/Dubai
- *Asia/Dushanbe
- *Asia/Gaza
- *Asia/Harbin
- *Asia/Hebron
- *Asia/Ho_Chi_Minh
- *Asia/Hong_Kong
- *Asia/Hovd
- *Asia/Irkutsk
- *Asia/Jakarta
- *Asia/Jayapura
- *Asia/Jerusalem
- *Asia/Kabul
- *Asia/Kamchatka
- *Asia/Karachi
- *Asia/Kashgar
- *Asia/Kathmandu
- *Asia/Katmandu
- *Asia/Khandyga
- *Asia/Kolkata
- *Asia/Krasnoyarsk
- *Asia/Kuala_Lumpur
- *Asia/Kuching
- *Asia/Kuwait
- *Asia/Macau
- *Asia/Magadan
- *Asia/Makassar
- *Asia/Manila
- *Asia/Muscat
- *Asia/Nicosia
- *Asia/Novokuznetsk
- *Asia/Novosibirsk
- *Asia/Omsk
- *Asia/Oral
- *Asia/Phnom_Penh
- *Asia/Pontianak
- *Asia/Pyongyang
- *Asia/Qatar
- *Asia/Qyzylorda
- *Asia/Rangoon
- *Asia/Riyadh
- *Asia/Saigon
- *Asia/Sakhalin
- *Asia/Samarkand
- *Asia/Seoul
- *Asia/Shanghai
- *Asia/Singapore
- *Asia/Taipei
- *Asia/Tashkent
- *Asia/Tbilisi
- *Asia/Tehran
- *Asia/Thimphu
- *Asia/Tokyo
- *Asia/Ulaanbaatar
- *Asia/Urumqi
- *Asia/Ust-Nera
- *Asia/Vientiane
- *Asia/Vladivostok
- *Asia/Yakutsk
- *Asia/Yekaterinburg
- *Asia/Yerevan
- *Atlantic/Azores
- *Atlantic/Bermuda
- *Atlantic/Canary
- *Atlantic/Cape_Verde
- *Atlantic/Faroe
- *Atlantic/Madeira
- *Atlantic/Reykjavik
- *Atlantic/South_Georgia
- *Atlantic/St_Helena
- *Atlantic/Stanley
- *Australia/Adelaide
- *Australia/Brisbane
- *Australia/Broken_Hill
- *Australia/Currie
- *Australia/Darwin
- *Australia/Eucla
- *Australia/Hobart
- *Australia/Lindeman
- *Australia/Lord_Howe
- *Australia/Melbourne
- *Australia/Perth
- *Australia/Sydney
- *Etc/GMT
- *Europe/Amsterdam
- *Europe/Andorra
- *Europe/Athens
- *Europe/Belgrade
- *Europe/Berlin
- *Europe/Bratislava
- *Europe/Brussels
- *Europe/Bucharest
- *Europe/Budapest
- *Europe/Busingen
- *Europe/Chisinau
- *Europe/Copenhagen
- *Europe/Dublin
- *Europe/Gibraltar
- *Europe/Guernsey
- *Europe/Helsinki
- *Europe/Isle_of_Man
- *Europe/Istanbul
- *Europe/Jersey
- *Europe/Kaliningrad
- *Europe/Kiev
- *Europe/Lisbon
- *Europe/Ljubljana
- *Europe/London
- *Europe/Luxembourg
- *Europe/Madrid
- *Europe/Malta
- *Europe/Mariehamn
- *Europe/Minsk
- *Europe/Monaco
- *Europe/Moscow
- *Europe/Oslo
- *Europe/Paris
- *Europe/Podgorica
- *Europe/Prague
- *Europe/Riga
- *Europe/Rome
- *Europe/Samara
- *Europe/San_Marino
- *Europe/Sarajevo
- *Europe/Simferopol
- *Europe/Skopje
- *Europe/Sofia
- *Europe/Stockholm
- *Europe/Tallinn
- *Europe/Tirane
- *Europe/Uzhgorod
- *Europe/Vaduz
- *Europe/Vatican
- *Europe/Vienna
- *Europe/Vilnius
- *Europe/Volgograd
- *Europe/Warsaw
- *Europe/Zagreb
- *Europe/Zaporozhye
- *Europe/Zurich
- *Indian/Antananarivo
- *Indian/Chagos
- *Indian/Christmas
- *Indian/Cocos
- *Indian/Comoro
- *Indian/Kerguelen
- *Indian/Mahe
- *Indian/Maldives
- *Indian/Mauritius
- *Indian/Mayotte
- *Indian/Reunion
- *Pacific/Apia
- *Pacific/Auckland
- *Pacific/Chatham
- *Pacific/Chuuk
- *Pacific/Easter
- *Pacific/Efate
- *Pacific/Enderbury
- *Pacific/Fakaofo
- *Pacific/Fiji
- *Pacific/Funafuti
- *Pacific/Galapagos
- *Pacific/Gambier
- *Pacific/Guadalcanal
- *Pacific/Guam
- *Pacific/Honolulu
- *Pacific/Johnston
- *Pacific/Kiritimati
- *Pacific/Kosrae
- *Pacific/Kwajalein
- *Pacific/Majuro
- *Pacific/Marquesas
- *Pacific/Midway
- *Pacific/Nauru
- *Pacific/Norfolk
- *Pacific/Noumea
- *Pacific/Pago_Pago
- *Pacific/Palau
- *Pacific/Pitcairn
- *Pacific/Pohnpei
- *Pacific/Port_Moresby
- *Pacific/Rarotonga
- *Pacific/Saipan
- *Pacific/Tahiti
- *Pacific/Tarawa
- *Pacific/Tongatapu
- *Pacific/Wake
- *Pacific/Wallis
- *UTC
- - week_
of_ floatmonth - Schedule a task on a specific week of the month. Valid values are 1 through 5. Value of 5 means last week of the month. WeekOfMonth may not be set when dayOfMonth is specified.
- additional
Properties String - class
Id String - day
Of NumberMonth - Schedule a task on a specific day of the month. Valid values are 1 through 31. If monthOfYear is specified, then dayOfMonth value must be valid for that month. DayOfMonth may not be set when dayOfWeek is specfied.
- day
Of NumberWeek - Schedule a task on a specific day of the week. Valid values are 1 through 7, with 1 being Sunday. DayOfWeek may not be specfied when dayOfMonth is specified.
- month
Of NumberYear - Schedule a task on a specific month of the year. Valid values are 1 through 12, with 1 being January.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- repeat
Interval Number - Schedule a task to run periodically at an interval. Default unit of the RepeatInterval is in minutes. If the RepeateInterval value is set, then all other properties are ignored by the scheduler. RepeateInterval constraints are enforced by the services that use the schedule. Each service has pre-configured service specific properties for enforcing minimum and maximum values of the RepeatInterval.
- time
Of NumberDay - Time of the day in seconds. TimeOfDay is required for all schedule configurations, except when the RepeateInterval field is specified.
- time
Zone String - Timezone to use for the schedule calculation. If a timezone value is not speficied, then the schedule calculation will be based on UTC.*
Pacific/Niue
- *Africa/Abidjan
- *Africa/Accra
- *Africa/Addis_Ababa
- *Africa/Algiers
- *Africa/Asmara
- *Africa/Bamako
- *Africa/Bangui
- *Africa/Banjul
- *Africa/Bissau
- *Africa/Blantyre
- *Africa/Brazzaville
- *Africa/Bujumbura
- *Africa/Cairo
- *Africa/Casablanca
- *Africa/Ceuta
- *Africa/Conakry
- *Africa/Dakar
- *Africa/Dar_es_Salaam
- *Africa/Djibouti
- *Africa/Douala
- *Africa/El_Aaiun
- *Africa/Freetown
- *Africa/Gaborone
- *Africa/Harare
- *Africa/Johannesburg
- *Africa/Juba
- *Africa/Kampala
- *Africa/Khartoum
- *Africa/Kigali
- *Africa/Kinshasa
- *Africa/Lagos
- *Africa/Libreville
- *Africa/Lome
- *Africa/Luanda
- *Africa/Lubumbashi
- *Africa/Lusaka
- *Africa/Malabo
- *Africa/Maputo
- *Africa/Maseru
- *Africa/Mbabane
- *Africa/Mogadishu
- *Africa/Monrovia
- *Africa/Nairobi
- *Africa/Ndjamena
- *Africa/Niamey
- *Africa/Nouakchott
- *Africa/Ouagadougou
- *Africa/Porto-Novo
- *Africa/Sao_Tome
- *Africa/Tripoli
- *Africa/Tunis
- *Africa/Windhoek
- *America/Adak
- *America/Anchorage
- *America/Anguilla
- *America/Antigua
- *America/Araguaina
- *America/Argentina/Buenos_Aires
- *America/Argentina/Catamarca
- *America/Argentina/Cordoba
- *America/Argentina/Jujuy
- *America/Argentina/La_Rioja
- *America/Argentina/Mendoza
- *America/Argentina/Rio_Gallegos
- *America/Argentina/Salta
- *America/Argentina/San_Juan
- *America/Argentina/San_Luis
- *America/Argentina/Tucuman
- *America/Argentina/Ushuaia
- *America/Aruba
- *America/Asuncion
- *America/Atikokan
- *America/Bahia
- *America/Bahia_Banderas
- *America/Barbados
- *America/Belem
- *America/Belize
- *America/Blanc-Sablon
- *America/Boa_Vista
- *America/Bogota
- *America/Boise
- *America/Cambridge_Bay
- *America/Campo_Grande
- *America/Cancun
- *America/Caracas
- *America/Cayenne
- *America/Cayman
- *America/Chicago
- *America/Chihuahua
- *America/Costa_Rica
- *America/Creston
- *America/Cuiaba
- *America/Curacao
- *America/Danmarkshavn
- *America/Dawson
- *America/Dawson_Creek
- *America/Denver
- *America/Detroit
- *America/Dominica
- *America/Edmonton
- *America/Eirunepe
- *America/El_Salvador
- *America/Fortaleza
- *America/Glace_Bay
- *America/Godthab
- *America/Goose_Bay
- *America/Grand_Turk
- *America/Grenada
- *America/Guadeloupe
- *America/Guatemala
- *America/Guayaquil
- *America/Guyana
- *America/Halifax
- *America/Havana
- *America/Hermosillo
- *America/Indiana/Indianapolis
- *America/Indiana/Knox
- *America/Indiana/Marengo
- *America/Indiana/Petersburg
- *America/Indiana/Tell_City
- *America/Indiana/Vevay
- *America/Indiana/Vincennes
- *America/Indiana/Winamac
- *America/Inuvik
- *America/Iqaluit
- *America/Jamaica
- *America/Juneau
- *America/Kentucky/Louisville
- *America/Kentucky/Monticello
- *America/Kralendijk
- *America/La_Paz
- *America/Lima
- *America/Los_Angeles
- *America/Lower_Princes
- *America/Maceio
- *America/Managua
- *America/Manaus
- *America/Marigot
- *America/Martinique
- *America/Matamoros
- *America/Mazatlan
- *America/Menominee
- *America/Merida
- *America/Metlakatla
- *America/Mexico_City
- *America/Miquelon
- *America/Moncton
- *America/Monterrey
- *America/Montevideo
- *America/Montreal
- *America/Montserrat
- *America/Nassau
- *America/New_York
- *America/Nipigon
- *America/Nome
- *America/Noronha
- *America/North_Dakota/Beulah
- *America/North_Dakota/Center
- *America/North_Dakota/New_Salem
- *America/Ojinaga
- *America/Panama
- *America/Pangnirtung
- *America/Paramaribo
- *America/Phoenix
- *America/Port-au-Prince
- *America/Port_of_Spain
- *America/Porto_Velho
- *America/Puerto_Rico
- *America/Rainy_River
- *America/Rankin_Inlet
- *America/Recife
- *America/Regina
- *America/Resolute
- *America/Rio_Branco
- *America/Santa_Isabel
- *America/Santarem
- *America/Santiago
- *America/Santo_Domingo
- *America/Sao_Paulo
- *America/Scoresbysund
- *America/Shiprock
- *America/Sitka
- *America/St_Barthelemy
- *America/St_Johns
- *America/St_Kitts
- *America/St_Lucia
- *America/St_Thomas
- *America/St_Vincent
- *America/Swift_Current
- *America/Tegucigalpa
- *America/Thule
- *America/Thunder_Bay
- *America/Tijuana
- *America/Toronto
- *America/Tortola
- *America/Vancouver
- *America/Whitehorse
- *America/Winnipeg
- *America/Yakutat
- *America/Yellowknife
- *Antarctica/Casey
- *Antarctica/Davis
- *Antarctica/DumontDUrville
- *Antarctica/Macquarie
- *Antarctica/Mawson
- *Antarctica/McMurdo
- *Antarctica/Palmer
- *Antarctica/Rothera
- *Antarctica/South_Pole
- *Antarctica/Syowa
- *Antarctica/Troll
- *Antarctica/Vostok
- *Arctic/Longyearbyen
- *Asia/Aden
- *Asia/Almaty
- *Asia/Amman
- *Asia/Anadyr
- *Asia/Aqtau
- *Asia/Aqtobe
- *Asia/Ashgabat
- *Asia/Baghdad
- *Asia/Bahrain
- *Asia/Baku
- *Asia/Bangkok
- *Asia/Beirut
- *Asia/Bishkek
- *Asia/Brunei
- *Asia/Calcutta
- *Asia/Choibalsan
- *Asia/Chongqing
- *Asia/Colombo
- *Asia/Damascus
- *Asia/Dhaka
- *Asia/Dili
- *Asia/Dubai
- *Asia/Dushanbe
- *Asia/Gaza
- *Asia/Harbin
- *Asia/Hebron
- *Asia/Ho_Chi_Minh
- *Asia/Hong_Kong
- *Asia/Hovd
- *Asia/Irkutsk
- *Asia/Jakarta
- *Asia/Jayapura
- *Asia/Jerusalem
- *Asia/Kabul
- *Asia/Kamchatka
- *Asia/Karachi
- *Asia/Kashgar
- *Asia/Kathmandu
- *Asia/Katmandu
- *Asia/Khandyga
- *Asia/Kolkata
- *Asia/Krasnoyarsk
- *Asia/Kuala_Lumpur
- *Asia/Kuching
- *Asia/Kuwait
- *Asia/Macau
- *Asia/Magadan
- *Asia/Makassar
- *Asia/Manila
- *Asia/Muscat
- *Asia/Nicosia
- *Asia/Novokuznetsk
- *Asia/Novosibirsk
- *Asia/Omsk
- *Asia/Oral
- *Asia/Phnom_Penh
- *Asia/Pontianak
- *Asia/Pyongyang
- *Asia/Qatar
- *Asia/Qyzylorda
- *Asia/Rangoon
- *Asia/Riyadh
- *Asia/Saigon
- *Asia/Sakhalin
- *Asia/Samarkand
- *Asia/Seoul
- *Asia/Shanghai
- *Asia/Singapore
- *Asia/Taipei
- *Asia/Tashkent
- *Asia/Tbilisi
- *Asia/Tehran
- *Asia/Thimphu
- *Asia/Tokyo
- *Asia/Ulaanbaatar
- *Asia/Urumqi
- *Asia/Ust-Nera
- *Asia/Vientiane
- *Asia/Vladivostok
- *Asia/Yakutsk
- *Asia/Yekaterinburg
- *Asia/Yerevan
- *Atlantic/Azores
- *Atlantic/Bermuda
- *Atlantic/Canary
- *Atlantic/Cape_Verde
- *Atlantic/Faroe
- *Atlantic/Madeira
- *Atlantic/Reykjavik
- *Atlantic/South_Georgia
- *Atlantic/St_Helena
- *Atlantic/Stanley
- *Australia/Adelaide
- *Australia/Brisbane
- *Australia/Broken_Hill
- *Australia/Currie
- *Australia/Darwin
- *Australia/Eucla
- *Australia/Hobart
- *Australia/Lindeman
- *Australia/Lord_Howe
- *Australia/Melbourne
- *Australia/Perth
- *Australia/Sydney
- *Etc/GMT
- *Europe/Amsterdam
- *Europe/Andorra
- *Europe/Athens
- *Europe/Belgrade
- *Europe/Berlin
- *Europe/Bratislava
- *Europe/Brussels
- *Europe/Bucharest
- *Europe/Budapest
- *Europe/Busingen
- *Europe/Chisinau
- *Europe/Copenhagen
- *Europe/Dublin
- *Europe/Gibraltar
- *Europe/Guernsey
- *Europe/Helsinki
- *Europe/Isle_of_Man
- *Europe/Istanbul
- *Europe/Jersey
- *Europe/Kaliningrad
- *Europe/Kiev
- *Europe/Lisbon
- *Europe/Ljubljana
- *Europe/London
- *Europe/Luxembourg
- *Europe/Madrid
- *Europe/Malta
- *Europe/Mariehamn
- *Europe/Minsk
- *Europe/Monaco
- *Europe/Moscow
- *Europe/Oslo
- *Europe/Paris
- *Europe/Podgorica
- *Europe/Prague
- *Europe/Riga
- *Europe/Rome
- *Europe/Samara
- *Europe/San_Marino
- *Europe/Sarajevo
- *Europe/Simferopol
- *Europe/Skopje
- *Europe/Sofia
- *Europe/Stockholm
- *Europe/Tallinn
- *Europe/Tirane
- *Europe/Uzhgorod
- *Europe/Vaduz
- *Europe/Vatican
- *Europe/Vienna
- *Europe/Vilnius
- *Europe/Volgograd
- *Europe/Warsaw
- *Europe/Zagreb
- *Europe/Zaporozhye
- *Europe/Zurich
- *Indian/Antananarivo
- *Indian/Chagos
- *Indian/Christmas
- *Indian/Cocos
- *Indian/Comoro
- *Indian/Kerguelen
- *Indian/Mahe
- *Indian/Maldives
- *Indian/Mauritius
- *Indian/Mayotte
- *Indian/Reunion
- *Pacific/Apia
- *Pacific/Auckland
- *Pacific/Chatham
- *Pacific/Chuuk
- *Pacific/Easter
- *Pacific/Efate
- *Pacific/Enderbury
- *Pacific/Fakaofo
- *Pacific/Fiji
- *Pacific/Funafuti
- *Pacific/Galapagos
- *Pacific/Gambier
- *Pacific/Guadalcanal
- *Pacific/Guam
- *Pacific/Honolulu
- *Pacific/Johnston
- *Pacific/Kiritimati
- *Pacific/Kosrae
- *Pacific/Kwajalein
- *Pacific/Majuro
- *Pacific/Marquesas
- *Pacific/Midway
- *Pacific/Nauru
- *Pacific/Norfolk
- *Pacific/Noumea
- *Pacific/Pago_Pago
- *Pacific/Palau
- *Pacific/Pitcairn
- *Pacific/Pohnpei
- *Pacific/Port_Moresby
- *Pacific/Rarotonga
- *Pacific/Saipan
- *Pacific/Tahiti
- *Pacific/Tarawa
- *Pacific/Tongatapu
- *Pacific/Wake
- *Pacific/Wallis
- *UTC
- - week
Of NumberMonth - Schedule a task on a specific week of the month. Valid values are 1 through 5. Value of 5 means last week of the month. WeekOfMonth may not be set when dayOfMonth is specified.
ApplianceBackupPolicyTag, ApplianceBackupPolicyTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
ApplianceBackupPolicyVersionContext, ApplianceBackupPolicyVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<ApplianceBackup Policy Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<ApplianceBackup Policy Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []ApplianceBackup Policy Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []ApplianceBackup Policy Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<ApplianceBackup Policy Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<ApplianceBackup Policy Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos ApplianceBackup Policy Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos ApplianceBackup Policy Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[ApplianceBackup Policy Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[ApplianceBackup Policy Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
ApplianceBackupPolicyVersionContextInterestedMo, ApplianceBackupPolicyVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
ApplianceBackupPolicyVersionContextRefMo, ApplianceBackupPolicyVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_appliance_backup_policy
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/applianceBackupPolicy:ApplianceBackupPolicy example 1234567890987654321abcde
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- intersight ciscodevnet/terraform-provider-intersight
- License
- Notes
- This Pulumi package is based on the
intersight
Terraform Provider.