Class: Google::Apis::CloudprofilerV2::CloudProfilerService
- Inherits:
-
Google::Apis::Core::BaseService
- Object
- Google::Apis::Core::BaseService
- Google::Apis::CloudprofilerV2::CloudProfilerService
- Defined in:
- lib/google/apis/cloudprofiler_v2/service.rb
Overview
Cloud Profiler API
Manages continuous profiling information.
Constant Summary collapse
- DEFAULT_ENDPOINT_TEMPLATE =
"https://cloudprofiler.$UNIVERSE_DOMAIN$/"
Instance Attribute Summary collapse
-
#key ⇒ String
API key.
-
#quota_user ⇒ String
Available to use for quota purposes for server-side applications.
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.
-
#list_project_profiles(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CloudprofilerV2::ListProfilesResponse
Lists profiles which have been collected so far and for which the caller has permission to view.
-
#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.
Constructor Details
#initialize ⇒ CloudProfilerService
Returns a new instance of CloudProfilerService.
47 48 49 50 51 52 |
# File 'lib/google/apis/cloudprofiler_v2/service.rb', line 47 def initialize super(DEFAULT_ENDPOINT_TEMPLATE, '', client_name: 'google-apis-cloudprofiler_v2', client_version: Google::Apis::CloudprofilerV2::GEM_VERSION) @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.
40 41 42 |
# File 'lib/google/apis/cloudprofiler_v2/service.rb', line 40 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.
45 46 47 |
# File 'lib/google/apis/cloudprofiler_v2/service.rb', line 45 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. Direct use of this API is discouraged, please use a supported profiler agent instead for profile collection. 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".
86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/google/apis/cloudprofiler_v2/service.rb', line 86 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. Direct use of this API is discouraged, please use a supported profiler agent instead for profile collection.
123 124 125 126 127 128 129 130 131 132 133 |
# File 'lib/google/apis/cloudprofiler_v2/service.rb', line 123 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 |
#list_project_profiles(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil) {|result, err| ... } ⇒ Google::Apis::CloudprofilerV2::ListProfilesResponse
Lists profiles which have been collected so far and for which the caller has permission to view.
164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/google/apis/cloudprofiler_v2/service.rb', line 164 def list_project_profiles(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'v2/{+parent}/profiles', ) command.response_representation = Google::Apis::CloudprofilerV2::ListProfilesResponse::Representation command.response_class = Google::Apis::CloudprofilerV2::ListProfilesResponse command.params['parent'] = parent unless parent.nil? command.query['pageSize'] = page_size unless page_size.nil? command.query['pageToken'] = page_token unless page_token.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. Direct use of this API is discouraged, please use a supported profiler agent instead for profile collection.
207 208 209 210 211 212 213 214 215 216 217 218 |
# File 'lib/google/apis/cloudprofiler_v2/service.rb', line 207 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 |