Dataflow API . folders . locations . configStoreSettings

Instance Methods

close()

Close httplib2 connections.

create(parent, body=None, configStoreSettingId=None, x__xgafv=None)

Creates a new ConfigStoreSetting.

delete(name, x__xgafv=None)

Deletes an existing ConfigStoreSetting.

get(name, x__xgafv=None)

Gets a ConfigStoreSetting.

list(parent, pageSize=None, pageToken=None, x__xgafv=None)

Lists ConfigStoreSettings.

list_next(previous_request, previous_response)

Retrieves the next page of results.

resolve(name, body=None, x__xgafv=None)

Resolves effective value of a ConfigStoreSetting.

Method Details

close()
Close httplib2 connections.
create(parent, body=None, configStoreSettingId=None, x__xgafv=None)
Creates a new ConfigStoreSetting.

Args:
  parent: string, Required. The parent resource where this setting will be created. (required)
  body: object, The request body.
    The object takes the form of:

{ # A ConfigStoreSetting resource.
  "name": "A String", # Identifier. The resource name of the setting.
  "value": { # Represents a dynamically typed value. # Required. The dynamic value of the setting.
    "boolValue": True or False, # Represents a boolean value.
    "stringValue": "A String", # Represents a string value.
  },
}

  configStoreSettingId: string, Required. The ID to use for the setting.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A ConfigStoreSetting resource.
  "name": "A String", # Identifier. The resource name of the setting.
  "value": { # Represents a dynamically typed value. # Required. The dynamic value of the setting.
    "boolValue": True or False, # Represents a boolean value.
    "stringValue": "A String", # Represents a string value.
  },
}
delete(name, x__xgafv=None)
Deletes an existing ConfigStoreSetting.

Args:
  name: string, Required. The name of the ConfigStoreSetting to delete. (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); }
}
get(name, x__xgafv=None)
Gets a ConfigStoreSetting.

Args:
  name: string, Required. The name of the ConfigStoreSetting to retrieve. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # A ConfigStoreSetting resource.
  "name": "A String", # Identifier. The resource name of the setting.
  "value": { # Represents a dynamically typed value. # Required. The dynamic value of the setting.
    "boolValue": True or False, # Represents a boolean value.
    "stringValue": "A String", # Represents a string value.
  },
}
list(parent, pageSize=None, pageToken=None, x__xgafv=None)
Lists ConfigStoreSettings.

Args:
  parent: string, Required. The parent resource whose settings are being listed. (required)
  pageSize: integer, Optional. The maximum number of settings to return.
  pageToken: string, Optional. A page token, received from a previous `ListConfigStoreSettings` call.
  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 ListConfigStoreSettings.
  "configStoreSettings": [ # The list of ConfigStoreSettings.
    { # A ConfigStoreSetting resource.
      "name": "A String", # Identifier. The resource name of the setting.
      "value": { # Represents a dynamically typed value. # Required. The dynamic value of the setting.
        "boolValue": True or False, # Represents a boolean value.
        "stringValue": "A String", # Represents a string value.
      },
    },
  ],
  "nextPageToken": "A String", # A token that can be sent as `page_token` to retrieve the next page.
}
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.
resolve(name, body=None, x__xgafv=None)
Resolves effective value of a ConfigStoreSetting.

Args:
  name: string, Required. The name of the setting to resolve. (required)
  body: object, The request body.
    The object takes the form of:

{ # Request message for ResolveConfigStoreSetting.
}

  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 ResolveConfigStoreSetting.
  "choices": [ # The list of settings that were considered during resolution.
    { # A ConfigStoreSetting resource.
      "name": "A String", # Identifier. The resource name of the setting.
      "value": { # Represents a dynamically typed value. # Required. The dynamic value of the setting.
        "boolValue": True or False, # Represents a boolean value.
        "stringValue": "A String", # Represents a string value.
      },
    },
  ],
  "setting": { # A ConfigStoreSetting resource. # The dry-run setting result.
    "name": "A String", # Identifier. The resource name of the setting.
    "value": { # Represents a dynamically typed value. # Required. The dynamic value of the setting.
      "boolValue": True or False, # Represents a boolean value.
      "stringValue": "A String", # Represents a string value.
    },
  },
}