Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1JiraSourceJiraQueries

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

Overview

JiraQueries contains the Jira queries and corresponding authentication.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1JiraSourceJiraQueries

Returns a new instance of GoogleCloudAiplatformV1JiraSourceJiraQueries.



13378
13379
13380
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13378

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

Instance Attribute Details

#api_key_configGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1ApiAuthApiKeyConfig

The API secret. Corresponds to the JSON property apiKeyConfig



13354
13355
13356
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13354

def api_key_config
  @api_key_config
end

#custom_queriesArray<String>

A list of custom Jira queries to import. For information about JQL (Jira Query Language), see https://support.atlassian.com/jira-service-management-cloud/ docs/use-advanced-search-with-jira-query-language-jql/ Corresponds to the JSON property customQueries

Returns:

  • (Array<String>)


13361
13362
13363
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13361

def custom_queries
  @custom_queries
end

#emailString

Required. The Jira email address. Corresponds to the JSON property email

Returns:

  • (String)


13366
13367
13368
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13366

def email
  @email
end

#projectsArray<String>

A list of Jira projects to import in their entirety. Corresponds to the JSON property projects

Returns:

  • (Array<String>)


13371
13372
13373
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13371

def projects
  @projects
end

#server_uriString

Required. The Jira server URI. Corresponds to the JSON property serverUri

Returns:

  • (String)


13376
13377
13378
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13376

def server_uri
  @server_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



13383
13384
13385
13386
13387
13388
13389
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 13383

def update!(**args)
  @api_key_config = args[:api_key_config] if args.key?(:api_key_config)
  @custom_queries = args[:custom_queries] if args.key?(:custom_queries)
  @email = args[:email] if args.key?(:email)
  @projects = args[:projects] if args.key?(:projects)
  @server_uri = args[:server_uri] if args.key?(:server_uri)
end