Skip to content

[GitHub] Update to 1.1.4-9cd6c8e7bead01c0c83af26875ff027b from 1.1.4-d8074bd9e0c6a1faac9d78d77016fd5e #1512

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
158 changes: 158 additions & 0 deletions clients/GitHub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8756,6 +8756,82 @@ $client->operations()->repos()->deleteOrgRuleset( org: 'generated',
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/orgs/rules#delete-an-organization-repository-ruleset).


### orgs/get-org-ruleset-history

Get organization ruleset history

Using the `call` method:
```php
$client->call('GET /orgs/{org}/rulesets/{ruleset_id}/history', [
'org' => 'generated',
'ruleset_id' => 10,
'per_page' => 8,
'page' => 1,
]);
```

Operations method:
```php
$client->operations()->orgs()->getOrgRulesetHistory( org: 'generated',
ruleset_id: 10,
per_page: 8,
page: 1,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history).


### orgs/get-org-ruleset-history

Get organization ruleset history

Using the `call` method:
```php
$client->call('LIST /orgs/{org}/rulesets/{ruleset_id}/history', [
'org' => 'generated',
'ruleset_id' => 10,
'per_page' => 8,
'page' => 1,
]);
```

Operations method:
```php
$client->operations()->orgs()->getOrgRulesetHistoryListing( org: 'generated',
ruleset_id: 10,
per_page: 8,
page: 1,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/orgs/rules#get-organization-ruleset-history).


### orgs/get-org-ruleset-version

Get organization ruleset version

Using the `call` method:
```php
$client->call('GET /orgs/{org}/rulesets/{ruleset_id}/history/{version_id}', [
'org' => 'generated',
'ruleset_id' => 10,
'version_id' => 10,
]);
```

Operations method:
```php
$client->operations()->orgs()->getOrgRulesetVersion( org: 'generated',
ruleset_id: 10,
version_id: 10,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/orgs/rules#get-organization-ruleset-version).


### secret-scanning/list-alerts-for-org

List secret scanning alerts for an organization
Expand Down Expand Up @@ -22913,6 +22989,88 @@ $client->operations()->repos()->deleteRepoRuleset( owner: 'generated',
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/rules#delete-a-repository-ruleset).


### repos/get-repo-ruleset-history

Get repository ruleset history

Using the `call` method:
```php
$client->call('GET /repos/{owner}/{repo}/rulesets/{ruleset_id}/history', [
'owner' => 'generated',
'repo' => 'generated',
'ruleset_id' => 10,
'per_page' => 8,
'page' => 1,
]);
```

Operations method:
```php
$client->operations()->repos()->getRepoRulesetHistory( owner: 'generated',
repo: 'generated',
ruleset_id: 10,
per_page: 8,
page: 1,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/rules#get-repository-ruleset-history).


### repos/get-repo-ruleset-history

Get repository ruleset history

Using the `call` method:
```php
$client->call('LIST /repos/{owner}/{repo}/rulesets/{ruleset_id}/history', [
'owner' => 'generated',
'repo' => 'generated',
'ruleset_id' => 10,
'per_page' => 8,
'page' => 1,
]);
```

Operations method:
```php
$client->operations()->repos()->getRepoRulesetHistoryListing( owner: 'generated',
repo: 'generated',
ruleset_id: 10,
per_page: 8,
page: 1,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/rules#get-repository-ruleset-history).


### repos/get-repo-ruleset-version

Get repository ruleset version

Using the `call` method:
```php
$client->call('GET /repos/{owner}/{repo}/rulesets/{ruleset_id}/history/{version_id}', [
'owner' => 'generated',
'repo' => 'generated',
'ruleset_id' => 10,
'version_id' => 10,
]);
```

Operations method:
```php
$client->operations()->repos()->getRepoRulesetVersion( owner: 'generated',
repo: 'generated',
ruleset_id: 10,
version_id: 10,
);
```

You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/repos/rules#get-repository-ruleset-version).


### secret-scanning/list-alerts-for-repo

List secret scanning alerts for a repository
Expand Down
Loading
Loading