123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- syntax = "proto3";
- package google.cloud.resourcemanager.v3;
- import "google/api/annotations.proto";
- import "google/api/client.proto";
- import "google/api/field_behavior.proto";
- import "google/api/resource.proto";
- import "google/iam/v1/iam_policy.proto";
- import "google/iam/v1/policy.proto";
- import "google/protobuf/timestamp.proto";
- option csharp_namespace = "Google.Cloud.ResourceManager.V3";
- option go_package = "google.golang.org/genproto/googleapis/cloud/resourcemanager/v3;resourcemanager";
- option java_multiple_files = true;
- option java_outer_classname = "OrganizationsProto";
- option java_package = "com.google.cloud.resourcemanager.v3";
- option php_namespace = "Google\\Cloud\\ResourceManager\\V3";
- option ruby_package = "Google::Cloud::ResourceManager::V3";
- service Organizations {
- option (google.api.default_host) = "cloudresourcemanager.googleapis.com";
- option (google.api.oauth_scopes) =
- "https://www.googleapis.com/auth/cloud-platform,"
- "https://www.googleapis.com/auth/cloud-platform.read-only";
-
- rpc GetOrganization(GetOrganizationRequest) returns (Organization) {
- option (google.api.http) = {
- get: "/v3/{name=organizations/*}"
- };
- option (google.api.method_signature) = "name";
- }
-
-
-
-
-
-
-
- rpc SearchOrganizations(SearchOrganizationsRequest) returns (SearchOrganizationsResponse) {
- option (google.api.http) = {
- get: "/v3/organizations:search"
- };
- option (google.api.method_signature) = "query";
- }
-
-
-
-
-
-
- rpc GetIamPolicy(google.iam.v1.GetIamPolicyRequest) returns (google.iam.v1.Policy) {
- option (google.api.http) = {
- post: "/v3/{resource=organizations/*}:getIamPolicy"
- body: "*"
- };
- option (google.api.method_signature) = "resource";
- }
-
-
-
-
-
-
- rpc SetIamPolicy(google.iam.v1.SetIamPolicyRequest) returns (google.iam.v1.Policy) {
- option (google.api.http) = {
- post: "/v3/{resource=organizations/*}:setIamPolicy"
- body: "*"
- };
- option (google.api.method_signature) = "resource";
- }
-
-
-
-
-
- rpc TestIamPermissions(google.iam.v1.TestIamPermissionsRequest) returns (google.iam.v1.TestIamPermissionsResponse) {
- option (google.api.http) = {
- post: "/v3/{resource=organizations/*}:testIamPermissions"
- body: "*"
- };
- option (google.api.method_signature) = "resource,permissions";
- }
- }
- message Organization {
- option (google.api.resource) = {
- type: "cloudresourcemanager.googleapis.com/Organization"
- pattern: "organizations/{organization}"
- style: DECLARATIVE_FRIENDLY
- };
-
- enum State {
-
- STATE_UNSPECIFIED = 0;
-
- ACTIVE = 1;
-
- DELETE_REQUESTED = 2;
- }
-
-
-
- string name = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
- string display_name = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
-
-
-
- oneof owner {
-
- string directory_customer_id = 3 [(google.api.field_behavior) = IMMUTABLE];
- }
-
- State state = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp create_time = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp update_time = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
-
- google.protobuf.Timestamp delete_time = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
-
-
-
- string etag = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
- }
- message GetOrganizationRequest {
-
-
-
- string name = 1 [
- (google.api.field_behavior) = REQUIRED,
- (google.api.resource_reference) = {
- type: "cloudresourcemanager.googleapis.com/Organization"
- }
- ];
- }
- message SearchOrganizationsRequest {
-
-
- int32 page_size = 1 [(google.api.field_behavior) = OPTIONAL];
-
-
- string page_token = 2 [(google.api.field_behavior) = OPTIONAL];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- string query = 3 [(google.api.field_behavior) = OPTIONAL];
- }
- message SearchOrganizationsResponse {
-
-
- repeated Organization organizations = 1;
-
-
-
-
-
- string next_page_token = 2;
- }
- message DeleteOrganizationMetadata {
- }
- message UndeleteOrganizationMetadata {
- }
|