Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Azure integration protobuf messages and gRPC methods #48628

Merged
merged 22 commits into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions api/proto/teleport/legacy/types/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7812,3 +7812,11 @@ message AccessGraphAWSSync {
// Integration is the integration name used to generate credentials to interact with AWS APIs.
string Integration = 4 [(gogoproto.jsontag) = "integration,omitempty"];
}

// AccessGraphAzureSync is a configuration for Azure Access Graph service poll service.
message AccessGraphAzureSync {
mvbrock marked this conversation as resolved.
Show resolved Hide resolved
repeated string Regions = 1 [(gogoproto.jsontag) = "regions,omitempty"];
string SubscriptionID = 2 [(gogoproto.jsontag) = "subscription_id,omitempty"];
string UMIClientID = 3 [(gogoproto.jsontag) = "umi_client_id,omitempty"];
string Integration = 4 [(gogoproto.jsontag) = "integration,omitempty"];
}
1,040 changes: 677 additions & 363 deletions api/types/types.pb.go

Large diffs are not rendered by default.

697 changes: 456 additions & 241 deletions gen/proto/go/accessgraph/v1alpha/access_graph_service.pb.go

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions gen/proto/go/accessgraph/v1alpha/access_graph_service_grpc.pb.go

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

Loading