Skip to content

Commit

Permalink
chore: regenerate sources (googleapis#1514)
Browse files Browse the repository at this point in the history
Regenerated sources resulting from most recent commit to main
  • Loading branch information
yoshi-code-bot committed May 13, 2024
1 parent 34bf704 commit 4e7c30a
Show file tree
Hide file tree
Showing 12 changed files with 50 additions and 18 deletions.
8 changes: 6 additions & 2 deletions client/compliance_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions client/echo_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions client/identity_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions client/messaging_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions client/sequence_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions client/testing_client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion cmd/gapic-showcase/compliance_service.go
Expand Up @@ -10,6 +10,7 @@ import (
"golang.org/x/oauth2"
"google.golang.org/api/option"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"

gapic "github.com/googleapis/gapic-showcase/client"
)
Expand Down Expand Up @@ -71,7 +72,7 @@ var ComplianceServiceCmd = &cobra.Command{
return fmt.Errorf("Missing address to use with insecure connection")
}

conn, err := grpc.Dial(address, grpc.WithInsecure())
conn, err := grpc.Dial(address, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
return err
}
Expand Down
3 changes: 2 additions & 1 deletion cmd/gapic-showcase/echo_service.go
Expand Up @@ -10,6 +10,7 @@ import (
"golang.org/x/oauth2"
"google.golang.org/api/option"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"

gapic "github.com/googleapis/gapic-showcase/client"
)
Expand Down Expand Up @@ -71,7 +72,7 @@ var EchoServiceCmd = &cobra.Command{
return fmt.Errorf("Missing address to use with insecure connection")
}

conn, err := grpc.Dial(address, grpc.WithInsecure())
conn, err := grpc.Dial(address, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
return err
}
Expand Down
3 changes: 2 additions & 1 deletion cmd/gapic-showcase/identity_service.go
Expand Up @@ -10,6 +10,7 @@ import (
"golang.org/x/oauth2"
"google.golang.org/api/option"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"

gapic "github.com/googleapis/gapic-showcase/client"
)
Expand Down Expand Up @@ -66,7 +67,7 @@ var IdentityServiceCmd = &cobra.Command{
return fmt.Errorf("Missing address to use with insecure connection")
}

conn, err := grpc.Dial(address, grpc.WithInsecure())
conn, err := grpc.Dial(address, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
return err
}
Expand Down
3 changes: 2 additions & 1 deletion cmd/gapic-showcase/messaging_service.go
Expand Up @@ -10,6 +10,7 @@ import (
"golang.org/x/oauth2"
"google.golang.org/api/option"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"

gapic "github.com/googleapis/gapic-showcase/client"
)
Expand Down Expand Up @@ -75,7 +76,7 @@ var MessagingServiceCmd = &cobra.Command{
return fmt.Errorf("Missing address to use with insecure connection")
}

conn, err := grpc.Dial(address, grpc.WithInsecure())
conn, err := grpc.Dial(address, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
return err
}
Expand Down
3 changes: 2 additions & 1 deletion cmd/gapic-showcase/sequence_service.go
Expand Up @@ -10,6 +10,7 @@ import (
"golang.org/x/oauth2"
"google.golang.org/api/option"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"

gapic "github.com/googleapis/gapic-showcase/client"
)
Expand Down Expand Up @@ -67,7 +68,7 @@ var SequenceServiceCmd = &cobra.Command{
return fmt.Errorf("Missing address to use with insecure connection")
}

conn, err := grpc.Dial(address, grpc.WithInsecure())
conn, err := grpc.Dial(address, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
return err
}
Expand Down
3 changes: 2 additions & 1 deletion cmd/gapic-showcase/testing_service.go
Expand Up @@ -10,6 +10,7 @@ import (
"golang.org/x/oauth2"
"google.golang.org/api/option"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"

gapic "github.com/googleapis/gapic-showcase/client"
)
Expand Down Expand Up @@ -69,7 +70,7 @@ var TestingServiceCmd = &cobra.Command{
return fmt.Errorf("Missing address to use with insecure connection")
}

conn, err := grpc.Dial(address, grpc.WithInsecure())
conn, err := grpc.Dial(address, grpc.WithTransportCredentials(insecure.NewCredentials()))
if err != nil {
return err
}
Expand Down

0 comments on commit 4e7c30a

Please sign in to comment.