ODBC Driver for Jira

Build 22.0.8479

Roles

Query the available roles in JIRA.

Select

本製品 はJira API を使用してId を参照するフィルタを処理します。その他のフィルタはクライアント側で本製品 内部で処理されます。Jira API は、Id でイコール(=)演算子を使用するフィルタをサポートしています。

例えば、次のクエリはサーバー側で処理されます。

すべての利用可能なロールを取得する:

SELECT * FROM Roles

特定のロールを取得する:

SELECT * FROM Roles WHERE Id = '10002'

Update

ロールId を指定して、ロールの名前と説明を更新します。

UPDATE Roles SET Description = 'test_updated', Name = 'test_updated' WHERE Id = 10002

Delete

Id を指定して、ロールを削除します。

DELETE FROM Roles WHERE Id = '10002'

Columns

Name Type ReadOnly References SupportedOperators Platform Description
Id [KEY] Long False = Common

The Id of the role.

Name String False Common

The name of the role.

Description String False Common

The description of the role.

Actors String False Common

The list of users who act in this role.

Scope String False Cloud

The scope of the role.

IsAdmin Boolean False Cloud

Whether this role is the admin role for the project.

IsDefault Boolean False Cloud

Whether this role is the default role for the project.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8479