Skip to content

Commit 1241361

Browse files
authored
Merge pull request #1478 from php-api-clients/GitHub/from-1.1.4-b1df7aeeba72bb96f2ca61a7edd34136-from-1.1.4-b1df7aeeba72bb96f2ca61a7edd34136
2 parents 37ad4e9 + 2ec8886 commit 1241361

File tree

82 files changed

+4072
-585
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+4072
-585
lines changed

clients/GitHub/README.md

+140
Original file line numberDiff line numberDiff line change
@@ -1048,6 +1048,7 @@ $client->call('GET /enterprises/{enterprise}/dependabot/alerts', [
10481048
'severity' => 'generated',
10491049
'ecosystem' => 'generated',
10501050
'package' => 'generated',
1051+
'epss_percentage' => 'generated',
10511052
'scope' => 'generated',
10521053
'before' => 'generated',
10531054
'after' => 'generated',
@@ -1066,6 +1067,7 @@ $client->operations()->dependabot()->listAlertsForEnterprise( enterprise:
10661067
severity: 'generated',
10671068
ecosystem: 'generated',
10681069
package: 'generated',
1070+
epss_percentage: 'generated',
10691071
scope: 'generated',
10701072
before: 'generated',
10711073
after: 'generated',
@@ -5128,6 +5130,7 @@ $client->call('GET /orgs/{org}/dependabot/alerts', [
51285130
'severity' => 'generated',
51295131
'ecosystem' => 'generated',
51305132
'package' => 'generated',
5133+
'epss_percentage' => 'generated',
51315134
'scope' => 'generated',
51325135
'before' => 'generated',
51335136
'after' => 'generated',
@@ -5146,6 +5149,7 @@ $client->operations()->dependabot()->listAlertsForOrg( org: 'generated',
51465149
severity: 'generated',
51475150
ecosystem: 'generated',
51485151
package: 'generated',
5152+
epss_percentage: 'generated',
51495153
scope: 'generated',
51505154
before: 'generated',
51515155
after: 'generated',
@@ -8996,6 +9000,138 @@ $client->operations()->billing()->getSharedStorageBillingOrg( org: 'gener
89969000
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/billing/billing#get-shared-storage-billing-for-an-organization).
89979001

89989002

9003+
### hosted-compute/list-network-configurations-for-org
9004+
9005+
List hosted compute network configurations for an organization
9006+
9007+
Using the `call` method:
9008+
```php
9009+
$client->call('GET /orgs/{org}/settings/network-configurations', [
9010+
'org' => 'generated',
9011+
'per_page' => 8,
9012+
'page' => 1,
9013+
]);
9014+
```
9015+
9016+
Operations method:
9017+
```php
9018+
$client->operations()->hostedCompute()->listNetworkConfigurationsForOrg( org: 'generated',
9019+
per_page: 8,
9020+
page: 1,
9021+
);
9022+
```
9023+
9024+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization).
9025+
9026+
9027+
### hosted-compute/create-network-configuration-for-org
9028+
9029+
Create a hosted compute network configuration for an organization
9030+
9031+
Using the `call` method:
9032+
```php
9033+
$client->call('POST /orgs/{org}/settings/network-configurations', [
9034+
'org' => 'generated',
9035+
]);
9036+
```
9037+
9038+
Operations method:
9039+
```php
9040+
$client->operations()->hostedCompute()->createNetworkConfigurationForOrg( org: 'generated',
9041+
);
9042+
```
9043+
9044+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization).
9045+
9046+
9047+
### hosted-compute/get-network-configuration-for-org
9048+
9049+
Get a hosted compute network configuration for an organization
9050+
9051+
Using the `call` method:
9052+
```php
9053+
$client->call('GET /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
9054+
'org' => 'generated',
9055+
'network_configuration_id' => 'generated',
9056+
]);
9057+
```
9058+
9059+
Operations method:
9060+
```php
9061+
$client->operations()->hostedCompute()->getNetworkConfigurationForOrg( org: 'generated',
9062+
network_configuration_id: 'generated',
9063+
);
9064+
```
9065+
9066+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization).
9067+
9068+
9069+
### hosted-compute/delete-network-configuration-from-org
9070+
9071+
Delete a hosted compute network configuration from an organization
9072+
9073+
Using the `call` method:
9074+
```php
9075+
$client->call('DELETE /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
9076+
'org' => 'generated',
9077+
'network_configuration_id' => 'generated',
9078+
]);
9079+
```
9080+
9081+
Operations method:
9082+
```php
9083+
$client->operations()->hostedCompute()->deleteNetworkConfigurationFromOrg( org: 'generated',
9084+
network_configuration_id: 'generated',
9085+
);
9086+
```
9087+
9088+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization).
9089+
9090+
9091+
### hosted-compute/update-network-configuration-for-org
9092+
9093+
Update a hosted compute network configuration for an organization
9094+
9095+
Using the `call` method:
9096+
```php
9097+
$client->call('PATCH /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
9098+
'org' => 'generated',
9099+
'network_configuration_id' => 'generated',
9100+
]);
9101+
```
9102+
9103+
Operations method:
9104+
```php
9105+
$client->operations()->hostedCompute()->updateNetworkConfigurationForOrg( org: 'generated',
9106+
network_configuration_id: 'generated',
9107+
);
9108+
```
9109+
9110+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization).
9111+
9112+
9113+
### hosted-compute/get-network-settings-for-org
9114+
9115+
Get a hosted compute network settings resource for an organization
9116+
9117+
Using the `call` method:
9118+
```php
9119+
$client->call('GET /orgs/{org}/settings/network-settings/{network_settings_id}', [
9120+
'org' => 'generated',
9121+
'network_settings_id' => 'generated',
9122+
]);
9123+
```
9124+
9125+
Operations method:
9126+
```php
9127+
$client->operations()->hostedCompute()->getNetworkSettingsForOrg( org: 'generated',
9128+
network_settings_id: 'generated',
9129+
);
9130+
```
9131+
9132+
You can find more about this operation over at the [API method documentation](https://docs.github.com/rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization).
9133+
9134+
89999135
### copilot/copilot-metrics-for-team
90009136

90019137
Get Copilot metrics for a team
@@ -16213,6 +16349,7 @@ $client->call('GET /repos/{owner}/{repo}/dependabot/alerts', [
1621316349
'ecosystem' => 'generated',
1621416350
'package' => 'generated',
1621516351
'manifest' => 'generated',
16352+
'epss_percentage' => 'generated',
1621616353
'scope' => 'generated',
1621716354
'before' => 'generated',
1621816355
'after' => 'generated',
@@ -16234,6 +16371,7 @@ $client->operations()->dependabot()->listAlertsForRepo( owner: 'generated
1623416371
ecosystem: 'generated',
1623516372
package: 'generated',
1623616373
manifest: 'generated',
16374+
epss_percentage: 'generated',
1623716375
scope: 'generated',
1623816376
before: 'generated',
1623916377
after: 'generated',
@@ -16263,6 +16401,7 @@ $client->call('LIST /repos/{owner}/{repo}/dependabot/alerts', [
1626316401
'ecosystem' => 'generated',
1626416402
'package' => 'generated',
1626516403
'manifest' => 'generated',
16404+
'epss_percentage' => 'generated',
1626616405
'scope' => 'generated',
1626716406
'before' => 'generated',
1626816407
'after' => 'generated',
@@ -16284,6 +16423,7 @@ $client->operations()->dependabot()->listAlertsForRepoListing( owner: 'ge
1628416423
ecosystem: 'generated',
1628516424
package: 'generated',
1628616425
manifest: 'generated',
16426+
epss_percentage: 'generated',
1628716427
scope: 'generated',
1628816428
before: 'generated',
1628916429
after: 'generated',

0 commit comments

Comments
 (0)