Class: Google::Apis::IntegrationsV1alpha::EnterpriseCrmFrontendsEventbusProtoTaskEntity

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb

Overview

Contains a task's metadata and associated information. Next available id: 7

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ EnterpriseCrmFrontendsEventbusProtoTaskEntity

Returns a new instance of EnterpriseCrmFrontendsEventbusProtoTaskEntity.



4493
4494
4495
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4493

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#disabled_for_vpc_scBoolean Also known as: disabled_for_vpc_sc?

True if the task has conflict with vpcsc Corresponds to the JSON property disabledForVpcSc

Returns:

  • (Boolean)


4462
4463
4464
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4462

def disabled_for_vpc_sc
  @disabled_for_vpc_sc
end

#metadataGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoTaskMetadata

TaskMetadata are attributes that are associated to every common Task we have. Corresponds to the JSON property metadata



4468
4469
4470
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4468

def 
  @metadata
end

#param_specsGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmFrontendsEventbusProtoParamSpecsMessage

Declarations for inputs/outputs for a TypedTask. This is also associated with the METADATA mask. Corresponds to the JSON property paramSpecs



4474
4475
4476
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4474

def param_specs
  @param_specs
end

#statsGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusStats

Stats for the requested dimensions: QPS, duration, and error/warning rate Corresponds to the JSON property stats



4479
4480
4481
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4479

def stats
  @stats
end

#task_typeString

Defines the type of the task Corresponds to the JSON property taskType

Returns:

  • (String)


4484
4485
4486
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4484

def task_type
  @task_type
end

#ui_configGoogle::Apis::IntegrationsV1alpha::EnterpriseCrmEventbusProtoTaskUiConfig

Task authors would use this type to configure the UI for a particular task by specifying what UI config modules should be included to compose the UI. Learn more about config module framework: Corresponds to the JSON property uiConfig



4491
4492
4493
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4491

def ui_config
  @ui_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4498
4499
4500
4501
4502
4503
4504
4505
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4498

def update!(**args)
  @disabled_for_vpc_sc = args[:disabled_for_vpc_sc] if args.key?(:disabled_for_vpc_sc)
  @metadata = args[:metadata] if args.key?(:metadata)
  @param_specs = args[:param_specs] if args.key?(:param_specs)
  @stats = args[:stats] if args.key?(:stats)
  @task_type = args[:task_type] if args.key?(:task_type)
  @ui_config = args[:ui_config] if args.key?(:ui_config)
end