123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- syntax = "proto3";
- package google.cloud.asset.v1p7beta1;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/cloud/asset/v1p7beta1/assets.proto";
- import "google/longrunning/operations.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.Asset.V1P7Beta1";
- option go_package = "google.golang.org/genproto/googleapis/cloud/asset/v1p7beta1;asset";
- option java_multiple_files = true;
- option java_outer_classname = "AssetServiceProto";
- option java_package = "com.google.cloud.asset.v1p7beta1";
- option php_namespace = "Google\\Cloud\\Asset\\V1p7beta1";
- service AssetService {
- option (google.api.default_host) = "cloudasset.googleapis.com";
- option (google.api.oauth_scopes) =
- "https://www.googleapis.com/auth/cloud-platform";
-
-
-
-
-
-
-
-
-
-
-
- rpc ExportAssets(ExportAssetsRequest) returns (google.longrunning.Operation) {
- option (google.api.http) = {
- post: "/v1p7beta1/{parent=*/*}:exportAssets"
- body: "*"
- };
- option (google.longrunning.operation_info) = {
- response_type: "google.cloud.asset.v1p7beta1.ExportAssetsResponse"
- metadata_type: "google.cloud.asset.v1p7beta1.ExportAssetsRequest"
- };
- }
- }
- message ExportAssetsRequest {
-
-
-
-
- string parent = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- child_type: "cloudasset.googleapis.com/Asset"
- }
- ];
-
-
-
-
-
- google.protobuf.Timestamp read_time = 2;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- repeated string asset_types = 3;
-
-
- ContentType content_type = 4;
-
-
- OutputConfig output_config = 5 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
-
-
-
-
-
-
- repeated string relationship_types = 6;
- }
- message ExportAssetsResponse {
-
- google.protobuf.Timestamp read_time = 1;
-
- OutputConfig output_config = 2;
-
-
-
-
-
- OutputResult output_result = 3;
- }
- message OutputConfig {
-
- oneof destination {
-
- GcsDestination gcs_destination = 1;
-
-
- BigQueryDestination bigquery_destination = 2;
- }
- }
- message OutputResult {
-
- oneof result {
-
- GcsOutputResult gcs_result = 1;
- }
- }
- message GcsOutputResult {
-
-
- repeated string uris = 1;
- }
- message GcsDestination {
-
- oneof object_uri {
-
-
-
-
-
- string uri = 1;
-
-
-
-
-
-
-
-
-
- string uri_prefix = 2;
- }
- }
- message BigQueryDestination {
-
-
-
-
- string dataset = 1 [(google.api.field_behavior) = REQUIRED];
-
-
-
- string table = 2 [(google.api.field_behavior) = REQUIRED];
-
-
-
-
- bool force = 3;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- PartitionSpec partition_spec = 4;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- bool separate_tables_per_asset_type = 5;
- }
- message PartitionSpec {
-
-
-
-
-
- enum PartitionKey {
-
- PARTITION_KEY_UNSPECIFIED = 0;
-
-
-
-
-
- READ_TIME = 1;
-
-
-
-
- REQUEST_TIME = 2;
- }
-
- PartitionKey partition_key = 1;
- }
- enum ContentType {
-
- CONTENT_TYPE_UNSPECIFIED = 0;
-
- RESOURCE = 1;
-
- IAM_POLICY = 2;
-
- ORG_POLICY = 4;
-
- ACCESS_POLICY = 5;
-
- RELATIONSHIP = 7;
- }
|