Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaSfdcInstance
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaSfdcInstance
- 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
The SfdcInstance resource use to hold channels and connection config data.
Instance Attribute Summary collapse
-
#auth_config_id ⇒ Array<String>
A list of AuthConfigs that can be tried to open the channel to SFDC Corresponds to the JSON property
authConfigId. -
#create_time ⇒ String
Output only.
-
#delete_time ⇒ String
Output only.
-
#description ⇒ String
A description of the sfdc instance.
-
#display_name ⇒ String
User selected unique name/alias to easily reference an instance.
-
#name ⇒ String
Resource name of the SFDC instance projects/
project/locations/location/ sfdcInstances/sfdcInstance. -
#service_authority ⇒ String
URL used for API calls after authentication (the login authority is configured within the referenced AuthConfig).
-
#sfdc_org_id ⇒ String
The SFDC Org Id.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaSfdcInstance
constructor
A new instance of GoogleCloudIntegrationsV1alphaSfdcInstance.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaSfdcInstance
Returns a new instance of GoogleCloudIntegrationsV1alphaSfdcInstance.
8023 8024 8025 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8023 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auth_config_id ⇒ Array<String>
A list of AuthConfigs that can be tried to open the channel to SFDC
Corresponds to the JSON property authConfigId
7979 7980 7981 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7979 def auth_config_id @auth_config_id end |
#create_time ⇒ String
Output only. Time when the instance is created
Corresponds to the JSON property createTime
7984 7985 7986 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7984 def create_time @create_time end |
#delete_time ⇒ String
Output only. Time when the instance was deleted. Empty if not deleted.
Corresponds to the JSON property deleteTime
7989 7990 7991 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7989 def delete_time @delete_time end |
#description ⇒ String
A description of the sfdc instance.
Corresponds to the JSON property description
7994 7995 7996 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7994 def description @description end |
#display_name ⇒ String
User selected unique name/alias to easily reference an instance.
Corresponds to the JSON property displayName
7999 8000 8001 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 7999 def display_name @display_name end |
#name ⇒ String
Resource name of the SFDC instance projects/project/locations/location/
sfdcInstances/sfdcInstance.
Corresponds to the JSON property name
8005 8006 8007 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8005 def name @name end |
#service_authority ⇒ String
URL used for API calls after authentication (the login authority is configured
within the referenced AuthConfig).
Corresponds to the JSON property serviceAuthority
8011 8012 8013 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8011 def @service_authority end |
#sfdc_org_id ⇒ String
The SFDC Org Id. This is defined in salesforce.
Corresponds to the JSON property sfdcOrgId
8016 8017 8018 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8016 def sfdc_org_id @sfdc_org_id end |
#update_time ⇒ String
Output only. Time when the instance was last updated
Corresponds to the JSON property updateTime
8021 8022 8023 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8021 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 8028 def update!(**args) @auth_config_id = args[:auth_config_id] if args.key?(:auth_config_id) @create_time = args[:create_time] if args.key?(:create_time) @delete_time = args[:delete_time] if args.key?(:delete_time) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @service_authority = args[:service_authority] if args.key?(:service_authority) @sfdc_org_id = args[:sfdc_org_id] if args.key?(:sfdc_org_id) @update_time = args[:update_time] if args.key?(:update_time) end |