avi.Albservicesjob
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Albservicesjob” sidebar_current: “docs-avi-resource-albservicesjob” description: |- Creates and manages Avi ALBServicesJob.
avi.Albservicesjob
The ALBServicesJob resource allows the creation and management of Avi ALBServicesJob
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Albservicesjob("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Albservicesjob("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewAlbservicesjob(ctx, "foo", &avi.AlbservicesjobArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Albservicesjob("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Albservicesjob;
import com.pulumi.avi.AlbservicesjobArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var foo = new Albservicesjob("foo", AlbservicesjobArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Albservicesjob
properties:
tenantRef: /api/tenant/?name=admin
Create Albservicesjob Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Albservicesjob(name: string, args: AlbservicesjobArgs, opts?: CustomResourceOptions);
@overload
def Albservicesjob(resource_name: str,
args: AlbservicesjobArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Albservicesjob(resource_name: str,
opts: Optional[ResourceOptions] = None,
command: Optional[str] = None,
pulse_job_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[AlbservicesjobConfigpbAttributeArgs]] = None,
end_times: Optional[Sequence[AlbservicesjobEndTimeArgs]] = None,
name: Optional[str] = None,
params: Optional[Sequence[AlbservicesjobParamArgs]] = None,
albservicesjob_id: Optional[str] = None,
pulse_sync_status: Optional[str] = None,
result: Optional[str] = None,
start_times: Optional[Sequence[AlbservicesjobStartTimeArgs]] = None,
status: Optional[str] = None,
status_update_times: Optional[Sequence[AlbservicesjobStatusUpdateTimeArgs]] = None,
tenant_ref: Optional[str] = None,
token: Optional[str] = None,
uuid: Optional[str] = None)
func NewAlbservicesjob(ctx *Context, name string, args AlbservicesjobArgs, opts ...ResourceOption) (*Albservicesjob, error)
public Albservicesjob(string name, AlbservicesjobArgs args, CustomResourceOptions? opts = null)
public Albservicesjob(String name, AlbservicesjobArgs args)
public Albservicesjob(String name, AlbservicesjobArgs args, CustomResourceOptions options)
type: avi:Albservicesjob
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 AlbservicesjobArgs
- 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 AlbservicesjobArgs
- 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 AlbservicesjobArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AlbservicesjobArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AlbservicesjobArgs
- 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 albservicesjobResource = new Avi.Albservicesjob("albservicesjobResource", new()
{
Command = "string",
PulseJobId = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.AlbservicesjobConfigpbAttributeArgs
{
Version = "string",
},
},
EndTimes = new[]
{
new Avi.Inputs.AlbservicesjobEndTimeArgs
{
Secs = "string",
Usecs = "string",
},
},
Name = "string",
Params = new[]
{
new Avi.Inputs.AlbservicesjobParamArgs
{
Key = "string",
Value = "string",
},
},
AlbservicesjobId = "string",
PulseSyncStatus = "string",
Result = "string",
StartTimes = new[]
{
new Avi.Inputs.AlbservicesjobStartTimeArgs
{
Secs = "string",
Usecs = "string",
},
},
Status = "string",
StatusUpdateTimes = new[]
{
new Avi.Inputs.AlbservicesjobStatusUpdateTimeArgs
{
Secs = "string",
Usecs = "string",
},
},
TenantRef = "string",
Token = "string",
Uuid = "string",
});
example, err := avi.NewAlbservicesjob(ctx, "albservicesjobResource", &avi.AlbservicesjobArgs{
Command: pulumi.String("string"),
PulseJobId: pulumi.String("string"),
ConfigpbAttributes: avi.AlbservicesjobConfigpbAttributeArray{
&avi.AlbservicesjobConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
EndTimes: avi.AlbservicesjobEndTimeArray{
&avi.AlbservicesjobEndTimeArgs{
Secs: pulumi.String("string"),
Usecs: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Params: avi.AlbservicesjobParamArray{
&avi.AlbservicesjobParamArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
AlbservicesjobId: pulumi.String("string"),
PulseSyncStatus: pulumi.String("string"),
Result: pulumi.String("string"),
StartTimes: avi.AlbservicesjobStartTimeArray{
&avi.AlbservicesjobStartTimeArgs{
Secs: pulumi.String("string"),
Usecs: pulumi.String("string"),
},
},
Status: pulumi.String("string"),
StatusUpdateTimes: avi.AlbservicesjobStatusUpdateTimeArray{
&avi.AlbservicesjobStatusUpdateTimeArgs{
Secs: pulumi.String("string"),
Usecs: pulumi.String("string"),
},
},
TenantRef: pulumi.String("string"),
Token: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var albservicesjobResource = new Albservicesjob("albservicesjobResource", AlbservicesjobArgs.builder()
.command("string")
.pulseJobId("string")
.configpbAttributes(AlbservicesjobConfigpbAttributeArgs.builder()
.version("string")
.build())
.endTimes(AlbservicesjobEndTimeArgs.builder()
.secs("string")
.usecs("string")
.build())
.name("string")
.params(AlbservicesjobParamArgs.builder()
.key("string")
.value("string")
.build())
.albservicesjobId("string")
.pulseSyncStatus("string")
.result("string")
.startTimes(AlbservicesjobStartTimeArgs.builder()
.secs("string")
.usecs("string")
.build())
.status("string")
.statusUpdateTimes(AlbservicesjobStatusUpdateTimeArgs.builder()
.secs("string")
.usecs("string")
.build())
.tenantRef("string")
.token("string")
.uuid("string")
.build());
albservicesjob_resource = avi.Albservicesjob("albservicesjobResource",
command="string",
pulse_job_id="string",
configpb_attributes=[{
"version": "string",
}],
end_times=[{
"secs": "string",
"usecs": "string",
}],
name="string",
params=[{
"key": "string",
"value": "string",
}],
albservicesjob_id="string",
pulse_sync_status="string",
result="string",
start_times=[{
"secs": "string",
"usecs": "string",
}],
status="string",
status_update_times=[{
"secs": "string",
"usecs": "string",
}],
tenant_ref="string",
token="string",
uuid="string")
const albservicesjobResource = new avi.Albservicesjob("albservicesjobResource", {
command: "string",
pulseJobId: "string",
configpbAttributes: [{
version: "string",
}],
endTimes: [{
secs: "string",
usecs: "string",
}],
name: "string",
params: [{
key: "string",
value: "string",
}],
albservicesjobId: "string",
pulseSyncStatus: "string",
result: "string",
startTimes: [{
secs: "string",
usecs: "string",
}],
status: "string",
statusUpdateTimes: [{
secs: "string",
usecs: "string",
}],
tenantRef: "string",
token: "string",
uuid: "string",
});
type: avi:Albservicesjob
properties:
albservicesjobId: string
command: string
configpbAttributes:
- version: string
endTimes:
- secs: string
usecs: string
name: string
params:
- key: string
value: string
pulseJobId: string
pulseSyncStatus: string
result: string
startTimes:
- secs: string
usecs: string
status: string
statusUpdateTimes:
- secs: string
usecs: string
tenantRef: string
token: string
uuid: string
Albservicesjob 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 Albservicesjob resource accepts the following input properties:
- Command string
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Albservicesjob
Id string - Configpb
Attributes List<AlbservicesjobConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Times List<AlbservicesjobEnd Time> - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Params
List<Albservicesjob
Param> - Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Pulse
Job stringId - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Pulse
Sync stringStatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Result string
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Start
Times List<AlbservicesjobStart Time> - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status string
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status
Update List<AlbservicesjobTimes Status Update Time> - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Token string
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Command string
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Albservicesjob
Id string - Configpb
Attributes []AlbservicesjobConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Times []AlbservicesjobEnd Time Args - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Params
[]Albservicesjob
Param Args - Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Pulse
Job stringId - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Pulse
Sync stringStatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Result string
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Start
Times []AlbservicesjobStart Time Args - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status string
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status
Update []AlbservicesjobTimes Status Update Time Args - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Token string
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- command String
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- albservicesjob
Id String - configpb
Attributes List<AlbservicesjobConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Times List<AlbservicesjobEnd Time> - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- params
List<Albservicesjob
Param> - Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Job StringId - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Sync StringStatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- result String
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- start
Times List<AlbservicesjobStart Time> - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status String
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status
Update List<AlbservicesjobTimes Status Update Time> - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- token String
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- command string
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- albservicesjob
Id string - configpb
Attributes AlbservicesjobConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Times AlbservicesjobEnd Time[] - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- params
Albservicesjob
Param[] - Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Job stringId - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Sync stringStatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- result string
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- start
Times AlbservicesjobStart Time[] - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status string
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status
Update AlbservicesjobTimes Status Update Time[] - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref string - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- token string
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- command str
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- albservicesjob_
id str - configpb_
attributes Sequence[AlbservicesjobConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
times Sequence[AlbservicesjobEnd Time Args] - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- params
Sequence[Albservicesjob
Param Args] - Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse_
job_ strid - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse_
sync_ strstatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- result str
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- start_
times Sequence[AlbservicesjobStart Time Args] - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status str
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status_
update_ Sequence[Albservicesjobtimes Status Update Time Args] - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref str - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- token str
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- command String
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- albservicesjob
Id String - configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Times List<Property Map> - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- params List<Property Map>
- Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Job StringId - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Sync StringStatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- result String
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- start
Times List<Property Map> - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status String
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status
Update List<Property Map>Times - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- token String
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Albservicesjob 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 Albservicesjob Resource
Get an existing Albservicesjob 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?: AlbservicesjobState, opts?: CustomResourceOptions): Albservicesjob
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
albservicesjob_id: Optional[str] = None,
command: Optional[str] = None,
configpb_attributes: Optional[Sequence[AlbservicesjobConfigpbAttributeArgs]] = None,
end_times: Optional[Sequence[AlbservicesjobEndTimeArgs]] = None,
name: Optional[str] = None,
params: Optional[Sequence[AlbservicesjobParamArgs]] = None,
pulse_job_id: Optional[str] = None,
pulse_sync_status: Optional[str] = None,
result: Optional[str] = None,
start_times: Optional[Sequence[AlbservicesjobStartTimeArgs]] = None,
status: Optional[str] = None,
status_update_times: Optional[Sequence[AlbservicesjobStatusUpdateTimeArgs]] = None,
tenant_ref: Optional[str] = None,
token: Optional[str] = None,
uuid: Optional[str] = None) -> Albservicesjob
func GetAlbservicesjob(ctx *Context, name string, id IDInput, state *AlbservicesjobState, opts ...ResourceOption) (*Albservicesjob, error)
public static Albservicesjob Get(string name, Input<string> id, AlbservicesjobState? state, CustomResourceOptions? opts = null)
public static Albservicesjob get(String name, Output<String> id, AlbservicesjobState state, CustomResourceOptions options)
resources: _: type: avi:Albservicesjob 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.
- Albservicesjob
Id string - Command string
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes List<AlbservicesjobConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Times List<AlbservicesjobEnd Time> - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Params
List<Albservicesjob
Param> - Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Pulse
Job stringId - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Pulse
Sync stringStatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Result string
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Start
Times List<AlbservicesjobStart Time> - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status string
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status
Update List<AlbservicesjobTimes Status Update Time> - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Token string
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Albservicesjob
Id string - Command string
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Configpb
Attributes []AlbservicesjobConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- End
Times []AlbservicesjobEnd Time Args - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Name string
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Params
[]Albservicesjob
Param Args - Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Pulse
Job stringId - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Pulse
Sync stringStatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Result string
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Start
Times []AlbservicesjobStart Time Args - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status string
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Status
Update []AlbservicesjobTimes Status Update Time Args - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref string - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- Token string
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Uuid string
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- albservicesjob
Id String - command String
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<AlbservicesjobConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Times List<AlbservicesjobEnd Time> - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- params
List<Albservicesjob
Param> - Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Job StringId - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Sync StringStatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- result String
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- start
Times List<AlbservicesjobStart Time> - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status String
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status
Update List<AlbservicesjobTimes Status Update Time> - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- token String
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- albservicesjob
Id string - command string
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes AlbservicesjobConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Times AlbservicesjobEnd Time[] - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- name string
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- params
Albservicesjob
Param[] - Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Job stringId - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Sync stringStatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- result string
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- start
Times AlbservicesjobStart Time[] - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status string
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status
Update AlbservicesjobTimes Status Update Time[] - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref string - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- token string
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid string
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- albservicesjob_
id str - command str
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb_
attributes Sequence[AlbservicesjobConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end_
times Sequence[AlbservicesjobEnd Time Args] - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- name str
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- params
Sequence[Albservicesjob
Param Args] - Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse_
job_ strid - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse_
sync_ strstatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- result str
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- start_
times Sequence[AlbservicesjobStart Time Args] - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status str
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status_
update_ Sequence[Albservicesjobtimes Status Update Time Args] - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant_
ref str - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- token str
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid str
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- albservicesjob
Id String - command String
- The command to be triggered by the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- end
Times List<Property Map> - Time at which the albservicesjob ended. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- name String
- The name of the albservicesjob. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- params List<Property Map>
- Job params. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Job StringId - A unique identifier for this job entry on the pulse cloud services. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- pulse
Sync StringStatus - Status of sync to pulse cloud services(result uploads/state updates). Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- result String
- Job result. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- start
Times List<Property Map> - Time at which the albservicesjob started. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status String
- The status of the albservicesjob. Enum options - UNDETERMINED, PENDING, IN_PROGRESS, COMPLETED, FAILED, NOT_ENABLED. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- status
Update List<Property Map>Times - Time at which the status of albservicesjob updated. Field introduced in 22.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref String - The unique identifier of the tenant to which this albservicesjob belongs. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
- token String
- Job token. Field introduced in 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- uuid String
- A unique identifier for this albservicesjob entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
Supporting Types
AlbservicesjobConfigpbAttribute, AlbservicesjobConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
AlbservicesjobEndTime, AlbservicesjobEndTimeArgs
AlbservicesjobParam, AlbservicesjobParamArgs
AlbservicesjobStartTime, AlbservicesjobStartTimeArgs
AlbservicesjobStatusUpdateTime, AlbservicesjobStatusUpdateTimeArgs
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.