Beispiel #1
0
        public void GetStorageServiceAccountEmail()
        {
            var projectId = _fixture.ProjectId;

            // Snippet: GetStorageServiceAccountEmail(string, *)
            StorageClient client = StorageClient.Create();
            string        serviceAccountEmail = client.GetStorageServiceAccountEmail(projectId);

            Console.WriteLine(serviceAccountEmail);
            // End snippet
        }
Beispiel #2
0
        public void NotificationsOverview()
        {
            string projectId = _fixture.ProjectId;
            string bucket    = _fixture.BucketName;
            string topicId   = "topic-" + Guid.NewGuid().ToString().ToLowerInvariant();

            // Sample: NotificationsOverview
            // First create a Pub/Sub topic.
            PublisherClient publisherClient = PublisherClient.Create();
            TopicName       topicName       = new TopicName(projectId, topicId);

            publisherClient.CreateTopic(topicName);

            // Prepare the topic for Storage notifications. The Storage Service Account must have Publish permission
            // for the topic. The code below adds the service account into the "roles/pubsub.publisher" role for the topic.

            // Determine the Storage Service Account name to use in IAM operations.
            StorageClient storageClient         = StorageClient.Create();
            string        storageServiceAccount = $"serviceAccount:{storageClient.GetStorageServiceAccountEmail(projectId)}";

            // Fetch the IAM policy for the topic.
            Iam.V1.Policy policy = publisherClient.GetIamPolicy(topicName.ToString());
            var           role   = "roles/pubsub.publisher";

            // Ensure the Storage Service Account is in the publisher role, setting the IAM policy for the topic
            // on the server if necessary.
            if (policy.AddRoleMember(role, storageServiceAccount))
            {
                publisherClient.SetIamPolicy(topicName.ToString(), policy);
            }

            // Now that the topic is ready, we can create a notification configuration for Storage
            Notification notification = new Notification
            {
                Topic         = $"//pubsub.googleapis.com/{topicName}",
                PayloadFormat = "JSON_API_V1"
            };

            notification = storageClient.CreateNotification(bucket, notification);
            Console.WriteLine($"Created notification ID: {notification.Id}");

            // End sample

            _fixture.RegisterTopicToDelete(topicName);
        }