Class: Google::Apis::CloudprofilerV2::CloudProfilerService
- Inherits:
-
Google::Apis::Core::BaseService
- Object
- Google::Apis::Core::BaseService
- Google::Apis::CloudprofilerV2::CloudProfilerService
- Defined in:
- generated/google/apis/cloudprofiler_v2/service.rb
Overview
Stackdriver Profiler API
Manages continuous profiling information.
Instance Attribute Summary collapse
-
#key ⇒ String
API key.
-
#quota_user ⇒ String
Available to use for quota purposes for server-side applications.
Attributes inherited from Google::Apis::Core::BaseService
#authorization, #base_path, #batch_path, #client, #client_options, #request_options, #root_url, #upload_path
Instance Method Summary collapse
-
#create_profile(parent, create_profile_request_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CloudprofilerV2::Profile
CreateProfile creates a new profile resource in the online mode.
-
#create_project_profile_offline(parent, profile_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CloudprofilerV2::Profile
CreateOfflineProfile creates a new profile resource in the offline mode.
-
#initialize ⇒ CloudProfilerService
constructor
A new instance of CloudProfilerService.
-
#patch_project_profile(name, profile_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CloudprofilerV2::Profile
UpdateProfile updates the profile bytes and labels on the profile resource created in the online mode.
Methods inherited from Google::Apis::Core::BaseService
#batch, #batch_upload, #fetch_all, #http
Methods included from Google::Apis::Core::Logging
Constructor Details
#initialize ⇒ CloudProfilerService
Returns a new instance of CloudProfilerService
45 46 47 48 |
# File 'generated/google/apis/cloudprofiler_v2/service.rb', line 45 def initialize super('https://cloudprofiler.googleapis.com/', '') @batch_path = 'batch' end |
Instance Attribute Details
#key ⇒ String
Returns API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
38 39 40 |
# File 'generated/google/apis/cloudprofiler_v2/service.rb', line 38 def key @key end |
#quota_user ⇒ String
Returns Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
43 44 45 |
# File 'generated/google/apis/cloudprofiler_v2/service.rb', line 43 def quota_user @quota_user end |
Instance Method Details
#create_profile(parent, create_profile_request_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CloudprofilerV2::Profile
CreateProfile creates a new profile resource in the online mode. The server ensures that the new profiles are created at a constant rate per deployment, so the creation request may hang for some time until the next profile session is available. The request may fail with ABORTED error if the creation is not available within ~1m, the response will indicate the duration of the backoff the client should take before attempting creating a profile again. The backoff duration is returned in google.rpc.RetryInfo extension on the response status. To a gRPC client, the extension will be return as a binary-serialized proto in the trailing metadata item named "google.rpc.retryinfo-bin".
81 82 83 84 85 86 87 88 89 90 91 |
# File 'generated/google/apis/cloudprofiler_v2/service.rb', line 81 def create_profile(parent, create_profile_request_object = nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:post, 'v2/{+parent}/profiles', ) command.request_representation = Google::Apis::CloudprofilerV2::CreateProfileRequest::Representation command.request_object = create_profile_request_object command.response_representation = Google::Apis::CloudprofilerV2::Profile::Representation command.response_class = Google::Apis::CloudprofilerV2::Profile command.params['parent'] = parent unless parent.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#create_project_profile_offline(parent, profile_object = nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CloudprofilerV2::Profile
CreateOfflineProfile creates a new profile resource in the offline mode. The client provides the profile to create along with the profile bytes, the server records it.
116 117 118 119 120 121 122 123 124 125 126 |
# File 'generated/google/apis/cloudprofiler_v2/service.rb', line 116 def create_project_profile_offline(parent, profile_object = nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:post, 'v2/{+parent}/profiles:createOffline', ) command.request_representation = Google::Apis::CloudprofilerV2::Profile::Representation command.request_object = profile_object command.response_representation = Google::Apis::CloudprofilerV2::Profile::Representation command.response_class = Google::Apis::CloudprofilerV2::Profile command.params['parent'] = parent unless parent.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |
#patch_project_profile(name, profile_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CloudprofilerV2::Profile
UpdateProfile updates the profile bytes and labels on the profile resource created in the online mode. Updating the bytes for profiles created in the offline mode is currently not supported: the profile content must be provided at the time of the profile creation.
157 158 159 160 161 162 163 164 165 166 167 168 |
# File 'generated/google/apis/cloudprofiler_v2/service.rb', line 157 def patch_project_profile(name, profile_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:patch, 'v2/{+name}', ) command.request_representation = Google::Apis::CloudprofilerV2::Profile::Representation command.request_object = profile_object command.response_representation = Google::Apis::CloudprofilerV2::Profile::Representation command.response_class = Google::Apis::CloudprofilerV2::Profile command.params['name'] = name unless name.nil? command.query['updateMask'] = update_mask unless update_mask.nil? command.query['fields'] = fields unless fields.nil? command.query['quotaUser'] = quota_user unless quota_user.nil? execute_or_queue_command(command, &block) end |