Commit 8b030bb5 authored by Nugine's avatar Nugine
Browse files

codegen: ops: op names

parent c89a68bc
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -116,6 +116,15 @@ pub fn codegen(ops: &Operations, rust_types: &RustTypes) {
    glines![
        "//! Auto generated by `codegen/src/ops.rs`"
        ""
    ];

    for op in ops.values() {
        g!("// {}", op.name);
    }
    g!();

    glines![
        ""
        "#![allow(clippy::declare_interior_mutable_const)]"
        "#![allow(clippy::borrow_interior_mutable_const)]"
        "#![allow(clippy::needless_pass_by_value)]"
+94 −0
Original line number Diff line number Diff line
//! Auto generated by `codegen/src/ops.rs`

// AbortMultipartUpload
// CompleteMultipartUpload
// CopyObject
// CreateBucket
// CreateMultipartUpload
// DeleteBucket
// DeleteBucketAnalyticsConfiguration
// DeleteBucketCors
// DeleteBucketEncryption
// DeleteBucketIntelligentTieringConfiguration
// DeleteBucketInventoryConfiguration
// DeleteBucketLifecycle
// DeleteBucketMetricsConfiguration
// DeleteBucketOwnershipControls
// DeleteBucketPolicy
// DeleteBucketReplication
// DeleteBucketTagging
// DeleteBucketWebsite
// DeleteObject
// DeleteObjectTagging
// DeleteObjects
// DeletePublicAccessBlock
// GetBucketAccelerateConfiguration
// GetBucketAcl
// GetBucketAnalyticsConfiguration
// GetBucketCors
// GetBucketEncryption
// GetBucketIntelligentTieringConfiguration
// GetBucketInventoryConfiguration
// GetBucketLifecycleConfiguration
// GetBucketLocation
// GetBucketLogging
// GetBucketMetricsConfiguration
// GetBucketNotificationConfiguration
// GetBucketOwnershipControls
// GetBucketPolicy
// GetBucketPolicyStatus
// GetBucketReplication
// GetBucketRequestPayment
// GetBucketTagging
// GetBucketVersioning
// GetBucketWebsite
// GetObject
// GetObjectAcl
// GetObjectAttributes
// GetObjectLegalHold
// GetObjectLockConfiguration
// GetObjectRetention
// GetObjectTagging
// GetObjectTorrent
// GetPublicAccessBlock
// HeadBucket
// HeadObject
// ListBucketAnalyticsConfigurations
// ListBucketIntelligentTieringConfigurations
// ListBucketInventoryConfigurations
// ListBucketMetricsConfigurations
// ListBuckets
// ListMultipartUploads
// ListObjectVersions
// ListObjects
// ListObjectsV2
// ListParts
// PutBucketAccelerateConfiguration
// PutBucketAcl
// PutBucketAnalyticsConfiguration
// PutBucketCors
// PutBucketEncryption
// PutBucketIntelligentTieringConfiguration
// PutBucketInventoryConfiguration
// PutBucketLifecycleConfiguration
// PutBucketLogging
// PutBucketMetricsConfiguration
// PutBucketNotificationConfiguration
// PutBucketOwnershipControls
// PutBucketPolicy
// PutBucketReplication
// PutBucketRequestPayment
// PutBucketTagging
// PutBucketVersioning
// PutBucketWebsite
// PutObject
// PutObjectAcl
// PutObjectLegalHold
// PutObjectLockConfiguration
// PutObjectRetention
// PutObjectTagging
// PutPublicAccessBlock
// RestoreObject
// SelectObjectContent
// UploadPart
// UploadPartCopy
// WriteGetObjectResponse

#![allow(clippy::declare_interior_mutable_const)]
#![allow(clippy::borrow_interior_mutable_const)]
#![allow(clippy::needless_pass_by_value)]