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.



4414
4415
4416
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4414

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)


4381
4382
4383
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4381

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. Next available: 26 Corresponds to the JSON property metadata



4388
4389
4390
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4388

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



4394
4395
4396
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4394

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



4399
4400
4401
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4399

def stats
  @stats
end

#task_typeString

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

Returns:

  • (String)


4404
4405
4406
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4404

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: go/integration-platform-config-module- framework Corresponds to the JSON property uiConfig



4412
4413
4414
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4412

def ui_config
  @ui_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4419
4420
4421
4422
4423
4424
4425
4426
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4419

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