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.



4588
4589
4590
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4588

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)


4555
4556
4557
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4555

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



4562
4563
4564
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4562

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



4568
4569
4570
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4568

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



4573
4574
4575
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4573

def stats
  @stats
end

#task_typeString

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

Returns:

  • (String)


4578
4579
4580
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4578

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



4586
4587
4588
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4586

def ui_config
  @ui_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4593
4594
4595
4596
4597
4598
4599
4600
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 4593

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