pub struct AppPermissions<'a> {
Show 31 fields pub actions: Option<Cow<'a, str>>, pub administration: Option<Cow<'a, str>>, pub checks: Option<Cow<'a, str>>, pub contents: Option<Cow<'a, str>>, pub deployments: Option<Cow<'a, str>>, pub environments: Option<Cow<'a, str>>, pub issues: Option<Cow<'a, str>>, pub metadata: Option<Cow<'a, str>>, pub packages: Option<Cow<'a, str>>, pub pages: Option<Cow<'a, str>>, pub pull_requests: Option<Cow<'a, str>>, pub repository_hooks: Option<Cow<'a, str>>, pub repository_projects: Option<Cow<'a, str>>, pub secret_scanning_alerts: Option<Cow<'a, str>>, pub secrets: Option<Cow<'a, str>>, pub security_events: Option<Cow<'a, str>>, pub single_file: Option<Cow<'a, str>>, pub statuses: Option<Cow<'a, str>>, pub vulnerability_alerts: Option<Cow<'a, str>>, pub workflows: Option<Cow<'a, str>>, pub members: Option<Cow<'a, str>>, pub organization_administration: Option<Cow<'a, str>>, pub organization_hooks: Option<Cow<'a, str>>, pub organization_plan: Option<Cow<'a, str>>, pub organization_projects: Option<Cow<'a, str>>, pub organization_packages: Option<Cow<'a, str>>, pub organization_secrets: Option<Cow<'a, str>>, pub organization_self_hosted_runners: Option<Cow<'a, str>>, pub organization_user_blocking: Option<Cow<'a, str>>, pub team_discussions: Option<Cow<'a, str>>, pub additionalProperties: HashMap<Cow<'a, str>, Value>,
}
Expand description

App Permissions

The permissions granted to the user-to-server access token.

Example

{
  "contents": "read",
  "deployments": "write",
  "issues": "read",
  "single_file": "read"
}

Fields

actions: Option<Cow<'a, str>>

The level of permission to grant the access token for GitHub Actions workflows, workflow runs, and artifacts. Can be one of: read or write.

administration: Option<Cow<'a, str>>

The level of permission to grant the access token for repository creation, deletion, settings, teams, and collaborators creation. Can be one of: read or write.

checks: Option<Cow<'a, str>>

The level of permission to grant the access token for checks on code. Can be one of: read or write.

contents: Option<Cow<'a, str>>

The level of permission to grant the access token for repository contents, commits, branches, downloads, releases, and merges. Can be one of: read or write.

deployments: Option<Cow<'a, str>>

The level of permission to grant the access token for deployments and deployment statuses. Can be one of: read or write.

environments: Option<Cow<'a, str>>

The level of permission to grant the access token for managing repository environments. Can be one of: read or write.

issues: Option<Cow<'a, str>>

The level of permission to grant the access token for issues and related comments, assignees, labels, and milestones. Can be one of: read or write.

metadata: Option<Cow<'a, str>>

The level of permission to grant the access token to search repositories, list collaborators, and access repository metadata. Can be one of: read or write.

packages: Option<Cow<'a, str>>

The level of permission to grant the access token for packages published to GitHub Packages. Can be one of: read or write.

pages: Option<Cow<'a, str>>

The level of permission to grant the access token to retrieve Pages statuses, configuration, and builds, as well as create new builds. Can be one of: read or write.

pull_requests: Option<Cow<'a, str>>

The level of permission to grant the access token for pull requests and related comments, assignees, labels, milestones, and merges. Can be one of: read or write.

repository_hooks: Option<Cow<'a, str>>

The level of permission to grant the access token to manage the post-receive hooks for a repository. Can be one of: read or write.

repository_projects: Option<Cow<'a, str>>

The level of permission to grant the access token to manage repository projects, columns, and cards. Can be one of: read, write, or admin.

secret_scanning_alerts: Option<Cow<'a, str>>

The level of permission to grant the access token to view and manage secret scanning alerts. Can be one of: read or write.

secrets: Option<Cow<'a, str>>

The level of permission to grant the access token to manage repository secrets. Can be one of: read or write.

security_events: Option<Cow<'a, str>>

The level of permission to grant the access token to view and manage security events like code scanning alerts. Can be one of: read or write.

single_file: Option<Cow<'a, str>>

The level of permission to grant the access token to manage just a single file. Can be one of: read or write.

statuses: Option<Cow<'a, str>>

The level of permission to grant the access token for commit statuses. Can be one of: read or write.

vulnerability_alerts: Option<Cow<'a, str>>

The level of permission to grant the access token to manage Dependabot alerts. Can be one of: read or write.

workflows: Option<Cow<'a, str>>

The level of permission to grant the access token to update GitHub Actions workflow files. Can be one of: write.

members: Option<Cow<'a, str>>

The level of permission to grant the access token for organization teams and members. Can be one of: read or write.

organization_administration: Option<Cow<'a, str>>

The level of permission to grant the access token to manage access to an organization. Can be one of: read or write.

organization_hooks: Option<Cow<'a, str>>

The level of permission to grant the access token to manage the post-receive hooks for an organization. Can be one of: read or write.

organization_plan: Option<Cow<'a, str>>

The level of permission to grant the access token for viewing an organization’s plan. Can be one of: read.

organization_projects: Option<Cow<'a, str>>

The level of permission to grant the access token to manage organization projects and projects beta (where available). Can be one of: read, write, or admin.

organization_packages: Option<Cow<'a, str>>

The level of permission to grant the access token for organization packages published to GitHub Packages. Can be one of: read or write.

organization_secrets: Option<Cow<'a, str>>

The level of permission to grant the access token to manage organization secrets. Can be one of: read or write.

organization_self_hosted_runners: Option<Cow<'a, str>>

The level of permission to grant the access token to view and manage GitHub Actions self-hosted runners available to an organization. Can be one of: read or write.

organization_user_blocking: Option<Cow<'a, str>>

The level of permission to grant the access token to view and manage users blocked by the organization. Can be one of: read or write.

team_discussions: Option<Cow<'a, str>>

The level of permission to grant the access token to manage team discussions and related comments. Can be one of: read or write.

additionalProperties: HashMap<Cow<'a, str>, Value>

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more