agent-claw: automated task changes
This commit is contained in:
30
cdk/node_modules/aws-cdk-lib/aws-codecommit/lib/codecommit-grants.generated.d.ts
generated
vendored
Normal file
30
cdk/node_modules/aws-cdk-lib/aws-codecommit/lib/codecommit-grants.generated.d.ts
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
import * as codecommit from "./codecommit.generated";
|
||||
import * as iam from "../../aws-iam";
|
||||
import * as cdk from "../../core/lib";
|
||||
/**
|
||||
* Collection of grant methods for a IRepositoryRef
|
||||
*/
|
||||
export declare class RepositoryGrants {
|
||||
/**
|
||||
* Creates grants for RepositoryGrants
|
||||
*/
|
||||
static fromRepository(resource: codecommit.IRepositoryRef): RepositoryGrants;
|
||||
protected readonly resource: codecommit.IRepositoryRef;
|
||||
private constructor();
|
||||
/**
|
||||
* Grant the given identity custom permissions
|
||||
*/
|
||||
actions(grantee: iam.IGrantable, actions: Array<string>, options?: cdk.PermissionsOptions): iam.Grant;
|
||||
/**
|
||||
* Grants pull permissions
|
||||
*/
|
||||
pull(grantee: iam.IGrantable): iam.Grant;
|
||||
/**
|
||||
* Grants pullPush permissions
|
||||
*/
|
||||
pullPush(grantee: iam.IGrantable): iam.Grant;
|
||||
/**
|
||||
* Grants read permissions
|
||||
*/
|
||||
read(grantee: iam.IGrantable): iam.Grant;
|
||||
}
|
||||
Reference in New Issue
Block a user