Skip to content

Commit 4f1f193

Browse files
authored
Merge pull request #1479 from php-api-clients/GitHubEnterpriseCloud/from-1.1.4-43923ad35cb20bfc459c3dc3c0c3487f-from-1.1.4-43923ad35cb20bfc459c3dc3c0c3487f
2 parents 1241361 + 7929928 commit 4f1f193

File tree

121 files changed

+6925
-628
lines changed

Some content is hidden

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

121 files changed

+6925
-628
lines changed

clients/GitHubEnterpriseCloud/README.md

Lines changed: 272 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2626,6 +2626,7 @@ $client->call('GET /enterprises/{enterprise}/dependabot/alerts', [
26262626
'severity' => 'generated',
26272627
'ecosystem' => 'generated',
26282628
'package' => 'generated',
2629+
'epss_percentage' => 'generated',
26292630
'scope' => 'generated',
26302631
'before' => 'generated',
26312632
'after' => 'generated',
@@ -2644,6 +2645,7 @@ $client->operations()->dependabot()->listAlertsForEnterprise( enterprise:
26442645
severity: 'generated',
26452646
ecosystem: 'generated',
26462647
package: 'generated',
2648+
epss_percentage: 'generated',
26472649
scope: 'generated',
26482650
before: 'generated',
26492651
after: 'generated',
@@ -2678,6 +2680,138 @@ $client->operations()->enterpriseAdmin()->getLicenseSyncStatus( enterpris
26782680
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/license#get-a-license-sync-status).
26792681

26802682

2683+
### hosted-compute/list-network-configurations-for-enterprise
2684+
2685+
List hosted compute network configurations for an enterprise
2686+
2687+
Using the `call` method:
2688+
```php
2689+
$client->call('GET /enterprises/{enterprise}/network-configurations', [
2690+
'enterprise' => 'generated',
2691+
'per_page' => 8,
2692+
'page' => 1,
2693+
]);
2694+
```
2695+
2696+
Operations method:
2697+
```php
2698+
$client->operations()->hostedCompute()->listNetworkConfigurationsForEnterprise( enterprise: 'generated',
2699+
per_page: 8,
2700+
page: 1,
2701+
);
2702+
```
2703+
2704+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#list-hosted-compute-network-configurations-for-an-enterprise).
2705+
2706+
2707+
### hosted-compute/create-network-configuration-for-enterprise
2708+
2709+
Create a hosted compute network configuration for an enterprise
2710+
2711+
Using the `call` method:
2712+
```php
2713+
$client->call('POST /enterprises/{enterprise}/network-configurations', [
2714+
'enterprise' => 'generated',
2715+
]);
2716+
```
2717+
2718+
Operations method:
2719+
```php
2720+
$client->operations()->hostedCompute()->createNetworkConfigurationForEnterprise( enterprise: 'generated',
2721+
);
2722+
```
2723+
2724+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#create-a-hosted-compute-network-configuration-for-an-enterprise).
2725+
2726+
2727+
### hosted-compute/get-network-configuration-for-enterprise
2728+
2729+
Get a hosted compute network configuration for an enterprise
2730+
2731+
Using the `call` method:
2732+
```php
2733+
$client->call('GET /enterprises/{enterprise}/network-configurations/{network_configuration_id}', [
2734+
'enterprise' => 'generated',
2735+
'network_configuration_id' => 'generated',
2736+
]);
2737+
```
2738+
2739+
Operations method:
2740+
```php
2741+
$client->operations()->hostedCompute()->getNetworkConfigurationForEnterprise( enterprise: 'generated',
2742+
network_configuration_id: 'generated',
2743+
);
2744+
```
2745+
2746+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-configuration-for-an-enterprise).
2747+
2748+
2749+
### hosted-compute/delete-network-configuration-from-enterprise
2750+
2751+
Delete a hosted compute network configuration from an enterprise
2752+
2753+
Using the `call` method:
2754+
```php
2755+
$client->call('DELETE /enterprises/{enterprise}/network-configurations/{network_configuration_id}', [
2756+
'enterprise' => 'generated',
2757+
'network_configuration_id' => 'generated',
2758+
]);
2759+
```
2760+
2761+
Operations method:
2762+
```php
2763+
$client->operations()->hostedCompute()->deleteNetworkConfigurationFromEnterprise( enterprise: 'generated',
2764+
network_configuration_id: 'generated',
2765+
);
2766+
```
2767+
2768+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#delete-a-hosted-compute-network-configuration-from-an-enterprise).
2769+
2770+
2771+
### hosted-compute/update-network-configuration-for-enterprise
2772+
2773+
Update a hosted compute network configuration for an enterprise
2774+
2775+
Using the `call` method:
2776+
```php
2777+
$client->call('PATCH /enterprises/{enterprise}/network-configurations/{network_configuration_id}', [
2778+
'enterprise' => 'generated',
2779+
'network_configuration_id' => 'generated',
2780+
]);
2781+
```
2782+
2783+
Operations method:
2784+
```php
2785+
$client->operations()->hostedCompute()->updateNetworkConfigurationForEnterprise( enterprise: 'generated',
2786+
network_configuration_id: 'generated',
2787+
);
2788+
```
2789+
2790+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#update-a-hosted-compute-network-configuration-for-an-enterprise).
2791+
2792+
2793+
### hosted-compute/get-network-settings-for-enterprise
2794+
2795+
Get a hosted compute network settings resource for an enterprise
2796+
2797+
Using the `call` method:
2798+
```php
2799+
$client->call('GET /enterprises/{enterprise}/network-settings/{network_settings_id}', [
2800+
'enterprise' => 'generated',
2801+
'network_settings_id' => 'generated',
2802+
]);
2803+
```
2804+
2805+
Operations method:
2806+
```php
2807+
$client->operations()->hostedCompute()->getNetworkSettingsForEnterprise( enterprise: 'generated',
2808+
network_settings_id: 'generated',
2809+
);
2810+
```
2811+
2812+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise).
2813+
2814+
26812815
### enterprise-admin/get-enterprise-custom-properties
26822816

26832817
Get custom properties for an enterprise
@@ -7686,6 +7820,7 @@ $client->call('GET /orgs/{org}/dependabot/alerts', [
76867820
'severity' => 'generated',
76877821
'ecosystem' => 'generated',
76887822
'package' => 'generated',
7823+
'epss_percentage' => 'generated',
76897824
'scope' => 'generated',
76907825
'before' => 'generated',
76917826
'after' => 'generated',
@@ -7704,6 +7839,7 @@ $client->operations()->dependabot()->listAlertsForOrg( org: 'generated',
77047839
severity: 'generated',
77057840
ecosystem: 'generated',
77067841
package: 'generated',
7842+
epss_percentage: 'generated',
77077843
scope: 'generated',
77087844
before: 'generated',
77097845
after: 'generated',
@@ -11754,6 +11890,138 @@ $client->operations()->billing()->getSharedStorageBillingOrg( org: 'gener
1175411890
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-an-organization).
1175511891

1175611892

11893+
### hosted-compute/list-network-configurations-for-org
11894+
11895+
List hosted compute network configurations for an organization
11896+
11897+
Using the `call` method:
11898+
```php
11899+
$client->call('GET /orgs/{org}/settings/network-configurations', [
11900+
'org' => 'generated',
11901+
'per_page' => 8,
11902+
'page' => 1,
11903+
]);
11904+
```
11905+
11906+
Operations method:
11907+
```php
11908+
$client->operations()->hostedCompute()->listNetworkConfigurationsForOrg( org: 'generated',
11909+
per_page: 8,
11910+
page: 1,
11911+
);
11912+
```
11913+
11914+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#list-hosted-compute-network-configurations-for-an-organization).
11915+
11916+
11917+
### hosted-compute/create-network-configuration-for-org
11918+
11919+
Create a hosted compute network configuration for an organization
11920+
11921+
Using the `call` method:
11922+
```php
11923+
$client->call('POST /orgs/{org}/settings/network-configurations', [
11924+
'org' => 'generated',
11925+
]);
11926+
```
11927+
11928+
Operations method:
11929+
```php
11930+
$client->operations()->hostedCompute()->createNetworkConfigurationForOrg( org: 'generated',
11931+
);
11932+
```
11933+
11934+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#create-a-hosted-compute-network-configuration-for-an-organization).
11935+
11936+
11937+
### hosted-compute/get-network-configuration-for-org
11938+
11939+
Get a hosted compute network configuration for an organization
11940+
11941+
Using the `call` method:
11942+
```php
11943+
$client->call('GET /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
11944+
'org' => 'generated',
11945+
'network_configuration_id' => 'generated',
11946+
]);
11947+
```
11948+
11949+
Operations method:
11950+
```php
11951+
$client->operations()->hostedCompute()->getNetworkConfigurationForOrg( org: 'generated',
11952+
network_configuration_id: 'generated',
11953+
);
11954+
```
11955+
11956+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization).
11957+
11958+
11959+
### hosted-compute/delete-network-configuration-from-org
11960+
11961+
Delete a hosted compute network configuration from an organization
11962+
11963+
Using the `call` method:
11964+
```php
11965+
$client->call('DELETE /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
11966+
'org' => 'generated',
11967+
'network_configuration_id' => 'generated',
11968+
]);
11969+
```
11970+
11971+
Operations method:
11972+
```php
11973+
$client->operations()->hostedCompute()->deleteNetworkConfigurationFromOrg( org: 'generated',
11974+
network_configuration_id: 'generated',
11975+
);
11976+
```
11977+
11978+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization).
11979+
11980+
11981+
### hosted-compute/update-network-configuration-for-org
11982+
11983+
Update a hosted compute network configuration for an organization
11984+
11985+
Using the `call` method:
11986+
```php
11987+
$client->call('PATCH /orgs/{org}/settings/network-configurations/{network_configuration_id}', [
11988+
'org' => 'generated',
11989+
'network_configuration_id' => 'generated',
11990+
]);
11991+
```
11992+
11993+
Operations method:
11994+
```php
11995+
$client->operations()->hostedCompute()->updateNetworkConfigurationForOrg( org: 'generated',
11996+
network_configuration_id: 'generated',
11997+
);
11998+
```
11999+
12000+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization).
12001+
12002+
12003+
### hosted-compute/get-network-settings-for-org
12004+
12005+
Get a hosted compute network settings resource for an organization
12006+
12007+
Using the `call` method:
12008+
```php
12009+
$client->call('GET /orgs/{org}/settings/network-settings/{network_settings_id}', [
12010+
'org' => 'generated',
12011+
'network_settings_id' => 'generated',
12012+
]);
12013+
```
12014+
12015+
Operations method:
12016+
```php
12017+
$client->operations()->hostedCompute()->getNetworkSettingsForOrg( org: 'generated',
12018+
network_settings_id: 'generated',
12019+
);
12020+
```
12021+
12022+
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/settings/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization).
12023+
12024+
1175712025
### teams/list-idp-groups-for-org
1175812026

1175912027
List IdP groups for an organization
@@ -19199,6 +19467,7 @@ $client->call('GET /repos/{owner}/{repo}/dependabot/alerts', [
1919919467
'ecosystem' => 'generated',
1920019468
'package' => 'generated',
1920119469
'manifest' => 'generated',
19470+
'epss_percentage' => 'generated',
1920219471
'scope' => 'generated',
1920319472
'before' => 'generated',
1920419473
'after' => 'generated',
@@ -19220,6 +19489,7 @@ $client->operations()->dependabot()->listAlertsForRepo( owner: 'generated
1922019489
ecosystem: 'generated',
1922119490
package: 'generated',
1922219491
manifest: 'generated',
19492+
epss_percentage: 'generated',
1922319493
scope: 'generated',
1922419494
before: 'generated',
1922519495
after: 'generated',
@@ -19249,6 +19519,7 @@ $client->call('LIST /repos/{owner}/{repo}/dependabot/alerts', [
1924919519
'ecosystem' => 'generated',
1925019520
'package' => 'generated',
1925119521
'manifest' => 'generated',
19522+
'epss_percentage' => 'generated',
1925219523
'scope' => 'generated',
1925319524
'before' => 'generated',
1925419525
'after' => 'generated',
@@ -19270,6 +19541,7 @@ $client->operations()->dependabot()->listAlertsForRepoListing( owner: 'ge
1927019541
ecosystem: 'generated',
1927119542
package: 'generated',
1927219543
manifest: 'generated',
19544+
epss_percentage: 'generated',
1927319545
scope: 'generated',
1927419546
before: 'generated',
1927519547
after: 'generated',

0 commit comments

Comments
 (0)