diff --git a/classes/SoftLayer_Account/index.html b/classes/SoftLayer_Account/index.html index a17555c223b..1368ef54fca 100644 --- a/classes/SoftLayer_Account/index.html +++ b/classes/SoftLayer_Account/index.html @@ -1779,11 +1779,6 @@
softlayer_billing_item_gateway_license
+ If you are unfamiliar with Goroutines, they are a way to easily add paralleism to your application. For a brief explanation on how they work in go, check out the following:
+The basic pattern here will be to make a single api call to get the first set of results, but also the expected total number of results. From there we will use goroutines to create a thread for each needed API call, wait for them all to finish and collect the results.
+In v1.1.4 I’ve added a couple of helper functions that user goroutiunes to paginate through API results, and will likely add more in the future. For now I will use these as examples and go in detail about what these functions do, and how they do it.
+func GetVirtualGuestsIter(session session.SLSession, options *sl.Options) (resp []datatypes.Virtual_Guest, err error) {
+
+ options.SetOffset(0)
+ limit := options.ValidateLimit()
+
+ // Can't call service.GetVirtualGuests because it passes a copy of options, not the address to options sadly.
+ err = session.DoRequest("SoftLayer_Account", "getVirtualGuests", nil, options, &resp)
+ if err != nil {
+ return
+ }
+ apicalls := options.GetRemainingAPICalls()
+ var wg sync.WaitGroup
+ for x := 1; x <= apicalls; x++ {
+ wg.Add(1)
+ go func(i int) {
+ defer wg.Done()
+ offset := i * limit
+ this_resp := []datatypes.Virtual_Guest{}
+ options.Offset = &offset
+ err = session.DoRequest("SoftLayer_Account", "getVirtualGuests", nil, options, &this_resp)
+ if err != nil {
+ fmt.Printf("[ERROR] %v\n", err)
+ }
+ resp = append(resp, this_resp...)
+ }(x)
+ }
+ wg.Wait()
+ return resp, err
+}
+
This function takes in two arguments. The first is a copy of your session, and the second is a pointer to your request options, which will include any ObjectMask or ObjectFilter you set. You might also want to set a specific ResultLimit if the default of 50 isn’t appropriate. This function will return a slice of Virtual_Guests and an error (if any). Error handling with goroutines can be a bit tricky, so for these examples I opted to just print the errors out. err
will only not be nil if the first API call errors, or the last api call errors. Any errors between that will be somewhat lost. To improve on that, we would need to use a sync/errorgroup.
options.SetOffset(0)
+ limit := options.ValidateLimit()
+
This will force the Offset to be 0, and make sure the limit is set to something valid (>2 basically, a resultLimit of 1 will only return a single result, and go expects a slice of results, which will cause errors).
+ err = session.DoRequest("SoftLayer_Account", "getVirtualGuests", nil, options, &resp)
+ if err != nil {
+ return
+ }
+ apicalls := options.GetRemainingAPICalls()
+
Next we make a single API call to get the first set of results, along with finding out how many results we should expect (this is from the SoftLayer-Total-Items
result header)
++NOTE This will only work if you are using the
+REST
endpoint, the XMLRPC endpoint isn’t setup to save the results of theSoftLayer-Total-Items
header currently. You can still use goroutines, but you will have to iterate through results until you get less results than your Limit, which isn’t great if you don’t know how many API calls you have to make.
var wg sync.WaitGroup
+
The wg
is a WaitGroup, which basically lets go collect the results of all the API calls we made.
++NOTE The order of the results might not reflect the order from the API since API calls will return in a somewhat random order. You may need to sort this slice after the API calls are completed.
+
for x := 1; x <= apicalls; x++ {
+ wg.Add(1)
+ ...
+ }
+
Since we know how many API calls are needed, we will create a goroutine for each one, incrementing wg
by 1. We could likely do wg.Add(apicalls)
before the for loop, but this pattern matches a lot of what you will see in other examples so I kept it that way.
go func(i int) {
+ defer wg.Done()
+ ...
+}(x)
+
This will launch a goroutine (with the keyworkd go
here) and pass in i
(the iteration count) to the function. This lets us know what our offset needs to be for each API call, so were not getting the same data over and over again. Then we defer
the closure of the wg
waitgroup, which basically tells the waitgroup that this goroutine is done.
offset := i * limit
+ this_resp := []datatypes.Virtual_Guest{}
+ options.Offset = &offset
+ err = session.DoRequest("SoftLayer_Account", "getVirtualGuests", nil, options, &this_resp)
+ if err != nil {
+ fmt.Printf("[ERROR] %v\n", err)
+ }
+ resp = append(resp, this_resp...)
+
From here we just make an API call. Increment the offset, create a holder for the result, set the offset, make the API call. Check for the error and print it out if any, then append the response to the main slice of responses.
+The reason we have to call session.DoRequest
directly is because calling the services.Account::GetVirtualGeusts() method will pass a copy of our options into the session, which means we don’t get updated on the amount of SoftLayer-Total-Items we have to expect. A bit of a pain to deal with, but this final format isn’t too bad to work with.
wg.Wait()
+ return resp, err
+
Finally we wait for the wg
Waitgroup to finish all its tasks, then just return the result and err.
REST
endpoint for now. If you need it to work on the XMLRPC
endpoint feel free to Open an issue to let me know there is demand for that.resp
might not be ordered by what you specified in the ObjectFilter.
+ If this article contains any error, or leaves any of your questions unanswered, please help us out by
+ opening up a github issue.
+ Open an issue
+
+
- The account that this detail object belongs to.
+ [Deprecated] The account that this detail object belongs to.
@@ -397,6 +401,8 @@
Deprecated
+
- The associated type of this detail object.
+ [Deprecated] The associated type of this detail object.
@@ -427,6 +435,8 @@
Deprecated
+
- References to the SoftLayer_Network_Subnet_Registration that consume this detail object.
+ [Deprecated] References to the SoftLayer_Network_Subnet_Registration that consume this detail object.
@@ -455,6 +467,8 @@
Deprecated
+
- The individual properties that define this detail object’s values.
+ [Deprecated] The individual properties that define this detail object’s values.
@@ -485,6 +501,8 @@
Deprecated
+
- The associated RWhois handle of this detail object. Used only when detailed reassignments are necessary.
+ [Deprecated] The associated RWhois handle of this detail object. Used only when detailed reassignments are necessary.
@@ -511,6 +531,8 @@
- A count of references to the SoftLayer_Network_Subnet_Registration that consume this detail object.
+ A count of [Deprecated] References to the SoftLayer_Network_Subnet_Registration that consume this detail object.
@@ -570,7 +592,7 @@
- A count of the individual properties that define this detail object’s values.
+ A count of [Deprecated] The individual properties that define this detail object’s values.
diff --git a/reference/datatypes/SoftLayer_Account_Regional_Registry_Detail_Property/index.html b/reference/datatypes/SoftLayer_Account_Regional_Registry_Detail_Property/index.html
index e2e928b8a5e..f8102355217 100644
--- a/reference/datatypes/SoftLayer_Account_Regional_Registry_Detail_Property/index.html
+++ b/reference/datatypes/SoftLayer_Account_Regional_Registry_Detail_Property/index.html
@@ -195,7 +195,11 @@
The subnet registration detail property type has been deprecated.
+Subnet registration properties are used to define various attributes of the SoftLayer_Account_Regional_Registry_Detail. These properties are defined by the SoftLayer_Account_Regional_Registry_Detail_Property_Type objects, which describe the available value formats.
+
- The SoftLayer_Account_Regional_Registry_Detail object this property belongs to
+ [Deprecated] The SoftLayer_Account_Regional_Registry_Detail object this property belongs to
@@ -413,6 +419,8 @@
Deprecated
+
- The SoftLayer_Account_Regional_Registry_Detail_Property_Type object this property belongs to
+ [Deprecated] The SoftLayer_Account_Regional_Registry_Detail_Property_Type object this property belongs to
@@ -441,6 +451,8 @@
Deprecated
+The subnet registration detail property type type has been deprecated.
+Subnet Registration Detail Property Type objects describe the nature of a SoftLayer_Account_Regional_Registry_Detail_Property object. These types use [http://php.net/pcre.pattern.php Perl-Compatible Regular Expressions] to validate the value of a property object.
+Subnet Registration Detail Type objects describe the nature of a SoftLayer_Account_Regional_Registry_Detail object.
+The subnet registration detail type type has been deprecated.
+Subnet Registration Detail Type objects describe the nature of a SoftLayer_Account_Regional_Registry_Detail object.
The standard values for these objects are as follows:
The subnet registration default person detail type has been deprecated.
+The SoftLayer_Account_Regional_Registry_Detail_Version4_Person_Default data type contains general information relating to a single SoftLayer RIR account. RIR account information in this type such as names, addresses, and phone numbers are assigned to the registry only and not to users belonging to the account.
+
- The account that this detail object belongs to.
+ [Deprecated] The account that this detail object belongs to.
@@ -396,6 +402,8 @@
Deprecated
+
- The associated type of this detail object.
+ [Deprecated] The associated type of this detail object.
@@ -426,6 +436,8 @@
Deprecated
+
- References to the SoftLayer_Network_Subnet_Registration that consume this detail object.
+ [Deprecated] References to the SoftLayer_Network_Subnet_Registration that consume this detail object.
@@ -454,6 +468,8 @@
Deprecated
+
- The individual properties that define this detail object’s values.
+ [Deprecated] The individual properties that define this detail object’s values.
@@ -484,6 +502,8 @@
Deprecated
+
- The associated RWhois handle of this detail object. Used only when detailed reassignments are necessary.
+ [Deprecated] The associated RWhois handle of this detail object. Used only when detailed reassignments are necessary.
@@ -510,6 +532,8 @@
- A count of references to the SoftLayer_Network_Subnet_Registration that consume this detail object.
+ A count of [Deprecated] References to the SoftLayer_Network_Subnet_Registration that consume this detail object.
@@ -569,7 +593,7 @@
- A count of the individual properties that define this detail object’s values.
+ A count of [Deprecated] The individual properties that define this detail object’s values.
diff --git a/reference/datatypes/SoftLayer_Account_Rwhois_Handle/index.html b/reference/datatypes/SoftLayer_Account_Rwhois_Handle/index.html
index b91c3168500..0ae27251d6a 100644
--- a/reference/datatypes/SoftLayer_Account_Rwhois_Handle/index.html
+++ b/reference/datatypes/SoftLayer_Account_Rwhois_Handle/index.html
@@ -194,7 +194,11 @@
The subnet registration handle type has been deprecated.
+Provides a means of tracking handle identifiers at the various regional internet registries (RIRs). These objects are used by the SoftLayer_Network_Subnet_Registration objects to identify a customer or organization when a subnet is registered.
+
- The account that this handle belongs to.
+ [Deprecated] The account that this handle belongs to.
@@ -360,6 +366,8 @@
Deprecated
+
+
+ Flag to check if a billing item can be cancelled. 1 = yes. 0 = no.
+
+
+
+
+ Type:
+
+
+ int
+
+
+
+
+ This is sometimes populated for orphan billing items that are not attached to servers. Billing items like secondary portable IP addresses fit into this category. A user may set an association by calling SoftLayer_Billing_Item::setAssociationId. This will cause this orphan item to appear under its associated server billing item on future invoices. You may only attach orphaned billing items to server billing items without cancellation dates set.
+
+
+
+
+ Type:
+
+
+ string
+
+
+
+
+ A billing item’s cancellation date. A billing item with a cancellation date in the past is not charged on your SoftLayer invoice. Cancellation dates in the future indicate the current billing item is active, but will be cancelled and not charged for in the future. A billing item with a null cancellation date is also considered an active billing item and is charged once every billing cycle.
+
+
+
+
+ Type:
+
+
+ dateTime
+
+
+
+
+ The category code of this billing item. It is used to tell us the difference between a primary disk and a secondary disk, for instance.
+
+
+
+
+ Type:
+
+
+ string
+
+
+
+
+ The date the billing item was created. You can see this date on the invoice.
+
+
+
+
+ Type:
+
+
+ dateTime
+
+
+
+
+ This is the total charge for the billing item for this billing item. It is calculated based on the hourlyRecurringFee * hoursUsed.
+
+
+
+
+ Type:
+
+
+ string
+
+
+
+
+ The last time this billing item was charged.
+
+
+
+
+ Type:
+
+
+ dateTime
+
+
+
+
+ The domain name is provided for server billing items.
+
+
+
+
+ Type:
+
+
+ string
+
+
+
+
+ The hostname is provided for server billing items
+
+
+
+
+ Type:
+
+
+ string
+
+
+
+
+ The amount of money charged per hour for a billing item, if applicable. hourlyRecurringFee is measured in US Dollars ($USD).
+
+
+
+
+ Type:
+
+
+ decimal
+
+
+
+
+ This is the number of hours the hourly billing item has been in use this billing period. For virtual servers, this means running, paused or stopped.
+
+
+
+
+ Type:
+
+
+ string
+
+
+
+
+ The labor fee, if any. This is a one time charge.
+
+
+
+
+ Type:
+
+
+ decimal
+
+
+
+
+ The rate at which labor fees are taxed if you are a taxable customer.
+
+
+
+
+ Type:
+
+
+ decimal
+
+
+
+
+ The last time this billing item was charged.
+
+
+
+
+ Type:
+
+
+ dateTime
+
+
+
+
+ The date that a billing item was last modified.
+
+
+
+
+ Type:
+
+
+ dateTime
+
+
+
+
+ The date on which your account will be charged for this billing item.
+
+
+
+
+ Type:
+
+
+ dateTime
+
+
+
+
+ Extra information provided to help you identify this billing item. This is often a username or something to help identify items that customers have more than one of.
+
+
+
+
+ Type:
+
+
+ string
+
+
+
+
+ The amount of money charged as a one-time charge for a billing item, if applicable. oneTimeFee is measured in US Dollars ($USD).
+
+
+
+
+ Type:
+
+
+ decimal
+
+
+
+
+ The rate at which one time fees are taxed if you are a taxable customer.
+
+
+
+
+ Type:
+
+
+ decimal
+
+
+
+
+ the SoftLayer_Billing_Order_Item ID. This is a reference to the original order item from which this billing item was originally created.
+
+
+
+
+ Type:
+
+
+ int
+
+
+
+
+ This is the package id for this billing item.
+
+
+
+
+ Type:
+
+
+ int
+
+
+
+
+ The unique identifier of the parent of this billing item.
+
+
+
+
+ Type:
+
+
+ int
+
+
+
+
+ The amount of money charged per month for a billing item, if applicable. recurringFee is measured in US Dollars ($USD).
+
+
+
+
+ Type:
+
+
+ decimal
+
+
+
+
+ The rate at which recurring fees are taxed if you are a taxable customer.
+
+
+
+
+ Type:
+
+
+ decimal
+
+
+
+
+ The number of months in which the recurring fees will be incurred.
+
+
+
+
+ Type:
+
+
+ int
+
+
+
+
+ This is the service provider for this billing item.
+
+
+
+
+ Type:
+
+
+ int
+
+
+
+
+ The setup fee, if any. This is a one time charge.
+
+
+
+
+ Type:
+
+
+ decimal
+
+
+
+
+ The rate at which setup fees are taxed if you are a taxable customer.
+
+
+
+
+ Type:
+
+
+ decimal
+
+
+
+
+ The account that a billing item belongs to.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Account
+
+
+
+
+ A flag indicating that the billing item is under an active agreement.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Account_Agreement
+
+
+
+
+ A billing item’s active associated child billing items. This includes “floating” items that are not necessarily child items of this billing item.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ None
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ A Billing Item’s active bundled billing items.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ A service cancellation request item that corresponds to the billing item.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item_Cancellation_Request_Item
+
+
+
+
+ A Billing Item’s active child billing items.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ None
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ A Billing Item’s spare pool bundled billing items.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ A billing item’s associated parent. This is to be used for billing items that are “floating”, and therefore are not child items of any parent billing item. If it is desired to associate an item to another, populate this with the SoftLayer_Billing_Item ID of that associated parent item.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item
+
+
+
+
+ A history of billing items which a billing item has been associated with.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item_Association_History[]
+
+
+
+
+ A Billing Item’s associated child billing items. This includes “floating” items that are not necessarily child billing items of this billing item.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ A billing item’s associated parent billing item. This object will be the same as the parent billing item if parentId is set.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ The bandwidth allocation for a billing item.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Network_Bandwidth_Version1_Allocation
+
+
+
+
+ A billing item’s recurring child items that have once been billed and are scheduled to be billed in the future.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ A Billing Item’s bundled billing items.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ A Billing Item’s active child billing items.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ The billing item’s cancellation reason.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item_Cancellation_Reason
+
+
+
+
+ This will return any cancellation requests that are associated with this billing item.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item_Cancellation_Request[]
+
+
+
+
+ The item category to which the billing item’s item belongs.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Product_Item_Category
+
+
+
+
+ A Billing Item’s child billing items'
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ A Billing Item’s active child billing items.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ For product items which have a downgrade path defined, this will return those product items.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Product_Item[]
+
+
+
+
+ A Billing Item’s associated child billing items, excluding some items with a $0.00 recurring fee.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ A flag that will reflect whether this billing item is billed on an hourly basis or not.
+
+
+
+
+ Type:
+
+
+ boolean
+
+
+
+
+ Invoice items associated with this billing item
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Invoice_Item
+
+
+
+
+ All invoice items associated with the billing item
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Invoice_Item[]
+
+
+
+
+ The entry in the SoftLayer product catalog that a billing item is based upon.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Product_Item
+
+
+
+
+ The location of the billing item. Some billing items have physical properties such as the server itself. For items such as these, we provide location information.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Location
+
+
+
+
+ A Billing Item’s child billing items and associated items'
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ A Billing Item’s total, including any child billing items if they exist.'
+
+
+
+
+ Type:
+
+
+ float
+
+
+
+
+ A Billing Item’s total, including any child billing items if they exist.'
+
+
+
+
+ Type:
+
+
+ float
+
+
+
+
+ A Billing Item’s total, including any child billing items and associated billing items if they exist.'
+
+
+
+
+ Type:
+
+
+ float
+
+
+
+
+ This is deprecated and will always be zero. Because tax is calculated in real-time, previewing the next recurring invoice is pre-tax only.
+
+
+
+
+ Type:
+
+
+ float
+
+
+
+
+ A Billing Item’s associated child billing items, excluding ALL items with a $0.00 recurring fee.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item[]
+
+
+
+
+ A billing item’s original order item. Simply a reference to the original order from which this billing item was created.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Order_Item
+
+
+
+
+ The original physical location for this billing item–may differ from current.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Location
+
+
+
+
+ The package under which this billing item was sold. A Package is the general grouping of products as seen on our order forms.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Product_Package
+
+
+
+
+ A billing item’s parent item. If a billing item has no parent item then this value is null.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item
+
+
+
+
+ A billing item’s parent item. If a billing item has no parent item then this value is null.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Item_Virtual_Guest
+
+
+
+
+ This flag indicates whether a billing item is scheduled to be canceled or not.
+
+
+
+
+ Type:
+
+
+ boolean
+
+
+
+
+ The new order item that will replace this billing item.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Billing_Order_Item
+
+
+
+
+ Provisioning transaction for this billing item
+
+
+
+
+ Type:
+
+
+ SoftLayer_Provisioning_Version1_Transaction
+
+
+
+
+ A friendly description of software component
+
+
+
+
+ Type:
+
+
+ SoftLayer_Software_Description
+
+
+
+
+ Billing items whose product item has an upgrade path defined in our system will return the next product item in the upgrade path.
+
+
+
+
+ Type:
+
+
+ SoftLayer_Product_Item
+
+
+
+
+ Billing items whose product item has an upgrade path defined in our system will return all the product items in the upgrade path.
+
+
+
+
+
+
+ Type:
+
+
+ SoftLayer_Product_Item[]
+
+
+
+
+ A count of a billing item’s active associated child billing items. This includes “floating” items that are not necessarily child items of this billing item.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a Billing Item’s active bundled billing items.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a Billing Item’s active child billing items.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a Billing Item’s spare pool bundled billing items.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a history of billing items which a billing item has been associated with.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a Billing Item’s associated child billing items. This includes “floating” items that are not necessarily child billing items of this billing item.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a billing item’s associated parent billing item. This object will be the same as the parent billing item if parentId is set.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a billing item’s recurring child items that have once been billed and are scheduled to be billed in the future.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a Billing Item’s bundled billing items.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a Billing Item’s active child billing items.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of this will return any cancellation requests that are associated with this billing item.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a Billing Item’s child billing items'
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a Billing Item’s active child billing items.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of for product items which have a downgrade path defined, this will return those product items.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a Billing Item’s associated child billing items, excluding some items with a $0.00 recurring fee.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of all invoice items associated with the billing item
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a Billing Item’s child billing items and associated items'
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of a Billing Item’s associated child billing items, excluding ALL items with a $0.00 recurring fee.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
+
+ A count of billing items whose product item has an upgrade path defined in our system will return all the product items in the upgrade path.
+
+
+
+
+ Type:
+
+
+ unsignedLong
+
+
+
© SoftLayer 2024
+ Built with Hugo
The subnet registration service has been deprecated.
+The subnet registration data type contains general information relating to a single subnet registration instance. These registration instances can be updated to reflect changes, and will record the changes in the SoftLayer_Network_Subnet_Registration_Event.
+
- The account that this registration belongs to.
+ [Deprecated] The account that this registration belongs to.
@@ -501,6 +507,8 @@
Deprecated
+
- The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
+ [Deprecated] The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
@@ -535,6 +545,8 @@
Deprecated
+
- The related registration events.
+ [Deprecated] The related registration events.
@@ -563,6 +577,8 @@
Deprecated
+
- The “network” detail object.
+ [Deprecated] The “network” detail object.
@@ -591,6 +609,8 @@
Deprecated
+
- The “person” detail object.
+ [Deprecated] The “person” detail object.
@@ -619,18 +641,22 @@
Deprecated
+
- The related Regional Internet Registry.
+ [Deprecated] The related Regional Internet Registry.
@@ -643,18 +669,22 @@
Deprecated
+
- The RIR handle that this registration object belongs to. This field may not be populated until the registration is complete.
+ [Deprecated] The RIR handle that this registration object belongs to. This field may not be populated until the registration is complete.
@@ -667,6 +697,8 @@
- The status of this registration.
+ [Deprecated] The status of this registration.
@@ -695,6 +729,8 @@
Deprecated
+
- The subnet that this registration pertains to.
+ [Deprecated] The subnet that this registration pertains to.
@@ -721,6 +759,8 @@
Deprecated
+
- A count of the cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
+ A count of [Deprecated] The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
@@ -770,7 +810,7 @@
- A count of the related registration events.
+ A count of [Deprecated] The related registration events.
diff --git a/reference/datatypes/SoftLayer_Network_Subnet_Registration_Apnic/index.html b/reference/datatypes/SoftLayer_Network_Subnet_Registration_Apnic/index.html
index 27ab023ec4d..c754499af5a 100644
--- a/reference/datatypes/SoftLayer_Network_Subnet_Registration_Apnic/index.html
+++ b/reference/datatypes/SoftLayer_Network_Subnet_Registration_Apnic/index.html
@@ -194,7 +194,11 @@
The APNIC subnet registration type has been deprecated.
+APNIC-specific registration object. For more detail see SoftLayer_Network_Subnet_Registration.
+
- The account that this registration belongs to.
+ [Deprecated] The account that this registration belongs to.
@@ -500,6 +506,8 @@
Deprecated
+
- The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
+ [Deprecated] The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
@@ -534,6 +544,8 @@
Deprecated
+
- The related registration events.
+ [Deprecated] The related registration events.
@@ -562,6 +576,8 @@
Deprecated
+
- The “network” detail object.
+ [Deprecated] The “network” detail object.
@@ -590,6 +608,8 @@
Deprecated
+
- The “person” detail object.
+ [Deprecated] The “person” detail object.
@@ -618,18 +640,22 @@
Deprecated
+
- The related Regional Internet Registry.
+ [Deprecated] The related Regional Internet Registry.
@@ -642,18 +668,22 @@
Deprecated
+
- The RIR handle that this registration object belongs to. This field may not be populated until the registration is complete.
+ [Deprecated] The RIR handle that this registration object belongs to. This field may not be populated until the registration is complete.
@@ -666,6 +696,8 @@
- The status of this registration.
+ [Deprecated] The status of this registration.
@@ -694,6 +728,8 @@
Deprecated
+
- The subnet that this registration pertains to.
+ [Deprecated] The subnet that this registration pertains to.
@@ -720,6 +758,8 @@
Deprecated
+
- A count of the cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
+ A count of [Deprecated] The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
@@ -769,7 +809,7 @@
- A count of the related registration events.
+ A count of [Deprecated] The related registration events.
diff --git a/reference/datatypes/SoftLayer_Network_Subnet_Registration_Arin/index.html b/reference/datatypes/SoftLayer_Network_Subnet_Registration_Arin/index.html
index 76d6840b6f5..9a20efb0c21 100644
--- a/reference/datatypes/SoftLayer_Network_Subnet_Registration_Arin/index.html
+++ b/reference/datatypes/SoftLayer_Network_Subnet_Registration_Arin/index.html
@@ -194,7 +194,11 @@
The ARIN subnet registration type has been deprecated.
+ARIN-specific registration object. For more detail see SoftLayer_Network_Subnet_Registration.
+
- The account that this registration belongs to.
+ [Deprecated] The account that this registration belongs to.
@@ -500,6 +506,8 @@
Deprecated
+
- The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
+ [Deprecated] The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
@@ -534,6 +544,8 @@
Deprecated
+
- The related registration events.
+ [Deprecated] The related registration events.
@@ -562,6 +576,8 @@
Deprecated
+
- The “network” detail object.
+ [Deprecated] The “network” detail object.
@@ -590,6 +608,8 @@
Deprecated
+
- The “person” detail object.
+ [Deprecated] The “person” detail object.
@@ -618,18 +640,22 @@
Deprecated
+
- The related Regional Internet Registry.
+ [Deprecated] The related Regional Internet Registry.
@@ -642,18 +668,22 @@
Deprecated
+
- The RIR handle that this registration object belongs to. This field may not be populated until the registration is complete.
+ [Deprecated] The RIR handle that this registration object belongs to. This field may not be populated until the registration is complete.
@@ -666,6 +696,8 @@
- The status of this registration.
+ [Deprecated] The status of this registration.
@@ -694,6 +728,8 @@
Deprecated
+
- The subnet that this registration pertains to.
+ [Deprecated] The subnet that this registration pertains to.
@@ -720,6 +758,8 @@
Deprecated
+
- A count of the cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
+ A count of [Deprecated] The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
@@ -769,7 +809,7 @@
- A count of the related registration events.
+ A count of [Deprecated] The related registration events.
diff --git a/reference/datatypes/SoftLayer_Network_Subnet_Registration_Details/index.html b/reference/datatypes/SoftLayer_Network_Subnet_Registration_Details/index.html
index 493e2dd5427..274ebf92258 100644
--- a/reference/datatypes/SoftLayer_Network_Subnet_Registration_Details/index.html
+++ b/reference/datatypes/SoftLayer_Network_Subnet_Registration_Details/index.html
@@ -195,7 +195,11 @@
The subnet registration details type has been deprecated.
+The SoftLayer_Network_Subnet_Registration_Details objects are used to relate SoftLayer_Account_Regional_Registry_Detail objects to a SoftLayer_Network_Subnet_Registration object. This allows for easy reuse of registration details. It is important to note that only one detail object per type may be associated to a registration object.
+
- The related SoftLayer_Account_Regional_Registry_Detail.
+ [Deprecated] The related SoftLayer_Account_Regional_Registry_Detail.
@@ -365,6 +371,8 @@
Deprecated
+
- The related SoftLayer_Network_Subnet_Registration.
+ [Deprecated] The related SoftLayer_Network_Subnet_Registration.
@@ -395,6 +405,8 @@
Deprecated
+The subnet registration event type has been deprecated.
+Each time a SoftLayer_Network_Subnet_Registration object is created or modified, the system will generate an event for it. Additional actions that would create an event include RIR responses and error cases. *
+
- The registration this event pertains to.
+ [Deprecated] The registration this event pertains to.
@@ -394,6 +400,8 @@
Deprecated
+
- The type of this event.
+ [Deprecated] The type of this event.
@@ -420,6 +430,8 @@
Deprecated
+Subnet Registration Event Type objects describe the nature of a SoftLayer_Network_Subnet_Registration_Event
+The subnet registration event type type has been deprecated.
+Subnet Registration Event Type objects describe the nature of a SoftLayer_Network_Subnet_Registration_Event
The standard values for these objects are as follows:
The RIPE subnet registration type has been deprecated.
+RIPE-specific registration object. For more detail see SoftLayer_Network_Subnet_Registration.
+
- The account that this registration belongs to.
+ [Deprecated] The account that this registration belongs to.
@@ -500,6 +506,8 @@
Deprecated
+
- The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
+ [Deprecated] The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
@@ -534,6 +544,8 @@
Deprecated
+
- The related registration events.
+ [Deprecated] The related registration events.
@@ -562,6 +576,8 @@
Deprecated
+
- The “network” detail object.
+ [Deprecated] The “network” detail object.
@@ -590,6 +608,8 @@
Deprecated
+
- The “person” detail object.
+ [Deprecated] The “person” detail object.
@@ -618,18 +640,22 @@
Deprecated
+
- The related Regional Internet Registry.
+ [Deprecated] The related Regional Internet Registry.
@@ -642,18 +668,22 @@
Deprecated
+
- The RIR handle that this registration object belongs to. This field may not be populated until the registration is complete.
+ [Deprecated] The RIR handle that this registration object belongs to. This field may not be populated until the registration is complete.
@@ -666,6 +696,8 @@
- The status of this registration.
+ [Deprecated] The status of this registration.
@@ -694,6 +728,8 @@
Deprecated
+
- The subnet that this registration pertains to.
+ [Deprecated] The subnet that this registration pertains to.
@@ -720,6 +758,8 @@
Deprecated
+
- A count of the cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
+ A count of [Deprecated] The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
@@ -769,7 +809,7 @@
- A count of the related registration events.
+ A count of [Deprecated] The related registration events.
diff --git a/reference/datatypes/SoftLayer_Network_Subnet_Registration_Status/index.html b/reference/datatypes/SoftLayer_Network_Subnet_Registration_Status/index.html
index 066676628ab..adbb5e93e3e 100644
--- a/reference/datatypes/SoftLayer_Network_Subnet_Registration_Status/index.html
+++ b/reference/datatypes/SoftLayer_Network_Subnet_Registration_Status/index.html
@@ -195,7 +195,10 @@
Subnet Registration Status objects describe the current status of a subnet registration.
+The subnet registration status type has been deprecated.
+Subnet Registration Status objects describe the current status of a subnet registration.
The standard values for these objects are as follows:
diff --git a/reference/services/SoftLayer_Account/getSubnetRegistrations/index.html b/reference/services/SoftLayer_Account/getSubnetRegistrations/index.html index f48fa35474e..eac401b8462 100644 --- a/reference/services/SoftLayer_Account/getSubnetRegistrations/index.html +++ b/reference/services/SoftLayer_Account/getSubnetRegistrations/index.html @@ -191,6 +191,8 @@
diff --git a/reference/services/SoftLayer_Account/index.html b/reference/services/SoftLayer_Account/index.html index 098df425569..85db7f30954 100644 --- a/reference/services/SoftLayer_Account/index.html +++ b/reference/services/SoftLayer_Account/index.html @@ -981,17 +981,6 @@
- Create a new detail object + [Deprecated] Create a new detail object
The subnet registration detail service has been deprecated.
+ This method will create a new SoftLayer_Account_Regional_Registry_Detail object.Input - SoftLayer_Account_Regional_Registry_Detail
detailTypeId
regionalInternetRegistryHandleId
- Delete an existing detail object + [Deprecated] Delete an existing detail object
The subnet registration detail service has been deprecated.
+This method will delete an existing SoftLayer_Account_Regional_Registry_Detail object.
+- Edit an existing detail object + [Deprecated] Edit an existing detail object
The subnet registration detail service has been deprecated.
+This method will edit an existing SoftLayer_Account_Regional_Registry_Detail object. For more detail, see SoftLayer_Account_Regional_Registry_Detail::createObject.
+
The subnet registration detail service has been deprecated.
+Regional Registry Detail objects are used to specify the information you wish to use when registering subnets with the appropriate Regional Internet Registries.
+The account that this detail object belongs to.
+[Deprecated] The account that this detail object belongs to.
The associated type of this detail object.
+[Deprecated] The associated type of this detail object.
References to the SoftLayer_Network_Subnet_Registration that consume this detail object.
+[Deprecated] References to the SoftLayer_Network_Subnet_Registration that consume this detail object.
The individual properties that define this detail object’s values.
+[Deprecated] The individual properties that define this detail object’s values.
The associated RWhois handle of this detail object. Used only when detailed reassignments are necessary.
+[Deprecated] The associated RWhois handle of this detail object. Used only when detailed reassignments are necessary.
Create a transaction to update the registrations that reference this detail object.
+[Deprecated] Create a transaction to update the registrations that reference this detail object.
Validate an existing person detail object.
+[Deprecated] Validate an existing person detail object.
- Create a transaction to update the registrations that reference this detail object. + [Deprecated] Create a transaction to update the registrations that reference this detail object.
The subnet registration detail service has been deprecated.
+This method will create a bulk transaction to update any registrations that reference this detail object. It should only be called from a child class such as SoftLayer_Account_Regional_Registry_Detail_Person or SoftLayer_Account_Regional_Registry_Detail_Network. The registrations should be in the Open or Registration_Complete status.
+- Validate an existing person detail object. + [Deprecated] Validate an existing person detail object.
Validates this person detail against all supported external registrars (APNIC/ARIN/RIPE). The validation uses the most restrictive rules ensuring that any person detail passing this validation would be acceptable to any supported registrar.
+The subnet registration detail service has been deprecated.
+Validates this person detail against all supported external registrars (APNIC/ARIN/RIPE). The validation uses the most restrictive rules ensuring that any person detail passing this validation would be acceptable to any supported registrar.
The person detail properties are validated against - Non-emptiness - Minimum length - Maximum length - Maximum words - Supported characters - Format of data
If the person detail validation succeeds, then an empty list is returned indicating no errors were found and that this person detail would work against all three registrars during a subnet registration.
If the person detail validation fails, then an array of validation errors (SoftLayer_Container_Message[]) is returned. Each message container contains error messages grouped by property type and a message type indicating the person detail property type object which failed validation. It is possible to create a subnet registration using a person detail which does not pass this validation, but at least one registrar would reject it for being invalid.
diff --git a/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObject/index.html b/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObject/index.html index 27ea446ca74..1b571c31b2c 100644 --- a/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObject/index.html +++ b/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property/createObject/index.html @@ -191,14 +191,18 @@- Create a new property object + [Deprecated] Create a new property object
The subnet registration detail property service has been deprecated.
+ This method will create a new SoftLayer_Account_Regional_Registry_Detail_Property object.Input - SoftLayer_Account_Regional_Registry_Detail_Property
registrationDetailId
propertyTypeId
sequencePosition
value
- Create multiple property objects. + [Deprecated] Create multiple property objects.
The subnet registration detail property service has been deprecated.
+Edit multiple SoftLayer_Account_Regional_Registry_Detail_Property objects.
+- Delete an existing property object + [Deprecated] Delete an existing property object
The subnet registration detail property service has been deprecated.
+This method will delete an existing SoftLayer_Account_Regional_Registry_Detail_Property object.
+- Edit an existing property object + [Deprecated] Edit an existing property object
The subnet registration detail property service has been deprecated.
+This method will edit an existing SoftLayer_Account_Regional_Registry_Detail_Property object. For more detail, see SoftLayer_Account_Regional_Registry_Detail_Property::createObject.
+- Edit multiple property objects. + [Deprecated] Edit multiple property objects.
The subnet registration detail property service has been deprecated.
+Edit multiple SoftLayer_Account_Regional_Registry_Detail_Property objects.
+
The subnet registration detail property service has been deprecated.
+The subnet registration property is used to define various attributes of SoftLayer_Account_Regional_Registry_Detail. For more information, please see the SoftLayer_Account_Regional_Registry_Detail_Property.
+The SoftLayer_Account_Regional_Registry_Detail object this property belongs to
+[Deprecated] The SoftLayer_Account_Regional_Registry_Detail object this property belongs to
The SoftLayer_Account_Regional_Registry_Detail_Property_Type object this property belongs to
+[Deprecated] The SoftLayer_Account_Regional_Registry_Detail_Property_Type object this property belongs to
diff --git a/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/index.html b/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/index.html index 130fd2be278..7120bd098a8 100644 --- a/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/index.html +++ b/reference/services/SoftLayer_Account_Regional_Registry_Detail_Property_Type/index.html @@ -196,6 +196,8 @@
diff --git a/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/index.html b/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/index.html index 83b0fd7ac52..a4c3981a74c 100644 --- a/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/index.html +++ b/reference/services/SoftLayer_Account_Regional_Registry_Detail_Type/index.html @@ -196,6 +196,8 @@
- Clear an existing registration + [Deprecated] Clear an existing registration
The subnet registration service has been deprecated.
+This method will initiate the removal of a subnet registration.
+- Create a new subnet registration + [Deprecated] Create a new subnet registration
Create registration with a global registrar to associate an assigned subnet with the provided contact details.
+The subnet registration service has been deprecated.
+Create registration with a global registrar to associate an assigned subnet with the provided contact details.
Contact information is provided in the form of a SoftLayer_Account_Regional_Registry_Detail, which reference can be provided when the registration is created or afterwards. Registrations without an associated person detail will remain in the OPEN
status. To specify a person detail when creating a registration, the detailReferences
property should be populated with a list item providing a detailId
value referencing the SoftLayer_Account_Regional_Registry_Detail.
The same applies to SoftLayer_Account_Regional_Registry_Detail, though these references need not be provided. The system will create a reference to the network described by the registration’s subnet in the absence of a provided network detail reference. However, if a specific detail is referenced, it must describe the same subnet as the registration.
A template containing the following properties will create a subnet registration:
diff --git a/reference/services/SoftLayer_Network_Subnet_Registration/createObjects/index.html b/reference/services/SoftLayer_Network_Subnet_Registration/createObjects/index.html index 87cbe83bd76..f43d3534616 100644 --- a/reference/services/SoftLayer_Network_Subnet_Registration/createObjects/index.html +++ b/reference/services/SoftLayer_Network_Subnet_Registration/createObjects/index.html @@ -191,12 +191,16 @@- Create registrations for multiple subnets + [Deprecated] Create registrations for multiple subnets
The subnet registration service has been deprecated.
+Create registrations with respective registrars to associate multiple assigned subnets with the provided contact details.
+- Edit an existing registration object + [Deprecated] Edit an existing registration object
The subnet registration service has been deprecated.
+This method will edit an existing SoftLayer_Network_Subnet_Registration object. For more detail, see SoftLayer_Network_Subnet_Registration::createObject.
+- Modify the link between a SoftLayer_Network_Subnet_Registration object and two SoftLayer_Account_Regional_Registry_Detail objects simultaneously. + [Deprecated] Modify the link between a SoftLayer_Network_Subnet_Registration object and two SoftLayer_Account_Regional_Registry_Detail objects simultaneously.
The subnet registration service has been deprecated.
+This method modifies a single registration by modifying the current SoftLayer_Network_Subnet_Registration_Details objects that are linked to that registration.
+
Subnet registration objects are used to request and track registration of the subnet with the appropriate Regional Internet Registry (RIR). Registration for public subnets can be requested any time after assignment of the subnet.
+The subnet registration service has been deprecated.
+Subnet registration objects are used to request and track registration of the subnet with the appropriate Regional Internet Registry (RIR). Registration for public subnets can be requested any time after assignment of the subnet.
Subnet Registration objects can be updated any time after they are created. This will result in the information being submitted to the RIR and the records on their end being refreshed.
@@ -217,82 +220,100 @@Create registrations for multiple subnets
+[Deprecated] Create registrations for multiple subnets
Edit an existing registration object
+[Deprecated] Edit an existing registration object
Modify the link between a SoftLayer_Network_Subnet_Registration object and two SoftLayer_Account_Regional_Registry_Detail objects simultaneously.
+[Deprecated] Modify the link between a SoftLayer_Network_Subnet_Registration object and two SoftLayer_Account_Regional_Registry_Detail objects simultaneously.
The account that this registration belongs to.
+[Deprecated] The account that this registration belongs to.
The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
+[Deprecated] The cross-reference records that tie the SoftLayer_Account_Regional_Registry_Detail objects to the registration object.
The related Regional Internet Registry.
+[Deprecated] The related Regional Internet Registry.
The RIR handle that this registration object belongs to. This field may not be populated until the registration is complete.
+[Deprecated] The RIR handle that this registration object belongs to. This field may not be populated until the registration is complete.
The subnet that this registration pertains to.
+[Deprecated] The subnet that this registration pertains to.
- Create a new association between a SoftLayer_Network_Subnet_Registration object and a SoftLayer_Account_Regional_Registry_Detail object. + [Deprecated] Create a new association between a SoftLayer_Network_Subnet_Registration object and a SoftLayer_Account_Regional_Registry_Detail object.
The subnet registration details service has been deprecated.
+ This method will create a new SoftLayer_Network_Subnet_Registration_Details object.Input - SoftLayer_Network_Subnet_Registration_Details
detailId
registrationId
- Remove an existing association between a SoftLayer_Network_Subnet_Registration object and a SoftLayer_Account_Regional_Registry_Detail object. + [Deprecated] Remove an existing association between a SoftLayer_Network_Subnet_Registration object and a SoftLayer_Account_Regional_Registry_Detail object.
The subnet registration details service has been deprecated.
+This method will delete an existing SoftLayer_Account_Regional_Registry_Detail object.
+
Create a new association between a SoftLayer_Network_Subnet_Registration object and a SoftLayer_Account_Regional_Registry_Detail object.
+[Deprecated] Create a new association between a SoftLayer_Network_Subnet_Registration object and a SoftLayer_Account_Regional_Registry_Detail object.
Remove an existing association between a SoftLayer_Network_Subnet_Registration object and a SoftLayer_Account_Regional_Registry_Detail object.
+[Deprecated] Remove an existing association between a SoftLayer_Network_Subnet_Registration object and a SoftLayer_Account_Regional_Registry_Detail object.
The related SoftLayer_Account_Regional_Registry_Detail.
+[Deprecated] The related SoftLayer_Account_Regional_Registry_Detail.
The related SoftLayer_Network_Subnet_Registration.
+[Deprecated] The related SoftLayer_Network_Subnet_Registration.
diff --git a/reference/services/SoftLayer_Network_Subnet_Registration_Status/index.html b/reference/services/SoftLayer_Network_Subnet_Registration_Status/index.html index d635dd0ea0d..1d16864fddb 100644 --- a/reference/services/SoftLayer_Network_Subnet_Registration_Status/index.html +++ b/reference/services/SoftLayer_Network_Subnet_Registration_Status/index.html @@ -196,6 +196,8 @@
© SoftLayer 2024
+ Built with Hugo
pagination
sdk
+ © SoftLayer 2024
+ Built with Hugo