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 dashboard_test 18 19 import ( 20 "context" 21 22 dashboard "cloud.google.com/go/monitoring/dashboard/apiv1" 23 dashboardpb "cloud.google.com/go/monitoring/dashboard/apiv1/dashboardpb" 24 "google.golang.org/api/iterator" 25 ) 26 27 func ExampleNewDashboardsClient() { 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 := dashboard.NewDashboardsClient(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 ExampleNewDashboardsRESTClient() { 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 := dashboard.NewDashboardsRESTClient(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 ExampleDashboardsClient_CreateDashboard() { 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 := dashboard.NewDashboardsClient(ctx) 69 if err != nil { 70 // TODO: Handle error. 71 } 72 defer c.Close() 73 74 req := &dashboardpb.CreateDashboardRequest{ 75 // TODO: Fill request struct fields. 76 // See https://pkg.go.dev/cloud.google.com/go/monitoring/dashboard/apiv1/dashboardpb#CreateDashboardRequest. 77 } 78 resp, err := c.CreateDashboard(ctx, req) 79 if err != nil { 80 // TODO: Handle error. 81 } 82 // TODO: Use resp. 83 _ = resp 84 } 85 86 func ExampleDashboardsClient_DeleteDashboard() { 87 ctx := context.Background() 88 // This snippet has been automatically generated and should be regarded as a code template only. 89 // It will require modifications to work: 90 // - It may require correct/in-range values for request initialization. 91 // - It may require specifying regional endpoints when creating the service client as shown in: 92 // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options 93 c, err := dashboard.NewDashboardsClient(ctx) 94 if err != nil { 95 // TODO: Handle error. 96 } 97 defer c.Close() 98 99 req := &dashboardpb.DeleteDashboardRequest{ 100 // TODO: Fill request struct fields. 101 // See https://pkg.go.dev/cloud.google.com/go/monitoring/dashboard/apiv1/dashboardpb#DeleteDashboardRequest. 102 } 103 err = c.DeleteDashboard(ctx, req) 104 if err != nil { 105 // TODO: Handle error. 106 } 107 } 108 109 func ExampleDashboardsClient_GetDashboard() { 110 ctx := context.Background() 111 // This snippet has been automatically generated and should be regarded as a code template only. 112 // It will require modifications to work: 113 // - It may require correct/in-range values for request initialization. 114 // - It may require specifying regional endpoints when creating the service client as shown in: 115 // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options 116 c, err := dashboard.NewDashboardsClient(ctx) 117 if err != nil { 118 // TODO: Handle error. 119 } 120 defer c.Close() 121 122 req := &dashboardpb.GetDashboardRequest{ 123 // TODO: Fill request struct fields. 124 // See https://pkg.go.dev/cloud.google.com/go/monitoring/dashboard/apiv1/dashboardpb#GetDashboardRequest. 125 } 126 resp, err := c.GetDashboard(ctx, req) 127 if err != nil { 128 // TODO: Handle error. 129 } 130 // TODO: Use resp. 131 _ = resp 132 } 133 134 func ExampleDashboardsClient_ListDashboards() { 135 ctx := context.Background() 136 // This snippet has been automatically generated and should be regarded as a code template only. 137 // It will require modifications to work: 138 // - It may require correct/in-range values for request initialization. 139 // - It may require specifying regional endpoints when creating the service client as shown in: 140 // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options 141 c, err := dashboard.NewDashboardsClient(ctx) 142 if err != nil { 143 // TODO: Handle error. 144 } 145 defer c.Close() 146 147 req := &dashboardpb.ListDashboardsRequest{ 148 // TODO: Fill request struct fields. 149 // See https://pkg.go.dev/cloud.google.com/go/monitoring/dashboard/apiv1/dashboardpb#ListDashboardsRequest. 150 } 151 it := c.ListDashboards(ctx, req) 152 for { 153 resp, err := it.Next() 154 if err == iterator.Done { 155 break 156 } 157 if err != nil { 158 // TODO: Handle error. 159 } 160 // TODO: Use resp. 161 _ = resp 162 163 // If you need to access the underlying RPC response, 164 // you can do so by casting the `Response` as below. 165 // Otherwise, remove this line. Only populated after 166 // first call to Next(). Not safe for concurrent access. 167 _ = it.Response.(*dashboardpb.ListDashboardsResponse) 168 } 169 } 170 171 func ExampleDashboardsClient_UpdateDashboard() { 172 ctx := context.Background() 173 // This snippet has been automatically generated and should be regarded as a code template only. 174 // It will require modifications to work: 175 // - It may require correct/in-range values for request initialization. 176 // - It may require specifying regional endpoints when creating the service client as shown in: 177 // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options 178 c, err := dashboard.NewDashboardsClient(ctx) 179 if err != nil { 180 // TODO: Handle error. 181 } 182 defer c.Close() 183 184 req := &dashboardpb.UpdateDashboardRequest{ 185 // TODO: Fill request struct fields. 186 // See https://pkg.go.dev/cloud.google.com/go/monitoring/dashboard/apiv1/dashboardpb#UpdateDashboardRequest. 187 } 188 resp, err := c.UpdateDashboard(ctx, req) 189 if err != nil { 190 // TODO: Handle error. 191 } 192 // TODO: Use resp. 193 _ = resp 194 } 195