diff --git a/docs/dyn/analyticsadmin_v1alpha.accounts.html b/docs/dyn/analyticsadmin_v1alpha.accounts.html index 8db650a587a..8c4db719ef1 100644 --- a/docs/dyn/analyticsadmin_v1alpha.accounts.html +++ b/docs/dyn/analyticsadmin_v1alpha.accounts.html @@ -393,6 +393,11 @@
+ measurementProtocolSecrets()
+
Returns the measurementProtocolSecrets Resource.
+Close httplib2 connections.
diff --git a/docs/dyn/analyticsadmin_v1alpha.properties.androidAppDataStreams.measurementProtocolSecrets.html b/docs/dyn/analyticsadmin_v1alpha.properties.androidAppDataStreams.measurementProtocolSecrets.html new file mode 100644 index 00000000000..81314d2e279 --- /dev/null +++ b/docs/dyn/analyticsadmin_v1alpha.properties.androidAppDataStreams.measurementProtocolSecrets.html @@ -0,0 +1,246 @@ + + + +
+ close()
Close httplib2 connections.
+
+ create(parent, body=None, x__xgafv=None)
Creates a measurement protocol secret.
+ +Deletes target MeasurementProtocolSecret.
+ +Lookup for a single "GA4" MeasurementProtocolSecret.
+
+ list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Returns child MeasurementProtocolSecrets under the specified parent Property.
+
+ list_next(previous_request, previous_response)
Retrieves the next page of results.
+
+ patch(name, body=None, updateMask=None, x__xgafv=None)
Updates a measurement protocol secret.
+close()
+ Close httplib2 connections.+
create(parent, body=None, x__xgafv=None)
+ Creates a measurement protocol secret. + +Args: + parent: string, Required. The parent resource where this secret will be created. Any type of stream (WebDataStream, IosAppDataStream, AndroidAppDataStream) may be a parent. Format: properties/{property}/webDataStreams/{webDataStream} (required) + body: object, The request body. + The object takes the form of: + +{ # A secret value used for sending hits to Measurement Protocol. + "displayName": "A String", # Required. Human-readable display name for this secret. + "name": "A String", # Output only. Resource name of this secret. This secret may be a child of any type of stream. Format: properties/{property}/webDataStreams/{webDataStream}/measurementProtocolSecrets/{measurementProtocolSecret} + "secretValue": "A String", # Output only. The measurement protocol secret value. Pass this value to the api_secret field of the Measurement Protocol API when sending hits to this secret's parent property. +} + + x__xgafv: string, V1 error format. + Allowed values + 1 - v1 error format + 2 - v2 error format + +Returns: + An object of the form: + + { # A secret value used for sending hits to Measurement Protocol. + "displayName": "A String", # Required. Human-readable display name for this secret. + "name": "A String", # Output only. Resource name of this secret. This secret may be a child of any type of stream. Format: properties/{property}/webDataStreams/{webDataStream}/measurementProtocolSecrets/{measurementProtocolSecret} + "secretValue": "A String", # Output only. The measurement protocol secret value. Pass this value to the api_secret field of the Measurement Protocol API when sending hits to this secret's parent property. +}+
delete(name, x__xgafv=None)
+ Deletes target MeasurementProtocolSecret. + +Args: + name: string, Required. The name of the MeasurementProtocolSecret to delete. Format: properties/{property}/webDataStreams/{webDataStream}/measurementProtocolSecrets/{measurementProtocolSecret} Note: Any type of stream (WebDataStream, IosAppDataStream, AndroidAppDataStream) may be a parent. (required) + x__xgafv: string, V1 error format. + Allowed values + 1 - v1 error format + 2 - v2 error format + +Returns: + An object of the form: + + { # A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`. +}+
get(name, x__xgafv=None)
+ Lookup for a single "GA4" MeasurementProtocolSecret. + +Args: + name: string, Required. The name of the measurement protocol secret to lookup. Format: properties/{property}/webDataStreams/{webDataStream}/measurementProtocolSecrets/{measurementProtocolSecret} Note: Any type of stream (WebDataStream, IosAppDataStream, AndroidAppDataStream) may be a parent. (required) + x__xgafv: string, V1 error format. + Allowed values + 1 - v1 error format + 2 - v2 error format + +Returns: + An object of the form: + + { # A secret value used for sending hits to Measurement Protocol. + "displayName": "A String", # Required. Human-readable display name for this secret. + "name": "A String", # Output only. Resource name of this secret. This secret may be a child of any type of stream. Format: properties/{property}/webDataStreams/{webDataStream}/measurementProtocolSecrets/{measurementProtocolSecret} + "secretValue": "A String", # Output only. The measurement protocol secret value. Pass this value to the api_secret field of the Measurement Protocol API when sending hits to this secret's parent property. +}+
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
+ Returns child MeasurementProtocolSecrets under the specified parent Property. + +Args: + parent: string, Required. The resource name of the parent stream. Any type of stream (WebDataStream, IosAppDataStream, AndroidAppDataStream) may be a parent. Format: properties/{property}/webDataStreams/{webDataStream}/measurementProtocolSecrets (required) + pageSize: integer, The maximum number of resources to return. If unspecified, at most 10 resources will be returned. The maximum value is 10. Higher values will be coerced to the maximum. + pageToken: string, A page token, received from a previous `ListMeasurementProtocolSecrets` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListMeasurementProtocolSecrets` must match the call that provided the page token. + x__xgafv: string, V1 error format. + Allowed values + 1 - v1 error format + 2 - v2 error format + +Returns: + An object of the form: + + { # Response message for ListMeasurementProtocolSecret RPC + "measurementProtocolSecrets": [ # A list of secrets for the parent stream specified in the request. + { # A secret value used for sending hits to Measurement Protocol. + "displayName": "A String", # Required. Human-readable display name for this secret. + "name": "A String", # Output only. Resource name of this secret. This secret may be a child of any type of stream. Format: properties/{property}/webDataStreams/{webDataStream}/measurementProtocolSecrets/{measurementProtocolSecret} + "secretValue": "A String", # Output only. The measurement protocol secret value. Pass this value to the api_secret field of the Measurement Protocol API when sending hits to this secret's parent property. + }, + ], + "nextPageToken": "A String", # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. +}+
list_next(previous_request, previous_response)
+ Retrieves the next page of results. + +Args: + previous_request: The request for the previous page. (required) + previous_response: The response from the request for the previous page. (required) + +Returns: + A request object that you can call 'execute()' on to request the next + page. Returns None if there are no more items in the collection. ++
patch(name, body=None, updateMask=None, x__xgafv=None)
+ Updates a measurement protocol secret. + +Args: + name: string, Output only. Resource name of this secret. This secret may be a child of any type of stream. Format: properties/{property}/webDataStreams/{webDataStream}/measurementProtocolSecrets/{measurementProtocolSecret} (required) + body: object, The request body. + The object takes the form of: + +{ # A secret value used for sending hits to Measurement Protocol. + "displayName": "A String", # Required. Human-readable display name for this secret. + "name": "A String", # Output only. Resource name of this secret. This secret may be a child of any type of stream. Format: properties/{property}/webDataStreams/{webDataStream}/measurementProtocolSecrets/{measurementProtocolSecret} + "secretValue": "A String", # Output only. The measurement protocol secret value. Pass this value to the api_secret field of the Measurement Protocol API when sending hits to this secret's parent property. +} + + updateMask: string, The list of fields to be updated. Omitted fields will not be updated. + x__xgafv: string, V1 error format. + Allowed values + 1 - v1 error format + 2 - v2 error format + +Returns: + An object of the form: + + { # A secret value used for sending hits to Measurement Protocol. + "displayName": "A String", # Required. Human-readable display name for this secret. + "name": "A String", # Output only. Resource name of this secret. This secret may be a child of any type of stream. Format: properties/{property}/webDataStreams/{webDataStream}/measurementProtocolSecrets/{measurementProtocolSecret} + "secretValue": "A String", # Output only. The measurement protocol secret value. Pass this value to the api_secret field of the Measurement Protocol API when sending hits to this secret's parent property. +}+
Lookup for a single "GA4" Property.
+
+ getGoogleSignalsSettings(name, x__xgafv=None)
Lookup for Google Signals settings for a property.
list(filter=None, pageSize=None, pageToken=None, showDeleted=None, x__xgafv=None)
Returns child Properties under the specified parent Account. Only "GA4" properties will be returned. Properties will be excluded if the caller does not have access. Soft-deleted (ie: "trashed") properties are excluded by default. Returns an empty list if no relevant properties are found.
@@ -140,6 +143,9 @@
patch(name, body=None, updateMask=None, x__xgafv=None)
Updates a property.
+
+ updateGoogleSignalsSettings(name, body=None, updateMask=None, x__xgafv=None)
Updates Google Signals settings for a property.
close()
@@ -245,6 +251,27 @@ getGoogleSignalsSettings(name, x__xgafv=None)
+ Lookup for Google Signals settings for a property. + +Args: + name: string, Required. The name of the google signals settings to retrieve. Format: properties/{property}/googleSignalsSettings (required) + x__xgafv: string, V1 error format. + Allowed values + 1 - v1 error format + 2 - v2 error format + +Returns: + An object of the form: + + { # Settings values for Google Signals. This is a singleton resource. + "consent": "A String", # Output only. Terms of Service acceptance. + "name": "A String", # Output only. Resource name of this setting. Format: properties/{property_id}/googleSignalsSettings Example: "properties/1000/googleSignalsSettings" + "state": "A String", # Status of this setting. +}+
list(filter=None, pageSize=None, pageToken=None, showDeleted=None, x__xgafv=None)
Returns child Properties under the specified parent Account. Only "GA4" properties will be returned. Properties will be excluded if the caller does not have access. Soft-deleted (ie: "trashed") properties are excluded by default. Returns an empty list if no relevant properties are found. @@ -340,4 +367,35 @@Method Details
}
updateGoogleSignalsSettings(name, body=None, updateMask=None, x__xgafv=None)
+ Updates Google Signals settings for a property. + +Args: + name: string, Output only. Resource name of this setting. Format: properties/{property_id}/googleSignalsSettings Example: "properties/1000/googleSignalsSettings" (required) + body: object, The request body. + The object takes the form of: + +{ # Settings values for Google Signals. This is a singleton resource. + "consent": "A String", # Output only. Terms of Service acceptance. + "name": "A String", # Output only. Resource name of this setting. Format: properties/{property_id}/googleSignalsSettings Example: "properties/1000/googleSignalsSettings" + "state": "A String", # Status of this setting. +} + + updateMask: string, Required. The list of fields to be updated. Field names must be in snake case (e.g., "field_to_update"). Omitted fields will not be updated. To replace the entire entity, use one path with the string "*" to match all fields. + x__xgafv: string, V1 error format. + Allowed values + 1 - v1 error format + 2 - v2 error format + +Returns: + An object of the form: + + { # Settings values for Google Signals. This is a singleton resource. + "consent": "A String", # Output only. Terms of Service acceptance. + "name": "A String", # Output only. Resource name of this setting. Format: properties/{property_id}/googleSignalsSettings Example: "properties/1000/googleSignalsSettings" + "state": "A String", # Status of this setting. +}+