...

Source file src/cloud.google.com/go/kms/inventory/apiv1/key_dashboard_client_example_test.go

Documentation: cloud.google.com/go/kms/inventory/apiv1

     1  // Copyright 2024 Google LLC
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     https://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  // Code generated by protoc-gen-go_gapic. DO NOT EDIT.
    16  
    17  package inventory_test
    18  
    19  import (
    20  	"context"
    21  
    22  	inventory "cloud.google.com/go/kms/inventory/apiv1"
    23  	inventorypb "cloud.google.com/go/kms/inventory/apiv1/inventorypb"
    24  	"google.golang.org/api/iterator"
    25  )
    26  
    27  func ExampleNewKeyDashboardClient() {
    28  	ctx := context.Background()
    29  	// This snippet has been automatically generated and should be regarded as a code template only.
    30  	// It will require modifications to work:
    31  	// - It may require correct/in-range values for request initialization.
    32  	// - It may require specifying regional endpoints when creating the service client as shown in:
    33  	//   https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options
    34  	c, err := inventory.NewKeyDashboardClient(ctx)
    35  	if err != nil {
    36  		// TODO: Handle error.
    37  	}
    38  	defer c.Close()
    39  
    40  	// TODO: Use client.
    41  	_ = c
    42  }
    43  
    44  func ExampleNewKeyDashboardRESTClient() {
    45  	ctx := context.Background()
    46  	// This snippet has been automatically generated and should be regarded as a code template only.
    47  	// It will require modifications to work:
    48  	// - It may require correct/in-range values for request initialization.
    49  	// - It may require specifying regional endpoints when creating the service client as shown in:
    50  	//   https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options
    51  	c, err := inventory.NewKeyDashboardRESTClient(ctx)
    52  	if err != nil {
    53  		// TODO: Handle error.
    54  	}
    55  	defer c.Close()
    56  
    57  	// TODO: Use client.
    58  	_ = c
    59  }
    60  
    61  func ExampleKeyDashboardClient_ListCryptoKeys() {
    62  	ctx := context.Background()
    63  	// This snippet has been automatically generated and should be regarded as a code template only.
    64  	// It will require modifications to work:
    65  	// - It may require correct/in-range values for request initialization.
    66  	// - It may require specifying regional endpoints when creating the service client as shown in:
    67  	//   https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options
    68  	c, err := inventory.NewKeyDashboardClient(ctx)
    69  	if err != nil {
    70  		// TODO: Handle error.
    71  	}
    72  	defer c.Close()
    73  
    74  	req := &inventorypb.ListCryptoKeysRequest{
    75  		// TODO: Fill request struct fields.
    76  		// See https://pkg.go.dev/cloud.google.com/go/kms/inventory/apiv1/inventorypb#ListCryptoKeysRequest.
    77  	}
    78  	it := c.ListCryptoKeys(ctx, req)
    79  	for {
    80  		resp, err := it.Next()
    81  		if err == iterator.Done {
    82  			break
    83  		}
    84  		if err != nil {
    85  			// TODO: Handle error.
    86  		}
    87  		// TODO: Use resp.
    88  		_ = resp
    89  
    90  		// If you need to access the underlying RPC response,
    91  		// you can do so by casting the `Response` as below.
    92  		// Otherwise, remove this line. Only populated after
    93  		// first call to Next(). Not safe for concurrent access.
    94  		_ = it.Response.(*inventorypb.ListCryptoKeysResponse)
    95  	}
    96  }
    97  

View as plain text