File tree Expand file tree Collapse file tree 5 files changed +24
-13
lines changed
clients/GitHubEnterprise-3.13
CreateOrUpdateOrgSecret/Request
CreateOrUpdateRepoSecret/Request
etc/specs/GitHubEnterprise-3.13 Expand file tree Collapse file tree 5 files changed +24
-13
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "specHash": "71747b16e45e0f2a54b8e1ca561b75d5 ",
2
+ "specHash": "1e4171c4fa0a2799e195f6bc1881cf84 ",
3
3
"generatedFiles": {
4
4
"files": [
5
5
{
13816
13816
},
13817
13817
{
13818
13818
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/GhesLicenseInfo.php",
13819
- "hash": "11f25056840082f928f2981476249d8f "
13819
+ "hash": "77c68faa550ce195d57556a97655794f "
13820
13820
},
13821
13821
{
13822
13822
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/GhesUploadLicenseRequest.php",
24964
24964
},
24965
24965
{
24966
24966
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateOrgSecret\/Request\/ApplicationJson.php",
24967
- "hash": "0a552931448e86ef390118859bb6dea5 "
24967
+ "hash": "e7d3d8a1cfe4be25e3e27b4d0db88ccc "
24968
24968
},
24969
24969
{
24970
24970
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietD6BA1ED7\/Tiet9B0C5C34\/TietD5FB7F6C\/Tiet8AB8BB18.php",
25540
25540
},
25541
25541
{
25542
25542
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/Actions\/CreateOrUpdateRepoSecret\/Request\/ApplicationJson.php",
25543
- "hash": "639ecdb585ccdb4b155073cfcf86a555 "
25543
+ "hash": "de48413601fba051e9ef62c628a42e2f "
25544
25544
},
25545
25545
{
25546
25546
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Schema\/AliasAbstract\/TietFE7865BF\/Tiet5F7F1DFF\/TietE50994AE\/TietB8600E0B.php",
27212
27212
},
27213
27213
{
27214
27214
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Operation\/Dependabot.php",
27215
- "hash": "41f38bbe9a82db393bb4c578316bf591 "
27215
+ "hash": "edac74857f10a9a5ef2430a8051cd208 "
27216
27216
},
27217
27217
{
27218
27218
"name": ".\/clients\/GitHubEnterprise-3.13\/etc\/..\/\/src\/\/Operation\/Billing.php",
Original file line number Diff line number Diff line change 10
10
{
11
11
public const SCHEMA_JSON = '{
12
12
"required": [
13
+ "encrypted_value",
14
+ "key_id",
13
15
"visibility"
14
16
],
15
17
"type": "object",
60
62
* selectedRepositoryIds: An array of repository ids that can access the organization secret. You can only provide a list of repository ids when the `visibility` is set to `selected`. You can manage the list of selected repositories using the [List selected repositories for an organization secret](https://docs.github.com/[email protected] /rest/actions/secrets#list-selected-repositories-for-an-organization-secret), [Set selected repositories for an organization secret](https://docs.github.com/[email protected] /rest/actions/secrets#set-selected-repositories-for-an-organization-secret), and [Remove selected repository from an organization secret](https://docs.github.com/[email protected] /rest/actions/secrets#remove-selected-repository-from-an-organization-secret) endpoints.
61
63
*/
62
64
public function __construct (#[MapFrom('encrypted_value ' )]
63
- public string | null $ encryptedValue , #[MapFrom('key_id ' )]
64
- public string | null $ keyId , public string $ visibility , #[MapFrom('selected_repository_ids ' )]
65
+ public string $ encryptedValue , #[MapFrom('key_id ' )]
66
+ public string $ keyId , public string $ visibility , #[MapFrom('selected_repository_ids ' )]
65
67
public array |null $ selectedRepositoryIds ,)
66
68
{
67
69
}
Original file line number Diff line number Diff line change 9
9
final readonly class ApplicationJson
10
10
{
11
11
public const SCHEMA_JSON = '{
12
+ "required": [
13
+ "encrypted_value",
14
+ "key_id"
15
+ ],
12
16
"type": "object",
13
17
"properties": {
14
18
"encrypted_value": {
34
38
* keyId: ID of the key you used to encrypt the secret.
35
39
*/
36
40
public function __construct (#[MapFrom('encrypted_value ' )]
37
- public string | null $ encryptedValue , #[MapFrom('key_id ' )]
38
- public string | null $ keyId ,)
41
+ public string $ encryptedValue , #[MapFrom('key_id ' )]
42
+ public string $ keyId ,)
39
43
{
40
44
}
41
45
}
Original file line number Diff line number Diff line change 27
27
},
28
28
"croquetSupport": {
29
29
"type": "boolean",
30
- "description": "Whether the Github Connect feature is enabled."
30
+ "description": "Whether the GitHub Connect feature is enabled."
31
31
},
32
32
"customTerms": {
33
33
"type": "boolean",
123
123
* advancedSecuritySeats: If the GitHub Advanced Security feature is enabled, the seat count.
124
124
* clusterSupport: Whether the cluster support feature is enabled.
125
125
* company: The company under which the license is issued.
126
- * croquetSupport: Whether the Github Connect feature is enabled.
126
+ * croquetSupport: Whether the GitHub Connect feature is enabled.
127
127
* customTerms: Whether this license is issued under custom terms.
128
128
* evaluation: Wheter this license is issued as an evaluation license.
129
129
* expireAt: The expiration date of the license.
Original file line number Diff line number Diff line change @@ -10399,6 +10399,8 @@ paths:
10399
10399
items:
10400
10400
type: integer
10401
10401
required:
10402
+ - encrypted_value
10403
+ - key_id
10402
10404
- visibility
10403
10405
examples:
10404
10406
default:
@@ -21346,6 +21348,9 @@ paths:
21346
21348
key_id:
21347
21349
type: string
21348
21350
description: ID of the key you used to encrypt the secret.
21351
+ required:
21352
+ - encrypted_value
21353
+ - key_id
21349
21354
examples:
21350
21355
default:
21351
21356
value:
@@ -39378,7 +39383,7 @@ paths:
39378
39383
description: Not Found if repository is not enabled with vulnerability alerts
39379
39384
x-github:
39380
39385
githubCloudOnly: false
39381
- enabledForGitHubApps: false
39386
+ enabledForGitHubApps: true
39382
39387
category: repos
39383
39388
subcategory: repos
39384
39389
put:
@@ -71457,7 +71462,7 @@ components:
71457
71462
description: The company under which the license is issued.
71458
71463
type: string
71459
71464
croquetSupport:
71460
- description: Whether the Github Connect feature is enabled.
71465
+ description: Whether the GitHub Connect feature is enabled.
71461
71466
type: boolean
71462
71467
customTerms:
71463
71468
description: Whether this license is issued under custom terms.
You can’t perform that action at this time.
0 commit comments