Skip to content
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
140 changes: 140 additions & 0 deletions clients/GitHub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1048,6 +1048,7 @@ $client->call('GET /enterprises/{enterprise}/dependabot/alerts', [
'severity' => 'generated',
'ecosystem' => 'generated',
'package' => 'generated',
'epss_percentage' => 'generated',
'scope' => 'generated',
'before' => 'generated',
'after' => 'generated',
Expand All @@ -1066,6 +1067,7 @@ $client->operations()->dependabot()->listAlertsForEnterprise( enterprise:
severity: 'generated',
ecosystem: 'generated',
package: 'generated',
epss_percentage: 'generated',
scope: 'generated',
before: 'generated',
after: 'generated',
Expand Down Expand Up @@ -5128,6 +5130,7 @@ $client->call('GET /orgs/{org}/dependabot/alerts', [
'severity' => 'generated',
'ecosystem' => 'generated',
'package' => 'generated',
'epss_percentage' => 'generated',
'scope' => 'generated',
'before' => 'generated',
'after' => 'generated',
Expand All @@ -5146,6 +5149,7 @@ $client->operations()->dependabot()->listAlertsForOrg( org: 'generated',
severity: 'generated',
ecosystem: 'generated',
package: 'generated',
epss_percentage: 'generated',
scope: 'generated',
before: 'generated',
after: 'generated',
Expand Down Expand Up @@ -8996,6 +9000,138 @@ $client->operations()->billing()->getSharedStorageBillingOrg( org: 'gener
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).


### hosted-compute/list-network-configurations-for-org

List hosted compute network configurations for an organization

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

Operations method:
```php
$client->operations()->hostedCompute()->listNetworkConfigurationsForOrg( org: 'generated',
per_page: 8,
page: 1,
);
```

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).


### hosted-compute/create-network-configuration-for-org

Create a hosted compute network configuration for an organization

Using the `call` method:
```php
$client->call('POST /orgs/{org}/settings/network-configurations', [
'org' => 'generated',
]);
```

Operations method:
```php
$client->operations()->hostedCompute()->createNetworkConfigurationForOrg( org: 'generated',
);
```

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).


### hosted-compute/get-network-configuration-for-org

Get a hosted compute network configuration for an organization

Using the `call` method:
```php
$client->call('GET /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
'org' => 'generated',
'network_configuration_id' => 'generated',
]);
```

Operations method:
```php
$client->operations()->hostedCompute()->getNetworkConfigurationForOrg( org: 'generated',
network_configuration_id: 'generated',
);
```

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).


### hosted-compute/delete-network-configuration-from-org

Delete a hosted compute network configuration from an organization

Using the `call` method:
```php
$client->call('DELETE /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
'org' => 'generated',
'network_configuration_id' => 'generated',
]);
```

Operations method:
```php
$client->operations()->hostedCompute()->deleteNetworkConfigurationFromOrg( org: 'generated',
network_configuration_id: 'generated',
);
```

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).


### hosted-compute/update-network-configuration-for-org

Update a hosted compute network configuration for an organization

Using the `call` method:
```php
$client->call('PATCH /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
'org' => 'generated',
'network_configuration_id' => 'generated',
]);
```

Operations method:
```php
$client->operations()->hostedCompute()->updateNetworkConfigurationForOrg( org: 'generated',
network_configuration_id: 'generated',
);
```

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).


### hosted-compute/get-network-settings-for-org

Get a hosted compute network settings resource for an organization

Using the `call` method:
```php
$client->call('GET /orgs/{org}/settings/network-settings/{network_settings_id}', [
'org' => 'generated',
'network_settings_id' => 'generated',
]);
```

Operations method:
```php
$client->operations()->hostedCompute()->getNetworkSettingsForOrg( org: 'generated',
network_settings_id: 'generated',
);
```

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).


### copilot/copilot-metrics-for-team

Get Copilot metrics for a team
Expand Down Expand Up @@ -16213,6 +16349,7 @@ $client->call('GET /repos/{owner}/{repo}/dependabot/alerts', [
'ecosystem' => 'generated',
'package' => 'generated',
'manifest' => 'generated',
'epss_percentage' => 'generated',
'scope' => 'generated',
'before' => 'generated',
'after' => 'generated',
Expand All @@ -16234,6 +16371,7 @@ $client->operations()->dependabot()->listAlertsForRepo( owner: 'generated
ecosystem: 'generated',
package: 'generated',
manifest: 'generated',
epss_percentage: 'generated',
scope: 'generated',
before: 'generated',
after: 'generated',
Expand Down Expand Up @@ -16263,6 +16401,7 @@ $client->call('LIST /repos/{owner}/{repo}/dependabot/alerts', [
'ecosystem' => 'generated',
'package' => 'generated',
'manifest' => 'generated',
'epss_percentage' => 'generated',
'scope' => 'generated',
'before' => 'generated',
'after' => 'generated',
Expand All @@ -16284,6 +16423,7 @@ $client->operations()->dependabot()->listAlertsForRepoListing( owner: 'ge
ecosystem: 'generated',
package: 'generated',
manifest: 'generated',
epss_percentage: 'generated',
scope: 'generated',
before: 'generated',
after: 'generated',
Expand Down
Loading
Loading