class Google::Apis::ConnectorsV1::ConnectorVersion

ConnectorVersion indicates a specific version of a connector.

Attributes

auth_config_templates[RW]

Output only. List of auth configs supported by the Connector Version. Corresponds to the JSON property ‘authConfigTemplates` @return [Array<Google::Apis::ConnectorsV1::AuthConfigTemplate>]

config_variable_templates[RW]

Output only. List of config variables needed to create a connection. Corresponds to the JSON property ‘configVariableTemplates` @return [Array<Google::Apis::ConnectorsV1::ConfigVariableTemplate>]

create_time[RW]

Output only. Created time. Corresponds to the JSON property ‘createTime` @return [String]

display_name[RW]

Output only. Display name. Corresponds to the JSON property ‘displayName` @return [String]

egress_control_config[RW]

Egress control config for connector runtime. These configurations define the rules to identify which outbound domains/hosts needs to be whitelisted. It may be a static information for a particular connector version or it is derived from the configurations provided by the customer in Connection resource. Corresponds to the JSON property ‘egressControlConfig` @return [Google::Apis::ConnectorsV1::EgressControlConfig]

labels[RW]

Output only. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. cloud.google.com/ compute/docs/labeling-resources Corresponds to the JSON property ‘labels` @return [Hash<String,String>]

launch_stage[RW]

Output only. Flag to mark the version indicating the launch stage. Corresponds to the JSON property ‘launchStage` @return [String]

name[RW]

Output only. Resource name of the Version. Format: projects/‘project`/ locations/`location`/providers/`provider`/connectors/`connector`/versions/` version` Corresponds to the JSON property `name` @return [String]

release_version[RW]

Output only. ReleaseVersion of the connector, for example: “1.0.1-alpha”. Corresponds to the JSON property ‘releaseVersion` @return [String]

role_grant[RW]

This configuration defines all the Cloud IAM roles that needs to be granted to a particular GCP resource for the selected prinicpal like service account. These configurations will let UI display to customers what IAM roles need to be granted by them. Or these configurations can be used by the UI to render a ‘ grant’ button to do the same on behalf of the user. Corresponds to the JSON property ‘roleGrant` @return [Google::Apis::ConnectorsV1::RoleGrant]

role_grants[RW]

Output only. Role grant configurations for this connector version. Corresponds to the JSON property ‘roleGrants` @return [Array<Google::Apis::ConnectorsV1::RoleGrant>]

supported_runtime_features[RW]

Supported runtime features of a connector version. This is passed to the management layer to add a new connector version by the connector developer. Details about how this proto is passed to the management layer is covered in this doc - go/runtime-manifest. Corresponds to the JSON property ‘supportedRuntimeFeatures` @return [Google::Apis::ConnectorsV1::SupportedRuntimeFeatures]

update_time[RW]

Output only. Updated time. Corresponds to the JSON property ‘updateTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 694
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/connectors_v1/classes.rb, line 699
def update!(**args)
  @auth_config_templates = args[:auth_config_templates] if args.key?(:auth_config_templates)
  @config_variable_templates = args[:config_variable_templates] if args.key?(:config_variable_templates)
  @create_time = args[:create_time] if args.key?(:create_time)
  @display_name = args[:display_name] if args.key?(:display_name)
  @egress_control_config = args[:egress_control_config] if args.key?(:egress_control_config)
  @labels = args[:labels] if args.key?(:labels)
  @launch_stage = args[:launch_stage] if args.key?(:launch_stage)
  @name = args[:name] if args.key?(:name)
  @release_version = args[:release_version] if args.key?(:release_version)
  @role_grant = args[:role_grant] if args.key?(:role_grant)
  @role_grants = args[:role_grants] if args.key?(:role_grants)
  @supported_runtime_features = args[:supported_runtime_features] if args.key?(:supported_runtime_features)
  @update_time = args[:update_time] if args.key?(:update_time)
end